what is the purpose of SYSOUT parameter in the DD statement?
Answer / 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 |
How we can code in a jcl to execute a job in a particular time and date without using any job shudular?. (Eg) i want to execute a particular job at 8 am on 01/01/2010.
IN DFSORT sum fields=none is usec to remove duplicates.how to write the duplicates in another dataset?
what is meant by jobtrac?
In my JCL 10 Steps Will Be there Now i want to execute step05 And step06. How to Give the Cond?
is step name is compulsory in jcl ?
How to search strings in multiple dataset with conditions 'string1 & string2'?
how to convert a file form fixed Length to variable length?
A statement about PROCs is " In PROCs, Symbolic Parameters can be assigned on PROC and EXEC", BUT On which EXEC, (i) On the JCL's EXEC which is calling to PROC1. (Inside JCL, EXEC PROC1) (ii) or On the PROC's EXEC where it calls the PGM1. (Inside PROC, EXEC PGM=PGM1)
What do you feel makes a good program?
a dd statement has 2 types of parameters. Name them?
how to execute the last 5 steps in jcl
Passing a variable parm from JCL to a cobol/db2 program