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 / alla srikanth
small change*** no need to mention cond=EVEN on on job
statement
specify restart=step2 on job statement i.e,
execution begings at step no 2 and every step from step2
onwards executed.
for odd number jobsteps specify cond=(o,le)(condition is
ture for all return codes hence steps with this cond code is
bypassed)
hence begin at step2 and odd no steps are bypassed i.e even
steps are executed
| Is This Answer Correct ? | 7 Yes | 7 No |
Post New Answer View All Answers
How gdg are concatenated?
define cond parameter in jcl?
What happens if both JOBLIB & STEPLIB is specified ?
What are the 2 types of parameters in dd statement?
Explain how can the submitting users racf authority be overridden in a job stream?
Explain the function of job statement in jcl?
Describe the various parameters utilized in the creation of a gdg?
Mention the types of job control statements?
What is the function of dd name parameter with a 2 part structure; audit.report?
How to pass the parameter in parm using linkage section ? (syntax)?
which utility is used a dummy utility?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Explain about ISPF/TSO Commands
Is condition checking possible in jcl? If yes, how?