what is the COND=EVEN ? Can anyone give me an example to
explain the usage.
Answer Posted / 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 |
Post New Answer View All Answers
How does jcl act on code(if you take a cobol program)?
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
I want my job (careerride) to be executed in 1 minute and 2 seconds. How do I do that?
How jcl work to handle various input output file operations?
What are the jcl procedures?
List the different jcl statements that are not permitted in the procedures?
Name a few IBM utility programs, and explain its function.
what are the types of abends that occur on job failure? And explain the possible causes of these
Brief description of inline procedure of jcl.
How to alter the parameters for the existing gdg?
I want to join to input files and write the matching fields on to an output file but i dont want the output file a sorted one
How to read and write a single record into a file. I would like to use it to enter a single 8-character piece of information and use it to put it into a variable for processing in JCL. Thank you
State the uses of syspring, sysin, sort fields, sum fields and dummy.
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?