What is COND=EVEN ?
Answers were Sorted based on User's Feedback
Answer / shailendra
i agree with the previous ans but
i will add this step will execute in both condition
(normal and abnormal) termination of previous step.
| Is This Answer Correct ? | 32 Yes | 1 No |
Answer / guest
Means execute this step even if any of the previous steps,
terminated abnormally.
| Is This Answer Correct ? | 23 Yes | 3 No |
Answer / kabi
I am agree with Shailendra .
EVEN means we have to check both normal and abnormal
condition of the prevoius step.
| Is This Answer Correct ? | 9 Yes | 2 No |
Answer / siri
cond=even it excutes the step even if the previous step executed successfully or unsuccessfully..........
cond=only it excutes the step only if the previous step executes unsuccessfully..
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ch.mohan
IT IS EXECUTED indipendently not for other steps
| Is This Answer Correct ? | 1 Yes | 0 No |
Answer / debjyoti mishra
it will execute even if previous step end normally or abnormally
| Is This Answer Correct ? | 0 Yes | 1 No |
Answer / samay simant
This means,
When this parameter is coded in any step,it will be
bypassed,irrespective of the return code of its prev step.
Cond=Only....Means bypass current step if the prev step
terminated abnormally.
| Is This Answer Correct ? | 2 Yes | 9 No |
what is the meaning of keyword in jcl?what is is opposite?
I have a JCL which 20 steps. How do I execute 17 th step alone (It should execute only 17ths tep.and it should not execute 18,19,20 steps??
9 Answers IBM, Infosys, TCS, Xansa, Xchanging,
What is order of searching of the libraries in a JCL?
What is the syntax of JCL statement?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The DISP in the JCL is SHR and the program opens the file in EXTEND mode. What happens ?
diff bw SB37,SD37,SE37 ?( bcz these 3 belongs Space related abends only)
if in a job, region is mentioned in both jobcard and in step then which is cosidered at the step level? A job has region 4k in jobcard and step1 with region 0k and step2 with 16k, then what is the region allocated for the entire job? what is the region step1 takes? what is the region step2 takes?
hi iam learning mainframes,can anybody tell me how to check JCL errors.(after submiting the JCL we have check in spool or is there any other method)
Max generations in GDG??
Explain the purpose of dd * statement in jcl?
Can we use DISP=SHR in output file in JCL
consider the following progrm statements MOVE 0 TO SW.NO.OF.REC PERFORM PRI-OUT UNTIL SW=1 DISPALY NO.OF.REC STOP RUN PRE-OUT READ IN-FILE AT END MOVE 1 TO SW WRITE OUO-REC FROM IN-REC ADD 1 TO NO.OF REC if the IN-FILE contains 1000 records what value will be displayed after the PERFORM is over? assume that N0.OF.REC has PIC 9(4) a.1000 b.1001 c.1 d.none of the above