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
What do you understand by jcl?
What is condition checking in jcl? Is this possible?
In sms datasets, what is the function of the dd avgrec keyword?
How can values be passed from the job stream to an executable program?
what is DD statement is used in JCL?
Are there any set of rules for the names of the steps used in a job? What are they?
what is use of space parameter in dd statement?
why should SYSIN DD * statement should not be included inside a PROCedure snippet??? please answer this.. i need to know.
List in order the hierarchical levels of jcl?
List the various advantages of using jcl language?
Explain the function of a dd statement?
Explain dfsort utility?
What are hierarchy levels in jcl?
Mention the types of job control statements?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?