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 |
What is a COND parameter in JCL?
i have a ps with two columns eno and ename , i need to copy eno column values in one ps and ename column values in one Ps ? is it possible through iebgener . how ? thx in advance
what is DD statement is used in JCL?
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
How do you submit a JCL under CICS environment ?
i have 10steps and i want run step3 and based on step3 i want execute step7,8,9,10?in jcl
What does a disposition of (NEW,CATLG,DELETE) mean?
We are using 2 files , file one has data, file two is empty.Using jcl how can we find the other file is empty?
a job have 5 steps and it will executes a proc which have 5steps in it. now i have to execute step3 only when step2 of proc executes successfully
what is the compile process of cobol program expalin with code
My JCL contains four steps //STP1 A(+1), DISP = NEW //STP2 A(+2), DISP = NEW //STP3 A(+3), DISP = NEW //STP4 A(+1), DISP = OLD STP3 was abended and I want restart my JCL from STP3 onwards & what are the precaution I want to take & what are the changes I need to make. Pls let me know.
What is GDG?