What is the improvement to COND= in the latest version of MVS?
Answer Posted / guest
MVS now allows for an IF bracketed by an END IF around any
job step to replace the COND= syntax. Again, if the IF
statement is true, the step is bypassed.
Is This Answer Correct ? | 0 Yes | 2 No |
Post New Answer View All Answers
What statement marks the beginning of a job step; assigns a name to the step; identifies the program or catalogued or in-stream procedure to be executed in the step?
How can return codes be tested before execution of a job step?
what is the difference between JES3 and JES2?
What statement can be used to send data to another mvs jes3 node?
what is JCL?
How to pass the parameter in parm using linkage section ? (syntax)?
Explain the function of the steplib dd statement?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
Is condition checking possible in jcl? If yes, how?
What are the 2 types of parameters in dd statement?
//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 do you access an uncataloged dataset in a jcl?
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
What is the purpose of dd?
What is the purpose of the dd keylen parameter?