what are the ways of passing data to a cobol program from jcl?
Answer Posted / manmohan
1.files
2.SYSIN DD*
3.PARM parameter
| Is This Answer Correct ? | 0 Yes | 0 No |
Post New Answer View All Answers
Must tape dataset definitions include vol=ser specifications?
What do you know about jcl?
How does the jcl specify the job to os?
how do you create a dataset in a jcl with the same file organisation as that of another existing dataset?
Which dd parameters are required?
what is DSN in JCL and what are the parameters to declare the DSN?
Why block size is multiple of lrecl in jcl?
What is the function of the dd dcb keyword?
how you can direct the data to spool using SYSOUT option?
what happens in conversion stage in job processing?
//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 /*
How to find the UNIT and VOLUME of a (a) KEPT (b) UNCATALOGED and (c) CATALOGED dataset - using (i) JCL and using (ii) ISPF ?
what is the resolution for sb37 error
What are the parameters that are used in creating a gdg?
What is the significance of addrspc parameter in exec statement?