How do you skip a particular step in a proc/JOB?
Answers were Sorted based on User's Feedback
Answer / guest
Can use either condition codes or use the jcl control
statement IF (only in ESA JCL)\
| Is This Answer Correct ? | 7 Yes | 2 No |
Answer / nikhil
Can use either condition codes or use the jcl control
statement IF (only in ESA JCL)
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / nikhil
To skip a particular step use Conditon in EXEC statement
If the condition is true then step will be bypassed.
Ex
//stepname EXEC PGM=xyz,COND(4,LT).
| Is This Answer Correct ? | 4 Yes | 2 No |
Explain about ISPF/TSO Commands
i have records from 1 t0 100 . i need to open records from 10 to 18 and change the values in tht ? how can i do tht ?
What is the function of dd name parameter with a 2 part structure; audit.report?
Passing a variable parm from JCL to a cobol/db2 program
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
what is the purpose of coding class parameter in job statement?
hi in one of the interview one asked me how to submit a job from cobol?as well as how to submit a jcl from CICS? can u pls any one tell me..
How do you override a specific DDNAME/SYSIN in PROC from a JCL?
I have 10 steps, I want to run STEP1 TO STEP4 then I should not run STEP5 and STEP6. Aganin I want to execute from STEP7 to STEP10. ONLY using CONDITION CODES how can we execute this process? 1. Where we can set cond codes for STEP5 and STEP6? 2. How can we execute remaining steps from STEP7 to STEP10?
If the proc stepname is excluded while overriding the COND, TIME, REGION and PARM parameters while calling the proc, will the override only apply to the first step in the proc or all the steps for all the above parameters?
i created one base gdg with lrecl = 100 , now i need to create versions with different lrecl =150,200 can it be possible to create like tht ?
There is one QSAM is the VB file. i want to get the first characters in this file and change those characters from'abcd' to '1234' and creat a vasm file to put '1234' in it. how to do in only JCL. if it not QSAM, it's VASM and VB. how to do it.