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
What does a disposition of (new,catlg,keep) for a dsn mean?
When space is allocated for an output dataset, what units can be used?
How can a fb file convert to vb file using sort program?
which utility is used to sort a file in jcl?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
How to submit jcl through a cobol program?
In job processing, what happens in execution stage?
what is DSN parameter and DISP parameter is used for?
We can use PASS with permanent datasets also. THEN Which is the condition in which we may use PASS (instead of KEEP) with permanent data sets, while there is no need to specify UNIT and VOL for them like temporary data sets (in cas we use KEEP for permanent data sets) ?
Does jcl support automatic restart?
how to run batch program without jcl?
what sort card you will use to copy the data from one dataset to another dataset?
Differentiate between addressing mode and run mode.
how you can direct the data to spool using SYSOUT option?
I want to JCL sort for Non-COMP and COMP-3 fields SORT FIELDS=(1,5,A,6,11,A,12,11,A,19,1,A,20,1,A),FORMAT=BI,EQUALS Length of comp bytes is 11 bytes which start at 6byte and 12 byte considering 11 bytes in comp-3 is 6 bytes. Can anyone tell if the above sort work SORT FIELDS=(1,5,A,6,6,A,12,6,A,19,1,A,20,1,A),FORMAT=BI,EQUALS does not works OK