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 |
1)what is compilation jcl for cobol program but it is calling another program 2)what is compilation jcl for cobol program but it is calling another program(in this, main program is pure cobol but sub program is cobol+db2 program.can anyone please answer me for above questions. it's very urgent
Can we give two user name in NOTIFY parameter in JOBCARD
Which statement is used to identify the private libraries in job?
How do you run a COBOL batch program from a JCL? How do you run a COBOL/DB2 program?
What is RESTART? How is it invoked?
what if any ,is the syntax error in the following piece of code 01 B PIC A(7) 02 C PIC 9(4) ........ IF(B NUMERIC) ADD 10 TO C a.the condition in the if statement is wrong b.noting is wrong c.because C is initialised.ADD 10 TO C is wrong d.both B and C shoud have same size.
In JCL..for TIME Parameter was specified both JOB & STEP..which one is overrides
which utility is used to run a cobol-db2 program?
I HAVE A VB BLOCK WHICH IS USED AS INPUT IN COBOL CONATINING SOME RECORDS CAN I CHANGE THE FILE FROM VB TO FB?
Is it possiable to use a gdg in the INCLUDE statement in a SORT jcl? I am using this because I want to change the condition with out changing the jcl. Please provide with a sample code.
How to get the last but one duplicate record of the file using Sort?
Is CPU time (TIME parameter) assigned to a JOB and JOBSTEP BOTH, by default ?