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
what are decleratives in cobol?
What is static and dynamic call in cobol?
Explain the configuration section of a cobol program with examples of syntax.
What is perform what is varying?
What is the difference between a binary search and a sequential search? What are the pertinent cobol commands?
What is the LINKAGE SECTION used in COBOL?
1.Is it possible to move the data from 99.99 to 99v99? 2.What is the CICS-vsam Compilation process? 3.In My GDG 5 generation will be there GDG3 got an abend what will happen? 4.In my GDG first generation is +1 And I want to add the new generation what will happen previous generation? 5.How can you give the PIC clause below conditions A). s9 (reddy), B). s9 (5) occurs 5 times? 6.How override the proc from a particular step? and what is symbolic and override Procs?
Write the code to count the sum of n natural numbers.
Are you comfortable in cobol or jcl?
HOw can I get the negative sign while deduct high value from low value
Name some of the examples of COBOl 11?
Explain how to differentiate call by context by comparing it to other calls?
What are the different rules of SORT operation?
How to get the last record in vsam file in cluster? And how can you get the kids file records into your cobol program?
how to move the records from file to array table. give with code example