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
Step 1 RC 4 Step 2 Step 3 I want to know the COND parameter which can be coded in step 2 or 3. Step 2 should be executed based on Step 1 RC and Step 3 should not be executed based on step 1's RC
how do you access an uncataloged dataset in a jcl?
which utility is used to run a cobol-db2 program?
What is the use of symbol // in jcl?
define cond parameter in jcl?
When output dataset space is required, what quantity categories are used?
How can the disposition of sysout datasets be set for an entire jobstream?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?
How would you understand error(execution phase)?
What is job control language?
Which statement is used to identify the private libraries in job?
If a (+1) generation dataset is created in the first step of a job, how can it be referenced in later steps of the same job for input?
How can unused space allocation be returned to the system when a dataset is closed?
How can values be passed from the job stream to an executable program?
What happens if both JOBLIB & STEPLIB is specified ?