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 DATACOM db?
On the DD statement, what is the main difference between creating a new sequential flat file and a partitioned dataset?
i have 5 steps to execute in that i want to skip 3nd step and start execute from forth step how can u do this.
What are steplib and joblib? What for they are used?
what is the restart?hopw it is invoked?
How can return codes be tested before execution of a job step?
what is DD statement is used in JCL?
What is difference between Return Code, user completion code, Abend code and reason Code?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
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
Explain how can an in-stream dataset be terminated?
i have a ps with two columns eno and ename , i need to copy eno column values in one ps and ename column values in one Ps ? is it possible through iebgener . how ? thx in advance