How to execute step2,step5,step7 of a proc of 10 steps?
You are not allowed to change in JCL.
Answers were Sorted based on User's Feedback
Answer / muttiah
@Adarsh:
That will be useful when we want to copy steps from a JCL
directly, not from a PROC.
@ NaliniNayak:
Using restart you can point to step2 of a proc as below.
//RESTART=PROCSTEP.STEP2 in the job card.
Code Cond=(0,LE) for all the steps you want to skip..Say in
our case it's 3,4,6,8 and 9th step in proc.
| Is This Answer Correct ? | 2 Yes | 0 No |
Answer / 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 |
i need some shortcuts and tso commands can any on ehelp me in these ?
What are steplib and joblib? What for they are used?
the command to open a dataset directly from the JCL instead of opening it separately using 3.4 option.
what is instream data
What are the 2 types of parameters in dd statement?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
describe the exec statement,its meaning ,syntax and keywords?
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
Is acct parameter mandatory?
Explain about LMINIT - generate a data ID for a data set
What is the meaning of the EXEC statement keyword, COND? What is its syntax?
Can I share my data with other jobs? How?