How to execute step2,step5,step7 of a proc of 10 steps?
You are not allowed to change in JCL.
Answer Posted / krish123
we can use COND code in order to execute this. Use condition
code in each step
//JOBNAME JOB ACCT, RESTART=PROCA.STEP2 ---> INORDER TO
EXECUTE THE PROGRAM FROM STEP2
//PROCA EXEC PROCA
//STEP1 EXEC PGM=PROGRAM1
//STEP2 EXEC PGM=PROGRAM2,COND=(0,LT,STEP1)
//STEP3 EXEC PGM=PROGRAM3,COND=(0,GT,STEP2)
//STEP4 EXEC PGM=PROGRAM4,COND=(0,GT,STEP3)
//STEP5 EXEC PGM=PROGRAM5,COND=(0,LT,STEP4)
//STEP6 EXEC PGM=PROGRAM6,COND=(0,GT,STEP4)
//STEP7 EXEC PGM=PROGRAM7,COND=(0,LT,STEP6)
//STEP8 EXEC PGM=PROGRAM8,COND=(0,GT,STEP7)
//STEP9 EXEC PGM=PROGRAM9,COND=(0,GT,STEP8)
//STEP10 EXEC PGM=PROGRAM10,COND=(O,GT,STEP9)
| Is This Answer Correct ? | 11 Yes | 13 No |
Post New Answer View All Answers
What is one line to pass PARM from JCL to COBOL?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
What are s0c1, s0c4, s0c5, s0c7 and socb?
what is the purpose of coding notify parameter in job statement?
Explain about LMQUERY�give a dialog information about a data set
What is the function of the dd dcb keyword?
How to compare two files in SYNCSORT and on the mismatch record should be deleted from second file.
What is the syntax of JCL statement?
What do you understand by the term job time – out and how can you overcome that?
Is condition checking possible in jcl?
what is DD statement is used in JCL?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
What is the function of the dd avgrec keyword in sms datasets?
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 ?
when can a job time-out occur? How to overcome that?