As PARM can supply information to a program ? Can PARM be
used to supply information to a cataloged or Inline
Procedure also ?
Answer Posted / prachi
PARM is basically used to send the values to cobol program
So i guess in both the cases for instream as well as for
catalog procedure ...we can use PARM parameter..
Correct me if i am wrong..
| Is This Answer Correct ? | 1 Yes | 2 No |
Post New Answer View All Answers
What is the format of comment statement?
What is job control language?
Is automatic restart possible in jcl?
How to execute 2nd and 4th steps among 5 steps in jcl proc?
What is the function of a dd statement?
I have a cobol db2 program(PGM A) where other program (PGM B) will call this program and passes some 50 fields data to PGM A. PGM A has some layout in which it receives the data from PGM B. And this layout has been copied in the linkage section pf PGM A. After getting the data, PGM A writes the data in a flat file in the same layout which it receives from PGM B. PGM B is a simple COBOL pgm. Please provide a JCL to run these programs.
What are the 2 types of parameters in dd 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 /*
How jcl work to handle various input output file operations?
How to alter the parameters for the existing gdg?
What is the purpose of the dd keylen parameter?
Mainframes gets a text file that contains the name of the file. Now using JCL i want to locate that file name in the mainframe system and perform further processing. Please tell how to proceed
how can you check if a file is empty using jcl?
What are the difference between jcl and jes?
What dd statement is used to supply the name of a dataset?