What are the ways through which you pass value to an program from JCL?
Answer / manu g
Parm
Syntax in JCL
Step1 exec pgm=PL1PGM, parm='ABCD'
syntax in pl1
PL1PGM:PROC(parm1) options(Main);
dcl parm1 char(10);
Put(parm1);
End PL1PGM;
| Is This Answer Correct ? | 0 Yes | 0 No |
Where PL1 program will be compiled?
On what systems PL/1 is available?
Difference between main program and a sub program in PL/1?
Why do you need Translate?
What is the difference between bulitin fuction VERIFY and INDEX?
Picture clause of TIME in PL/1?
What are the different options in OPTIONS?
How space will be adjusted based on size of the field?
What are the file formats supported in PL/1?
What are the ways through which you pass value to an program from JCL?
What is the use of DEFINED attribute in DCL statement?
Explain REENTRANT?