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 |
In JCl which of this activities get executed if act002 abnormally terminates //job001 job ......... //act001 exec pgm=cobo01 //act002 exec pgm=cob02, cond=(01,le) //actoo3 exec pgm=cob03, cond=only //actoo4 exec pgm=con04
List in order the hierarchical levels of jcl?
What is use of restart and how to use it?
which statement is used to end the in-stream procedure in a jcl?
Could you provide an example and its effect OF, Using COND on JOB and EXEC both ?
Is it possible to left uncode disp? If yes, how?
What is the function of //cntl statement?
1)what is compilation jcl for cobol program but it is calling another program 2)what is compilation jcl for cobol program but it is calling another program(in this, main program is pure cobol but sub program is cobol+db2 program anyone please answer me for above questions. it's very urgent
I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?
can a job be submitted through jcl only? is there another way to submit a job?
i need some shortcuts and tso commands can any on ehelp me in these ?
How to DEBUG a JCL?