We have 100 steps in a procedure and we need to run the jcl
and execute only 25th step in the proc and not the
remaining steps. How can we do it?
Answer Posted / indrani
We can copy the PROC into personal library and edit the
proc and put a null card post 25th step. Then make the JCL
use your personal library as the proc and only 25th step
will run and the rest of all steps will be bypassed.
I would recommend this to be the best answer.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
Is condition checking possible in jcl?
How jcl work to handle various input output file operations?
Can we call instream to catalog and catalog to instream?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
Explain how can a jobs execution priority be modified?
How does jcl act on a cobol code?
when does a dataset go uncataloged?
what is the resolution for sb37 error
What happens if both JOBLIB & STEPLIB is specified ?
Differentiate between the joblib and the steplib statements?
Explain in DD statement what is the use of DCB parameter?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
What is the purpose of dd * statement in jcl?
What is one line to pass PARM from JCL to COBOL?
what is use of disp parameter in dd statement?