I have a COBOL program that Accepts some input data. How do
you code the JCL statement for this?
( How do you code instream data in a JCL? )
Answer Posted / sandeep
ONE WAY OF ACCEPTING THE DATA IS
// SYSIN DD*
VALUE1
VALUE2
*/
AND OTHER WAY YOU CAN USE PARM PARAMETER IN YOUR JCL.
IN APPLICATION PROGRAM USE THAT DATA THROUHG LINKAGE
SECTION.
| Is This Answer Correct ? | 1 Yes | 0 No |
Post New Answer View All Answers
A chkpt is the parameter coded for multi-volume qsam datasets in a dd statement. When a chkpt is coded as chkpt=eov, a checkpoint is written to the dataset specified in the sysckeov statement at the end of each volume of the input/output multi-volume dataset. State whether true or false?
when does a dataset go uncataloged?
how you can access an uncataloged dataset in a JCL?
What is the significance of addrspc parameter in exec statement?
//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 sort card you will use to copy the data from one dataset to another dataset?
what is use of dsn parameter in dd statement?
How can the disposition of sysout datasets be set for an entire jobstream?
What is the function of //jcllib statement?
Explain about ISPF/TSO Commands
Explain the function of //jcllib statement?
Explain the purpose of dd dummy statement?
what is the purpose of coding class parameter in job statement?
Name the parameters which can be used to limit the number of records written to a sysout dataset?
Can I share my data with other jobs? How?