26 ITEMERR


If the RESP of the CICS command is equal to "26", then it's meaning is ITEMERR. Check the item number is within range, valid or not before performing operation.

Default Action - The task gets terminated abnormally.

Command RESP RESP2 Reason, Deafult Action & Solution
READQ TS 26 Reason - The ITEM number provided is out of range or attempt made to read beyond the end of queue using NEXT.

Solution - TSQ supports only 32767 items can written to the queue. Modify the program to check the item number value before the reading queue with NEXT.
WRITEQ TS 26 Reason - The ITEM number provided is out of range or exceeds 32767.

Solution - TSQ supports only 32767 items can written to the queue. If the item number exceeded, create another queue and write it.