IF WE GIVE COND on step3 then, What does the following mean ?
And Just adding to that, All the below COND are VALID as per
the specifications.
(i) COND = (8,LT,step1,step2) ---(AND/OR ?)
(ii) COND = (8,LT,step1,step2, ONLY),
(iii) COND = (8,LT,step1,ONLY) will it execute only if this
condition is true or only if step1 ABENDS ?
(iv) COND = (8,LT,step1,step2,EVEN),
(v) COND = (8,LT,step1,EVEN) ?
Answers were Sorted based on User's Feedback
All the above COND are INVALID as per
the specifications.
| Is This Answer Correct ? | 2 Yes | 1 No |
Answer / muttaiah
yaa, it's invalid as per the syntax of cond.
Syntax:
Cond=(code,Relational Op,stepname)
code - 0 to 4096, RO - LT/GT/LE/GE/EQ,NE
If you give stepname say step1 it will check for that
step alone, If you want to check all the prior executed
steps ignore stepname.
Cond = Even or only
This we will use only in case of any abends.
| Is This Answer Correct ? | 0 Yes | 0 No |
What is the format of comment statement?
what happens in conversion stage in job processing?
Why 16 is used in calculating the DPRTY ? as, DPRTY = (num1, num2), THEN, DPRTY = 16* num1 + num2
Why do you use a control card?
how many max steps can we use in a job? pls answer to my question
Is it possible to left uncode disp?
i have 6 steps in my jcl program after going to 5th step i want to execute 3rd step.....how can i do it....by using(RESTART) can i do it or not?
Is there any command to check wether the ps file is in sorted order?
When concatenating two PDS can any one PDS can have empty dataset i.e without any value(Dummy).
What is the DD statement for a output file?
i have a jcl calling proc which has 10 steps, i want to execute from step5 to step10, where can i code RESTART and COND parameter?
What will happen if you attempt to restart a job in the middle of a JCL // IF .... // ENDIF?