How do you pass some input from JCL to PL1?
Answers were Sorted based on User's Feedback
Answer / 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 |
When the job statement is used?
Is there any other debugging tool for expeditor?
What is the advantage of defragmentation?
Can you define foreign keys?
what do u write in the impact analysis document (i.e, for a change request)
what are the present versions of all mainframe modules?can any body let me know pls
Is therE anybody who knows about TICKLER FILE of RM.??thank you
what is RUNSQLSTM?
how do u debug without using xpeditor ?
Explain eib?
What is a mainframe?
How to resolve SOC4 & SOC7 errors?