Answer Posted / amit krishna
You can pass inputs to a PL/1 Program through a JCL by two ways.
1- Through PARM.
Through this method PARM=parameter keyword is mentioned on the EXEC statement in JCL. The supplied PARM should be received through an argument in MAIN PL/1 program & Further declared accordingly.
//STEP02 EXEC PGM=PL1PGM,
// PARM='20110423'
PL1PGM: PROC(PARM) OPTIONS(MAIN);
2- Through SYSIN
Through this method SYSIN statement followed by the parameter to be placed in the JCL. In the PL/1 program
It is necessary to use a "//SYSIN DD *" statment in the JCL.
//STEP02 EXEC PGM=PL1PGM
|
|
//SYSIN DD *
20110423
/*
OR You can write the input in a file.
//SYSIN DD DISP=SHR,DSN=MY.INPUT.DATASET(INPUT)
| Is This Answer Correct ? | 5 Yes | 1 No |
Post New Answer View All Answers
Can you define notcat 2?
How do you eliminate the duplicates?
How is next sentence and continue different?
Is the order of the when clause important in an evaluate statement? Is the order of the when clause significant in an evaluate statement?
What are the mainframe computing pros and cons?
hi.... anybody send real time project related questions & answers whatever will ask in interview plz.....help me? advanced thanks....
what difference exists between control area and control interval?
Can the values of alphanumeric be moved to variable numeric?
What is the difference between general testing and mainframe testing?
Give the format of using and giving in sort statement. What are the restrictions with it?
What is basic difference between directory and pds in ibm mainframe?
how are start and xctl different?
Name all the file-open modes
can you change the attribute in mapset? if so how?
by using xpeditor if we want to debug the subpgm, how can you code in x-ped for mai-pgm n sub-pgm ?