13 NOTFND


If the RESP of the CICS command is equal to "13", then it's meaning is NOTFOUND. Double check the search argument.

Default Action - The task gets terminated abnormally.

Command RESP RESP2 Reason, Deafult Action & Solution
CANCEL 13 Reason - This condition occurs if the request identifier specified fails to match an unexpired interval control command.

Solution - The CANCEL request identifier should match with unexpired interval control command. Modify the program to match the identifiers.
DELETE 13 80 Reason - An attempt to delete a record based on the search argument provided is unsuccessful.
Solution - This might occur due to the record already gets deleted or the record doesn’t exist. Handle the error programmatically.
READ
READNEXT
READPREV
RESETBR
STARTBR
13 80 Reason - An attempt to retrieve a record based on the search argument provided is unsuccessful.

Solution - This might occur due to the record already gets deleted or the record doesn’t exist. Handle the error programmatically.
13 81 Reason - XRBA was specified and the value of RIDFLD was greater than 4 GB, but the data set is not an extended ESDS.

Solution - XBRA option only used for extended ESDS. If the dataset is not extended ESDS, do not use XBRA. Modify program to remove the XBRA.