what is the purpose of SYSOUT parameter in the DD statement?
Answer Posted / robin
SYSOUT is used to give the output of the program executed in
the step. WHatever the output is there, it can be printed in
SYSOUT. If SYSOUT is followed by DD and a dataset name, the
output is stored in that file, and if SYSOUT is followed by
DD and *, output is shown in spool itself.
The two types of statements are given below :-
SYSOUT DD DSN=dataset.name
or
SYSOUT DD DSN=*
| Is This Answer Correct ? | 34 Yes | 5 No |
Post New Answer View All Answers
in ways data can be passed to a COBOL program from JCL?
Differentiate between addressing mode and run mode.
I have a COBOL program that ACCEPTs some input data. How do you code the JCL statement for this?
what is JCL?
how can the same proc be re-used and called by many jobs?
Name a few IBM utility programs, and explain its function.
Is their any set of rules for dd? Explain.
//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 /*
Explain how can a stopped job be started again?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
How can a jobs execution priority be modified?
Explain the function of //cntl statement?
How does jcl act on a cobol code?
What parameter directs the output of the job log dataset?
define cond parameter in jcl?