What is the improvement to COND= in the latest version of MVS?
Answer Posted / krithiga hari
COND statement can be replaced with IF END IF statement.
In COND, if the condition is true then the step will be
bypassed.
In IF END IF, if the condition is true then the step will
get executed.
Is This Answer Correct ? | 6 Yes | 1 No |
Post New Answer View All Answers
What are some jcl statements that are not allowed in procedures?
What is condition checking in jcl? Is this possible?
what is DSN parameter and DISP parameter is used for?
What parameters can be used to limit the number of records written to a sysout dataset?
Explain how can the submitting users racf authority be overridden in a job stream?
I have a job called careerride and some steps in it as step1,step2. But I want to execute step2 before step1 ? How do I do that?
What is catelog procedure and how many catelog procedure to use in one job?
Brief description of inline procedure of jcl.
what is use of disp parameter in dd statement?
What are s0c1, s0c4, s0c5, s0c7 and socb?
What happens if both JOBLIB & STEPLIB is specified ?
when does a dataset go uncataloged?
how you will the direct the data to spool using sysout option?
How to pass data to a program that is coded in an exec 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 /*