I have a JCL with 100 steps. I want run the Alternate steps
in the JCL ( Like 2 ,4,6,8 etc.. ). How can I acheive this
scenario? If It is by Cond Parameter can you provide the
Condition code for that?
Answer Posted / sathish kumar
In job card give restart=stepname2
from stepname3 to consecutive ODD steps give the below
condition
cond=(4095,GE)
This will execute the steps stepname2,4,6,8.... and
bypasses the odd steps.
| Is This Answer Correct ? | 3 Yes | 1 No |
Post New Answer View All Answers
what operation is performed by job statement?
How do you create a temporary dataset?
Can we use DISP=SHR in output file in JCL
Name what parameter directs the output of the job log dataset?
List the different components of jcl statement?
What is the maximum length of a single line of jcl?
Explain the function of //jcllib statement?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Explain the purpose of dd dummy statement?
Explain the job statement in jcl?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
What is the purpose of disp parameter?