Answer Posted / pradeep
The IEBGENER can be used to call one JCL from another JCL,
example:
//TEST003 JOB 'SORT002',MSGCLASS=X,CLASS=T
//*
//STEP001 EXEC PGM=IEBGENER
//SYSPRINT DD SYSOUT=*
//SYSUT1 DD DSN=XXX.GENERAL.STUDY(TEST001),DISP=SHR
//SYSUT2 DD SYSOUT=(A,INTRDR)
//SYSIN DD DUMMY
Here the TEST003 Job when submitted, we inturn submit the
JCL member XXX.GENERAL.STUDY(TEST001)
| Is This Answer Correct ? | 25 Yes | 6 No |
Post New Answer View All Answers
What is jcl in mainframe?
Explain dd statement in jcl?
List the various advantages of using jcl language?
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 is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
How to run cobol program using jcl?
What is the use of disp parameter?
Name the statement which can be used to send data to another mvs jes3 node?
What is the purpose of dd * statement in jcl?
How to pass data to a program that is coded in an exec statement?
How do you access an uncatalogued dataset in a jcl?
State the uses of syspring, sysin, sort fields, sum fields and dummy.
What is catelog procedure and how many catelog procedure to use in one job?
Does jcl support automatic restart?
how would you create a temporary dataset? And where will you use them?