How to execute step2,step1,step3 when step1,2&3 are in order
Answer Posted / r
//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=INCLUDE, STEPNAME=(STEP2,STEP1,STEP3)
/*
in SYSUT1, we need to mentioned the job name , which having
these 3 steps.
| Is This Answer Correct ? | 5 Yes | 0 No |
Post New Answer View All Answers
How to override loadlib?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
what is the JCL statement consists of?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
Matching Logic in Jcl not in cobol.Could any one please answer this question
When space is allocated for an output dataset, what units can be used?
Differentiate between the joblib and the steplib statements?
Explain how can values be passed from the job stream to an executable program?
What are the difference between jcl and jes?
Explain how can an in-stream dataset be terminated?
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
//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 /*
what are the statements that are not valid to be included in an include statement?
Define concatenating?