If we have 100 job steps in JCL and we want to excute steps
only starting from 43 to 50, then how it can be coded in JCL/
Answer Posted / nitesh sethi
IEBEDIT can be used but the syntax needs to be bit modified.
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP10,STEP5,STEP15)
/*
//
Instead of this it will be
//SYSIN DD *
EDIT START=IEBEDITJ,TYPE=INCLUDE,
STEPNAME=(STEP10,STEP5,STEP15)
/*
//
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
List the different components of jcl statement?
How can an in-stream dataset be terminated?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
what is the use of IEBGENER utility?
How do you submit a job for execution?
what is use of dcb parameter in dd statement?
Why include statement is used in a jcl?
Define concatenating?
How is the record format of an output dataset specified?
Differentiate between addressing mode and run mode.
What is the function of dd disp parameter?
Explain how can a stopped job be started again?
Explain about LMFREE�free data set from its association with data ID
I need exexution process for JCL programs
Is it possible to define dd statements as you want?