If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / joshna
//jobname positional parms,keyword parms,.... Restart=step3
//..
//..
//..
//step3 exec=xxxx
//...
//step4 exec=yyyy,cond=(0,eq,step3)
//..
//step5 exec=zzzz
| Is This Answer Correct ? | 52 Yes | 12 No |
Post New Answer View All Answers
What are the difference between jcl and jes?
Name what parameter directs the output of the job log dataset?
Is it possible to code instream data in a PROC?
What is the purpose of dd dummy statement?
how can the same proc be re-used and called by many jobs?
a dd statement has 2 types of parameters. Name them?
What does it mean by Restart and Checkpoint in JCL ? How are checkpoints being taken and what is their usage ? How to use Checkpoint macro on a JOBSTEP ?
What is the significance of addrspc parameter in the exec statement?
Explain how can a jobs execution priority be modified?
what is “Cond= even” and “Cond=only”?
Why block size is multiple of lrecl in jcl?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
i want to store 20 digits . how will u do it in cobol ?
In sms datasets, what is the function of the dd avgrec keyword?
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you