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 |
if my GDG limit has been kept as 50 and if am trying to put 60 records.what would happen. will there be any abend for this scenario
can any one plzzzzzz tell the jcl code for creating ps using idcams
What is the use of disp parameter?
As PARM can supply information to a program ? Can PARM be used to supply information to a cataloged or Inline Procedure also ?
What is a PROC? What is the difference between an instream and a catalogued PROC?
What is COND=ONLY ?
what is force complete
Are all (i), (ii), (iii), (iv) of the below are VALID to reference a temporary dataset ? STEP2 DD1 DD DSN = &&TEMP STEP3 DD2 DD (i) DSN = TEMP (ii) DSN = *.TEMP (iii) DSN = *.STEP1.DD1 (iv) DSN = *.STEP1.DD1.ONE
How to find out the number of records in a file using JCL
Suppose I have a file with three fields with data in the following format 1. empid - S9(4) COMP 2. empname - X(20) 3. empsal - S9(5)V(2) COMP-3 If I view this file, it will not be in a readable format. How to display the empid and empsal fields in a readable format without using COBOL program? What kind of SORT card will have to be coded?
In SPACE,what is directory,RLSE
Explain the function of the steplib dd statement?