How do you send the output of a COBOL program to a member of
a PDS?
Answer Posted / suputhru
Hey Guest,
you are doing great job, keep it up.
- SK.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
//S10 EXEC PGM=ICETOOL //TOOLMSG DD SYSOUT=* //DFSMSG DD SYSOUT=* //CON DD DSN=VAR.INPUT1,DISP=SHR // DD DSN=VAR.INPUT2,DISP=SHR //OUT DD DSN=VAR.OUTPUT,DISP=(NEW,CATLG,DELETE), // SPACE=(CYL,(5,5)),UNIT=SYSDA //TOOLIN DD * * Splice the needed data from the two VB files together SPLICE FROM(CON) TO(OUT) ON(5,5,CH) WITHALL - WITH(12,5) WITH(22,20) VLENMAX /*
What is 'mounting' of volumes ? Is there anything that a programmer can do in it ? How to find currently mounted volume ?
What are hierarchy levels in jcl?
Explain how can the disposition of sysout datasets be set for an entire jobstream?
what is the compile process of cobol program expalin with code
Define concatenating?
How to submit jcl through a cobol program?
Explain how can a stopped job be started again?
What are some jcl statements that are not allowed in procedures?
List the different components of jcl statement?
Explain the function of job statement in jcl?
How to submit a jcl from cics?
When you specify multiple datasets in a JOBLIB or STEPLIB, what factor determines the order?
How to remove the spaces at end of each record in the output file Via COBOL program? note: The file has a VB length ----TRY
How does the jcl specify the job to os?