How to execute step2,step1,step3 when step1,2&3 are in order
Answers were Sorted based on User's Feedback
Answer / 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 |
Answer / maruthi
PGM=IEBEDIT
DDNAME DD DSN=(DATA SET ALONG WITH PDS MEMBER(where we write
all the steps)
SYSOUT DD (*,INTRDR)
SYSIN DD *
EDIT TYPE=INCLUDE,STEPNAME=(STEP2,STEP1,STEP3)
/*
//
| Is This Answer Correct ? | 4 Yes | 0 No |
Answer / sandy
We can execute step3, 1, 2 in order by using the DPRTY.
By setting the execution priority of setplib we can achieve
this.
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / nand
This cannot be achieved and cannot be run in that order.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / narayana
// JOB1 JOB 'H557467j', 'KAVITHA', RESTART = STEP02
//STEP01 ..... COND = (0,EQ,STEP03)
//STEP02 ........ COND = (0,EQ,STEP01)
//STEP03 ....
i think it works then
else use iebedit utility.
| Is This Answer Correct ? | 0 Yes | 3 No |
Answer / kavithab
This is just a try... let me know the correct answer
// JOB1 JOB 'H557467j', 'KAVITHA', RESTART = STEP02
//STEP01 ..... COND = (0,EQ,STEP02)
//STEP02 ........
//STEP03 .... COND = (0,EQ,STEP01)
| Is This Answer Correct ? | 4 Yes | 14 No |
wt will happen to the step of a job if u code COND=ONLY
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above
Can a job have only steplib and no joblib ?
How different is the JCL executing a COBOL program? 1) if the program is using VB file as input. 2) if the program is using FB file as input.
What is the purpose and meaning of the REGION keyword and what JCL statement is it associated with?
HOW TO CONVERT VARIABLE BLOCK TO FIXED BLOCK ?
Definition of COND parameter in JCL
delete rules in db2
What do you do if you do not want to keep all the space allocated to a dataset?
what is the purpose of coding class parameter in job statement?
is it possible to submitt more than one job in job card in jcl? and if yes than is it necessary to have the jobs same name?
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file