a job have 5 steps and it will executes a proc which have
5steps in it. now i have to execute step3 only when step2 of
proc executes successfully
Answers were Sorted based on User's Feedback
Answer / vinay sonar
You can de it by using COND parameter in step3.
Use always true condition which is
COND=(0,GT,STEP2) OR COND=(4095,LT,STEP2)
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / vinay srivastava
Code in calling JCL :
//JOB1 JOB ...
.
//Pstep EXEC PROC1,COND.STEP3=(0,LT,STEP2)
.
.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / amy
//job1 job a123,'amy',class=a
//proc1 proc
//step01 exec pgm=prog1,
//step02 exec pgm=prog2,
//step03 exec pgm=prog3,(0,eq,step02)
//step04 exec pgm=prog4,(0,eq,step02)
//step05 exec pgm=prog5,(0,eq,step02)
// pend
//step001 exec pgm=proc1
//step002 exec pgm=prog6
//step003 exec pgm=prog7
//step004 exec pgm=prog8
//step005 exec pgm=prog9
//
save it as abc.xyz(member)
now write an another jcl
//job2 job a123,'AMY'
//step1 exec pgm=IEBEDIT
//sysut1 dd dsn=abc.xyz(member)
//sysut2 dd sysout=(b,intrdr)
//sysin dd *
edit start=job1,type=include,stepname=(step001,step003)
/*
WHEN YOU WILL SUBMIT THIS JOB2 THEN ONLY two steps of
proc1(step01 and step02) and
step003(pgm=prog7) will be executed.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the difference between a PDS member and a GDG Generation ? Is it only this, that with a generation we can use +1, 0, -1 etc while with PDS member we can not ?
Can we Execute a job without specifying Job Name in the Job Card?
What is the purpose of include statement in a JCL?
Explain about File Tailoring
How to DEBUG a JCL?
Why block size is multiple of lrecl in jcl?
In a proc i will concatinate 4 dd statements.i want to overide 3 dd statement through jcl how?
I have 5 generations in my GDG. How do I code in the JCL to consider all the 5 versions of the GDG ?
AM HAVING A FILE WHICH CONTAIN 12 DATS OUT OF WHICH 4 ARE DUPLICATES HOW TO REMOVE THE DUPLICATE FILES IN JCL? CAN I GET THE PROGRAM FOR THIS
What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
what is the purpose of coding notify parameter in job statement?
How is a GDG base created?