what is the COND=EVEN ? Can anyone give me an example to
explain the usage.
Answers were Sorted based on User's Feedback
Answer / dnyandeep
COND=EVEN, when it is coded on JCL step, that step will execute EVEN when previous step executes abnormally. This means even if previous step completes then also this step will execute.
COND=ONLY, when it is coded on JCL step, that step will execute only when previous step executes abnormally.
I think the use of it depends on programmers need and logic.
| Is This Answer Correct ? | 8 Yes | 2 No |
Answer / suputhru
COND=EVEN,this step will execute when previous step executes abnormally or normally.
COND=ONLY, this step will execute when only(must)previous steps executes abnormally.
| Is This Answer Correct ? | 2 Yes | 0 No |
i have 10 steps in jcl program but i have to exicute only 2,4,6,8th and 10th ?how it's possible?
Suppose I have Five Steps in PROC In this Case I want to Execute third Step in PROC using Main JCL don't use any COND Explain with Coding Thanks & Regards SHREE
if we are specifing joblib as well as steplib in job then at the time of execution how the process will complete
jcl is like a complier....?
How to exclude the duplicate records from two concateded flat files (records from both files must be removed)?
i have 1000 records in input file and i want to sort it and the first 200 records to be placed in output file. how to do that??
If i am going to change some variable in a copybook( size or variable type) ,what are the changes that need to be done in the corresponding JCL.
if we give two job cards in a single what happens
What is the difference between primary and secondary allocations for a dataset?
What are the 2 types of parameters in dd statement?
proc1,proc2,up to proc5 is there if i want to call proc1 and proc5how can u write the code
How to print data of sequential file to Spool..?