If there are five steps in a JCL i have to execute the 3rd
step, bypass the 4th step and execute the 5th step how do i
do this?
Answer Posted / name
It depends on the situation. I recommend against using
IEBEDIT to alter the JCL. Use of IF ... THEN is more
perspicuous than use of the COND parm.
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
what operation is performed by job statement?
what are the various stages of job processing?
what happens in execution stage in job processing?
//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 does the jcl specify the job to os?
What is jcl in mainframe, and how many types of jcl statements are there for a job?
Explain about ISPF/TSO Commands
how can you check if a file is empty using jcl?
How jcl work to handle various input output file operations?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
What are the 2 types of parameters in dd statement?
how can a gdg base be created in a jcl. What is the difference between empty and scratch parameter while defining/altering gdg base?
Explain the function of //cntl statement?
What are steplib and joblib?