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
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
what is the purpose of coding class parameter in job statement?
How do you overcome this limitation ?
what happens when COND is coded in JOB statement and when COND is coded inside EXEC statement?
how you can direct the data to spool using SYSOUT option?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
Are there any set of rules for the names of the steps used in a job? What are they?
What parameter directs the output of the job log dataset?
IIN APITUDE THEY GAVE ONLY 10 QUESTIONS.. THEY ARE SIMPLE ONE FROM NUMBER SERIES,BOATS,TIME & DISTANCE,PROFIT &LOSS,FIND OUT THE NUMBER ? 9 25 4 36 81 64 49 AND surveillance SPELLINGS E.T.C
Explain how can the submitting users racf authority be overridden in a job stream?
Is it possible to left uncode disp? If yes, how?
Are there any set of rules for the names of the steps used in a job?
How can values be passed from the job stream to an executable program?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?