How do you skip a particular step in a proc/JOB?
Answer Posted / 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 |
Post New Answer View All Answers
How to submit a jcl from cics?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
How do you overcome this limitation ?
Name the statement which can be used to send data to another mvs jes3 node?
What is catelog procedure and how many catelog procedure to use in one job?
what is use of dcb parameter in dd statement?
Matching Logic in Jcl not in cobol.Could any one please answer this question
Are there any set of rules for the names of the steps used in a job? What are they?
what is DSN parameter and DISP parameter is used for?
List the various advantages of using jcl language?
What does a disposition of (new,catlg,keep) for a dsn mean?
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
how you will the direct the data to spool using sysout option?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?