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
How to run cobol program using jcl?
What is the motivation behind coding class parameter in job statement?
What parameter of the job statement is used to limit the cpu time consumed by the job?
what is DSN in JCL and what are the parameters to declare the DSN?
What are s0c1, s0c4, s0c5, s0c7 and socb?
Why include statement is used in a jcl?
How to pass the parameter in parm using linkage section ? (syntax)?
How jcl work to handle various input output file operations?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
Explain the function of //jcllib statement?
How can a stopped job be started again?
what is the purpose of coding class parameter in job statement?
What is the syntax of JCL statement?
What are steplib and joblib? What for they are used?
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) ?