i have 10 steps in jcl program but i have to exicute only
2,4,6,8th and 10th ?how it's possible?
Answer Posted / raghavendra
Use Restart=step2 command in job card, then use COND=(0.LE) in steps 3,5,7,9 to skip (this cond parameter will the skip the steps only if previous steps ended with CC=0)
//Jobid job (t,aa,sys),'acct',class= , msgclass= ,region=0M,restart = step2
//*
//step1 exec
//step2 exec pgm=xxx
//step3 exec pgm=xxx,cond=(0,le)
//step4 exec
//step5 exec pgm=xxx,cond=(0,le)
//step6 exec
//step7 exec pgm=xxx,cond=(0,le)
//step8 exec
//step9 exec pgm=xxx,cond=(0,le)
//step10 exec
| Is This Answer Correct ? | 4 Yes | 1 No |
Post New Answer View All Answers
How is a type of file defined in the jcl that executes the cobol program?
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?
which utility is used a dummy utility?
Must tape dataset definitions include vol=ser specifications?
how you will the direct the data to spool using sysout option?
When output dataset space is required, what quantity categories are used?
Which statement is used to identify the private libraries in job?
how do you code a null statement?
What is the syntax of JCL statement?
What is the difference between run mode and addressing mode?
what is “Cond= even” and “Cond=only”?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
Where can program checkpoints be stored for use in a restart?
What does a disposition of (new,catlg,keep) for a dsn mean?
Explain the function of job statement in jcl?