Hi Please try to be to-the-point.
1) How to INCLUDE a JCL segment in a JOB ? (A Small example)
2) What is SPOOL and what is SPOOL FULL ? and how to direct
the output of a Jobstep to SPOOL ?
Answer Posted / prachi
1) you can use INCLUDE MEMBER as below
//JCLLIB ORDER=<Give the PDS name of the member you want to
include>
//INCLUDE MEMBER=<Give the member name here>
2> SPOOL is the place where you can see the status after
executing the job
3>To direct the output of a jobstep to spool we need to
give
//SYSPRINT DD SYSYOUT=*
//SYSOUT DD SYSOUT=*
| Is This Answer Correct ? | 6 Yes | 0 No |
Post New Answer View All Answers
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
How gdg are concatenated?
In sms datasets, what is the function of the dd avgrec keyword?
List the various advantages of using jcl language?
What is the function of the dd mgmtclas keyword in sms datasets?
What is timing concept in mainframe?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
What parameter directs the output of the job log dataset?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
which utility is used to sort a file in jcl?
In job processing, what happens in execution stage?
can any one plzzzzzz tell the jcl code for creating ps using idcams
//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 /*
What are some jcl statements that are not allowed in procedures?
Explain how can the disposition of sysout datasets be set for an entire jobstream?