There are 2PROCS in a JCL. I want following conditions to
be carried out
1) 1st PROC should be executed as such
In second PROC
2) First 4steps should not be executed
3) 5th step should not be executed
4) 6th and 7th step should be executed
The change should be done only in the JCL and PROC should
be untouched ?
Answers were Sorted based on User's Feedback
Answer / cr.arulmozhi
Using a condition Parameter like this in the JCL step
executing the second PROC might solve the problem....
// cond.step1=(0,le), cond.step2=(0,le), cond.step3=
(0,le)...
but I want to know if there is any other way to do it.
Could anyone help me on the same ?
| Is This Answer Correct ? | 5 Yes | 2 No |
Answer / sahana
for 1st one give COND=ONLY(it will execute 1st step if n only if second step executed)
2) COND=EVEN
3)COND=EVEN
4)COND=EVEN
| Is This Answer Correct ? | 0 Yes | 0 No |
Answer / prem...
Even IEDEDIT utility can be used and other way is restart
from the particular step and use a cond parmeter when you
want to skip any step in the job flow(0,le) and to skip the
last steps null(//) can be used.
| Is This Answer Correct ? | 0 Yes | 1 No |
Suppose there r 10 steps . Out fo which i want to execute 10th, 9th and 8th in reverse order without using IEBEDIT. How can i do that..???
Explain dd statement in jcl?
How to check empty file in jcl?
Explain about LMPUT-
What are the parameter we cannot use in procedure? How many instream we can write in single jcl?
What is a COND parameter in JCL?
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I GET THE PROGRAM FOR THIS
what happens when time=0 is given in jcl code. what happens when blksize=0 is given in jcl code. what is symbolic and overriding parameters and a example program.
How do you submit JCL via a Cobol program?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
Can we delete the data using IEFBR14 , IEBGENER??