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 |
How space will be adjusted based on size of the field?
what is the purpose of OPTIONS(MAIN)?
What is the difference between Based and Define?
What is the use of GET LIST and PUT LIST?
What are the CONDITIONS in PL/1?
How did PL/I originate?
What is the difference between DEFINED attribute and LIKE atrribute.
Pseudo Variables in PL/1?
What is the use of DEFINED attribute in DCL statement?
Picture clause of TIME in PL/1?
Difference between main program and a sub program in PL/1?
How do you handle exception in PL/1?