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 / manjunath s h
use restart parameter, restart = procstep.stepname
procstep: the step of the jcl which is invoking the proc.
stepname: the step in proc where u want the execution to
start.
use null statement after the 25th step in the proc.
or
override the cond parameter of 26th step as cond=(0,LE).
| Is This Answer Correct ? | 12 Yes | 1 No |
Post New Answer View All Answers
Name a few IBM utility programs, and explain its function.
when does a dataset go uncataloged?
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
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
How to override loadlib?
how JCL works?
when can a job time-out occur? How to overcome that?
Explain dfsort utility?
List the different jcl statements that are not permitted in the procedures?
Explain how can return codes be tested before execution of a job step?
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
What are the jcl procedures?
Are there any set of rules for the names of the steps used in a job?
Define concatenating?
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?