I am editting a CICS program which is using a table 'AAA' . The program when run in production CICS uses the production table and when run in Test uses corresponding test 'AAA' table.
I have created table 'AAA' in test region , with creator as my "User id " .
Now my requirement is : I have to test the CICS program in test regions and the program has to use the test table created by me instead of the original test table .
Original Cursor statament :
FROM AAA
WHERE STR_I = :WS-TEMP
AND ACTL_APPL_AMOUNT = :WS-TEMP-FETCH-AMT
ORDER BY TRAN_DATE DESC,
I have edited it to
FROM USER_ID.AAA
WHERE STR_I = :WS-TEMP
AND ACTL_APPL_AMOUNT = :WS-TEMP-FETCH-AMT
ORDER BY TRAN_DATE DESC,
When i tried to compile , it got compiled, but it got failed while binding . I guess am not supposed to mention the qualifier of teh table explicitly in the CICS program .
Can you please suggest me how i can resolve this , is their any setting in CICS where i can edit my tran settings to use the table i wish ?
Thanks Nara