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
Why occurs cannot be used in 01 level in COBOL?
I have a program with an Array of 5000 occurences which is being passed from 5 sub levels to the front end screen. Thess 5 programs using each 5*2 = 10 different arrays with size as 5000. This is causing the transaction to utilize more storage consupmtion. I am looking to reduce the storage consumption. As part of that initially i thought Dynamic array may solve my problem. After viewing the comments given i see its same as normal array. IS there any other way we can resolve this issue?
how to access the file from prodution from changeman tool and to submit a file to production
How you can characterize tables in cobol?
How many sections are there in data division in COBOL?
I have to write to a outfile where the number of records in that file should be the header of that file using IMS.. can anyone help me in this issue
Difference between array and sub-script ?
State the various causes of s0c1, s0c5 and s0c7.
What is Pic 9v99 Indicates in COBOL?
what is the use of outrecord?
Difference between cobol and cobol-ii?
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.
Differentiate between structured cobol programming and object-oriented cobol programming.
can anybody post me about file-aid and changemen tools pls and give me reference if any mainframe guys are there
There are 5 fields and 1000 records in a file. Unload it into an array. Write the syntax for declaration and how will you unload it.