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?
Answers were Sorted based on User's Feedback
Answer / karthikeyan
in job card itself you can give this
restart=procname.step5
| Is This Answer Correct ? | 8 Yes | 0 No |
Answer / 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 |
what is instream data
Can anyone tell me the syntax for printing two files at two different destinations in a single step?
What is the use of disp parameter?
what is JCL?
What is the purpose and meaning of the REGION keyword and what JCL statement is it associated with?
What is the purpose of dd * statement in jcl?
How to send data from cobol program to jcl?
Explain about LMINIT - generate a data ID for a data set
is there any possibilities for sumbitting more than one job in single jcl? if yes...based on which thing they will execute..(priority,class,time,written order..?)
How to create delta file using JCL
How to copy VSAM files without using REPRO
What 3 guidelines do we have to follow when concatenating DD statements?