If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / raj
//STEP001 EXEC PGM=IEBEDIT
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD *
EDIT TYPE=EXCLUDE,STEPNAME=(STEP003,STEP005)
/*
| Is This Answer Correct ? | 7 Yes | 3 No |
Post New Answer View All Answers
Why block size is multiple of lrecl in jcl?
Is it possible to left uncode disp?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
Is condition checking possible in jcl?
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
How is a type of file defined in the jcl that executes the cobol program?
How jcl work to handle various input output file operations?
what is JCL?
what is use of dsn parameter in dd statement?
How to pass the parameter in parm using linkage section ? (syntax)?
In sms datasets, what is the function of the dd avgrec keyword?
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
Explain dd statement in jcl?
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 SOC4 error?