i have a jcl calling proc which has 10 steps, i want to
execute from step5 to step10, where can i code RESTART and
COND parameter?
Answer Posted / rajkanya
The RESTART parameter can be coded at JOB CARD level as:
RESTART=PROCNAME.STEPNAME ( in this case STEP5 )
and the COND parameter can be coded at both JOB and STEP
level. At STEP5, as:
//STEP5 EXEC PGM=.....,COND=EVEN
COND=ONLY it allows step execution if any prior step is
ABENDED
COND=EVEN it allows step execution even if the prior step
is ABENDED
Is This Answer Correct ? | 2 Yes | 0 No |
Post New Answer View All Answers
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
What is NOTCAT ?
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 ?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
how to run batch program without jcl?
How jcl is used for testing batch programs?
how do you code a null statement?
Explain the purpose of dd dummy statement?
What is one line to pass PARM from JCL to COBOL?
What is condition checking in jcl? Is this possible?
which utility is used to sort a file in jcl?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
what is use of dcb parameter in dd statement?
Explain how can the submitting users racf authority be overridden in a job stream?
Explain dd statement in jcl?