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 do you handle exception in PL/1?
What is the difference between Based and Define?
How we can disable the enabled CONDITIONS.
What are the different datatypes in PL/1?
How do you include an copybook?
What is the use of DEFINED attribute in DCL statement?
How did PL/I originate?
what is the purpose of OPTIONS(MAIN)?
What are the ways through which you pass value to an program from JCL?
What is PL/I?
What do the compilers provide?
What are the different storage classes in PL/1?