i have 10 steps in jcl program but i have to exicute only
2,4,6,8th and 10th ?how it's possible?
Answer Posted / sivaramakrishna
yes we can execute the above statements using cond
condition.
| Is This Answer Correct ? | 0 Yes | 1 No |
Post New Answer View All Answers
what is “Cond= even” and “Cond=only”?
//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 /*
Explain the function of //jcllib statement?
What is the purpose of dd?
how do you code a null statement?
what are the various stages of job processing?
what are the types of abends that occur on job failure? And explain the possible causes of these
what disp parameter we mention for creation of temporary dataset so that we can use it in later steps?
How to pass data to a program that is coded in an exec statement?
How would you understand error(execution phase)?
In sms datasets, what is the function of the dd mgmtclas keyword?
which parameter is use to declare the name of dataset in dd statement?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
Is automatic restart possible in jcl? If yes, how?