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 / avinashn17
use the following,
//STEP1 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXXX(MEMBER),DISP=SHR
//SYSUT2 DD SYSOUT=(*,INTRDR)
//SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP43-STEP50)
/*
only steps 43-50 would be included and executed.
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
Is it possible to define dd statements as you want?
which parameter is used to check the syntax of a jcl without executing it?
define cond parameter in jcl?
Does jcl support automatic restart?
Can an individual step be restricted from using all the jobs allowed cpu time?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
What is multithreading in jcl?
write a jcl to execute a job by 7:00 am on jan 20,1986?
How do you overcome this limitation ?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
What is the function of job statement in jcl?
What is the function of //cntl statement?
What are the utility programs in jcl?
What is concatenating?