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 |
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
can we give instream data in procedure
Write a JCL by using the below requirement: File1 =1, File2 =11 and output needs to come as File3 =111?
What is JOBLIB ?
Explain how can an in-stream dataset be terminated?
Which statement is used to identify the private libraries in job?
How can I override a dsn that is contained in a proc called by another proc? I need to do the override in the calling JCL.
i want apply mainframe devolper with 3+ but i dont have that much of knowledge what isthe solution to get that much of knoweldge?
What is the job entry system used in your project? based on what criteria the sequence of jobs are picked if priority is not mentioned in the job card?
MOD, DELETE; What does a disposition of (,DELETE) mean ?
How can you execute a COBOL program via SYSIN in JCL?
A STEP has more than 1 file as INPUT. And we have to put all these records int 1 output file. How to do ? //InputF DD DSN=ID.File1 DSN=ID.File2 DSN=ID.File3