what is the general use of PARM? Give an explanation about
the system defined parameters that could be passed through
this PARM like XREF,LIST,LET,APOST,RENT etc..
Answer Posted / tnr
PARM parameter is used to pass the data to the COBOL
program from JCL.Using this parameter you can pass only 100
characters excluding quotes.
| Is This Answer Correct ? | 2 Yes | 2 No |
Post New Answer View All Answers
how to do automated restart when a job abends?
What is catelog procedure and how many catelog procedure to use in one job?
How to submit jcl through a cobol program?
The disp in the JCL is MOD and the program opens the file in OUTPUT mode. What happens ? The disp in the JCL is SHR and the pgm opens the file in EXTEND mode. What happens ?
//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 DSN in JCL and what are the parameters to declare the DSN?
Explain the function of job statement in jcl?
WORKING-STORAGE SECTION. 01 GROSS-PAY. 05 BASIC-PAY PIC 9(5). 05 ALLOWENCES PIC 9(3). PROCEDURE DIVISION. MOVE 1000 TO BASIC-PAY. MOVE 250 TO ALLOWENCES. DISPLAY GROSS-PAY. STOP RUN. 77 W-A PIC 9(3)V99 VALUE 23.75 77 W-B PIC ZZ9V99 VLAUE 123.45 after the statement MOVE W-A TO W-B what will be W-B's value? a.123.75 b.b23.75 (where b indicates space) c.023.75 d.invalid move
In sms datasets, what is the function of the dd avgrec keyword?
how you can direct the data to spool using SYSOUT option?
What is the purpose of dd dummy statement?
Name the statement which can be used to send data to another mvs jes3 node?
What are steplib and joblib?
what sort card you will use to copy the data from one dataset to another dataset?
how would you create a temporary dataset? And where will you use them?