How do you send the output of a COBOL program to a member of
a PDS?
Answer Posted / prasad
For the output data set, code the name as the pds along with
the memner name. for example if you want to create a new
member abc in pds aa.bb.cc, then code it as
DD DSN=AA.BB.CC(ABC),
DISP=(NEW,CATLG,DELETE),
UNIT=your unit,
SPACE=(TRK(1,1),RLSE), --> this is only indicative
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Is condition checking possible in jcl? If yes, how?
What does a disposition of (new,catlg,keep) for a dsn mean?
how would you create a temporary dataset? And where will you use them?
Why include statement is used in a jcl?
what is “Cond= even” and “Cond=only”?
How to alter the parameters for the existing gdg?
in order to execute step2 a job after a return code of 8 in step1, what condition you will code in step2?
What do you understand by the term job time – out and how can you overcome that?
Which statement is used to identify the private libraries in job?
a set statement is used to define commonly used symbolic across job steps or procedures. It initializes the previous values in the symbolic names. It has to be defined before the first use of the symbolic names in the jcl. State whether true or false?
what is the use of IEBGENER utility?
Name what parameter directs the output of the job log dataset?
What is the function of //cntl statement?
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
define cond parameter in jcl?