There are 2PROCS in a JCL. I want following conditions to
be carried out
1) 1st PROC should be executed as such
In second PROC
2) First 4steps should not be executed
3) 5th step should not be executed
4) 6th and 7th step should be executed
The change should be done only in the JCL and PROC should
be untouched ?
Answer Posted / sahana
for 1st one give COND=ONLY(it will execute 1st step if n only if second step executed)
2) COND=EVEN
3)COND=EVEN
4)COND=EVEN
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?
What statement marks the beginning of an in-stream or cataloged procedure in jcl and assigns default values to parameters defined in the procedure?
what is the difference between JES3 and JES2?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
Differentiate between the joblib and the steplib statements?
List the different jcl statements that are not permitted in the procedures?
What are the utility programs in jcl?
List in order the hierarchical levels of jcl?
Explain dfsort utility?
Give the syntax of job specifying jcl statement.
Many jcl statements contain specific values designed to direct and control the execution of the statement. What are these fields called?
Explain about LMQUERY�give a dialog information about a data set
What is one line to pass PARM from JCL to COBOL?
What is the format of comment statement?
I have mainpgm(abc) this is the only cobol pgm(non-db2).And this pgm calling subpgm name "acd" this also only cobol(non- Db)and this pgm calling some other subpgm this pgm has cobol-db2 pgm. 1) IF you calling static mode how to run and how to compile? 2) IF you calling dynamic mode how to run and how to compile? plz suggestion me.