How we can disable the enabled CONDITIONS.

Answer Posted / nandish shanabog c s

Few (though NOT ALL) ON unit can be disabled using NO<ON_UNIT_NAME> at the program level (at MAIN PROC), or procedure level or for a particular statement in PL1 program.

Example:

1.
To disable ENDFILE on-unit in your entire program, you may code as below:

(NOENDFILE):
MAINPGM: PROCEDURE OPTION(MAIN);

2.
To disable a on-unit for a particular procedure:

(NO<ON_UNIT>):
PROC1: PROCEDURE;

3.
To disable for a particular statement:
(NO<ON_UNIT>):
STATEMENT;

Is This Answer Correct ?    1 Yes 0 No



Post New Answer       View All Answers


Please Help Members By Posting Answers For Below Questions

What tools are available in PL/1?

1126


How can I try out PL/I?

1158


What are the different options in OPTIONS?

1124


What are the ways through which you pass value to an program from JCL?

1027


What do the compilers provide?

1078






Difference between main program and a sub program in PL/1?

2438


How did PL/I originate?

1097


What is PL/I?

1045


 How do you handle exception in PL/1?

1228


On what systems PL/1 is available?

1172