How do you send the output of a COBOL program to a member of
a PDS?
Answer Posted / chandrakant
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 ? | 4 Yes | 2 No |
Post New Answer View All Answers
if we want to use a gdg which is already created by some job, then how to use the reference of the last generation in a jcl?
How to override a dsn that is contained in a proc called by another proc? I need to do the override in the calling jcl?
For what purpose steplib and joblib are used ?
Can anybody tell what is tool used to generate the list of PROCS used in JCL to generate a PROCTREE
What is the difference between run mode and addressing mode?
Is acct parameter mandatory?
Explain how can the attributes of one sms dataset be copied to another dataset?
What do you understand by the term notcat 2 – gs?
How jcl work to handle various input output file operations?
Can an individual step be restricted from using all the jobs allowed cpu time?
how do you access an uncataloged dataset in a jcl?
what EXEC statement is and what is the syntax of EXEC statement used in JCL?
How dummy is used in jcl?
when does a dataset go uncataloged?
in a jcl, a large volume dataset is loaded to a table using bmcload in step1 and an image copy of the loaded table is taken using bmccopy in step2. Step2 abends because the image copy dataset cannot hold the volume of the table. How can this be rectified?