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 / praveen bejjanki
1) Not sure what a JCL segment in a job
2) Spool is the place where we will see the status of the
submitted job. generally SDSF or IOF will be the spool.
SPOOL - Simultaneous Pheriperal Operation Online.
3) To direct the output of a jobstep to spool:
The DD stmt of the jobstep should be like below
//DDname DD sysout=*
But most of the people think like if we give like
//SYSPRINT DD SYSYOUT=*
//SYSOUT DD SYSOUT=*
output will be routed to spool which is wrong.
But sysprint DD stmt is used to route all the
messages,stmts generated by the utility(cobol program) to
be printed in spool
& sysout is used for displaying the Display stmts in cobol
program.
I hope this might give a clear picture of what you are
looking for
Can anyone tell me what a job segment in job
| Is This Answer Correct ? | 1 Yes | 1 No |
Post New Answer View All Answers
What is one line to pass PARM from JCL to COBOL?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How can values be passed from the job stream to an executable program?
What is the motivation behind coding class parameter in job statement?
When output dataset space is required, what quantity categories are used?
What do you understand by the term “keyword” with respect to jcl and what is the opposite of the term?
IIN APITUDE THEY GAVE ONLY 10 QUESTIONS.. THEY ARE SIMPLE ONE FROM NUMBER SERIES,BOATS,TIME & DISTANCE,PROFIT &LOSS,FIND OUT THE NUMBER ? 9 25 4 36 81 64 49 AND surveillance SPELLINGS E.T.C
How would you understand error(execution phase)?
How dummy is used in jcl?
Explain about LMFREE�free data set from its association with data ID
How to run cobol program using jcl?
Does jcl support automatic restart?
Explain dd statement in jcl?
What is the function of job statement in jcl?
I have 60 steps in the JCL and want to Execute Only First from PROC by overriding in JCL ?