I have a work file contains a list of ISN’s , The list has some deleted ISN’s from the ADABAS file. the requirement is to Read the workfile and use GET statement with the ISN and update a field on ADABAS file hence this the program should get the valid ISN’s and invalid ISN’s should be ignored. I tried using ON ERROR for handling NAT 3113 in the natural program but still the program fails with NAT error 3113. Can anyone give me an idea on how to handle this error.
Set the dynamic parameter RCGET=OFF for this Batch(?) job.
This will “ignore” any NAT3113 errors in your session.
.
— Parameter Reference —
RCGET - Handling of Response Code 113 for GET Statement
This Natural profile parameter specifies the action to be taken if Adabas Response Code 113 (requested ISN not found) is returned during the execution of a GET statement.
.
Possible settings:
ON Response Code 113 causes the program to be terminated.
OFF Response Code 113 will be ignored, the system variable *ISN will be set to “0”, and processing will continue.
Default setting - ON
Dynamic specification - yes
Specification within session - no