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 can i code cond parameter in procedures ? i have a jclk calling a proc which has 10 steps i want to execute from step 5 to step 10 where can i code restrat parameter or cond parameter for ths
have in 100 records in a file i want to read first 3 records and skip next 3 records and agan i want to read 3 records and again i want to skip 3 records... run a loop from record one to 10 evaluate i/3 if comes even then skip else write to output file
For how long a job can be executed continuously in a mainframe ?
What is a Generation Data Group (GDG)?
Explain the function of the dd dcb keyword?
What are the causes for S0C1, S0C4, S0C5, S0C7, S0CB abends ?
Explain about Cobol Subroutines
What is the difference between sb37,se37,sd37 each?
A dd statement consists of 4 fields. Name them?
what is the function of spool command?
how can the same proc be re-used and called by many jobs?
I have Job A and Job B. I want to trigger Job B from Job A. Please advise.