Hi.
I am getting CICS RESP = 22 and CICS RESP2 =11 while 'GET CONTAINER' operation.
Request Container copybook:
01 WS-REQ-INPUT
05 WS-INLENGTH PIC S9(04) COMP.
05 WS-INDATA PIC X(01) OCCURS 1 TO 128 TIMES DEPENDING ON WS-INLENGTH.
I am passing below data in input file:
000812345678
The 'Get Container' is somehow reading the static data(ws-inlength) and not variable data (ws-indata).
Does FLENGTH support determining length of variable data?