Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations gkittelson on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Overriding CBLQDA system variable through JCL

Status
Not open for further replies.

ghalewood

Programmer
Nov 13, 2001
42
EU
I am attempting to override the CBLQDA parameter through the
JCL to the program. I have used :-

//STEP0020 EXEC PGM=PXN2000,PARM='/CBLQDA(OFF)'
//STEP0020 EXEC PGM=PXN2000,PARM='/CBLQDA=(OFF)'
//STEP0020 EXEC PGM=PXN2000,PARM='/CBLQDA=OFF'
//STEP0020 EXEC PGM=PXN2000,PARM='/,CBLQDA=OFF'
//STEP0020 EXEC PGM=PXN2000,PARM='/,CBLQDA(OFF)'
//STEP0020 EXEC PGM=PXN2000,PARM=('/,CBLQDA(OFF)')

And I get the same response :-

+IGZ019I No valid COBOL option was found after the last slash

Does anyone have any ideas on how to correctly use this parameter.

Thanks
Graham
 
Hi Graham,
Not sure if this will help you but the correct syntax is PARM='/CBLQDA(OFF)'

For an example see
- I have tried the option myself and seemed to work so the only thing I can think of is an installation specific problem?

Regards
Mike
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top