THERE IS ONE STEP AS BELOW:
//STEPJS060 EXEC PGM=XYX,
COND=((200,EQ,JS010),(0,NE,JS020.C),EVEN)
COULD ANY ONE EXPLAIN HOW COND PARAMETER WORKS HERE?
I AM CONFUSED BECOZ OF "EVEN".
Answers were Sorted based on User's Feedback
Answer / veerakumar k
'Even' is generally used in such a scenerio that even if
the previous step abends, the current step has to be
executed.
| Is This Answer Correct ? | 2 Yes | 2 No |
Answer / rookie
Here first
(200,eq,js010) will be checked it true the step will be
bypassed without further processing
if false then
(0,ne,js020.c) will be checked if false then again the step
will bypassed with no further processing of the cond
if false then
even will come to picture and the step will be executed even
if thr was any previous abends.
| Is This Answer Correct ? | 0 Yes | 3 No |
How to run cobol program using jcl?
Hi, Please clear me when COND=ONLY and COND=EVEN. Explain me with example.
i have a string of 80 chars i want to replace 4th char with "a"?
What is the maximum length of a single line of jcl?
There are 5 steps in a Job. How to bypass the first step by making use of only COND Parameter and not using any Restart and IF/THEN/ELSE parameter?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
Describe the DD statement, its meaning, syntax and keywords?
IF we are calling a PROC from Jcl...This Proc have 3 steps in it and we want to execute only the second step using the JCL, How to do it?? Please give the answer ASAP:)
what is pupose and meaning of the REGION keyword and what jcl statement is it associated with?
In jcl i have 255 steps. In 255 step i declared proc. In proc i have 20 steps this job is executable or not? why?
TIME parameter in JOB statement or EXEC statement specifies What type of time (CPU time or execution time)?
I have a JCL with 10 steps, want to execute first 5 steps only, what are ways of doing it?is it possible to control through JOB card?