what are the paramater we cannot use in procedure?how many
instream we can write in single jcl?can we call instream to
catalog and ctalog to instream?
Answer Posted / chellad
Instream message can't be passed with in a proc with the help of
Ex:
// sysin DD *
Sort fields =copy
/*
So we have to create a control card.
Control card member is used to store instream data which has to be used with in a proc like
//Proc1 proc
//Step2 DD dsn=aggst.temp.ps(contmem),disp=shr,
..
..
..
//Pend
Ps: contmem is the member name which contains sysin DD * info
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
how do you reference the printer file formats from cobol programs
what is difference bt COND, REGION & TIME parameters at JOB & EXEC. give an exp.
Why is it necessary that file needs to be opened in I-O mode for REWRITE?
System Testing for Mainframe Developers What is System Testing? integration testing ? what's the procedure ..
How to find out the closest prime number of an input number? I believe it has something to do with SEARCH and COBOL Linear Array.
Explain how to differentiate call by context by comparing it to other calls?
what is the difference between COBOL2 AND COBOL390?
What happens when we move a comp-3 field to an edited (say z (9). Zz-)?
) How do u handle errors in BMS macro?
Why occurs cannot be used in 01 level in COBOL?
how do you reference the esds vsam file formats from cobol programs
please..could u give an example about USAGE IS POINTER ..and explain why and when we use it ?
What rules are followed by the search verb.
how to convert the recors form vsam file to db2 table tru file aid
I need to compare 3 variables(dates) and do some processing based on the earliest date. There could be more then 1 date record in any of the 3 fields. What is the best way to code this?