How do we pass parameters into a CICS –DB2 program
Transaction TRN1 has associated program PROG1 (pseudo- conversational). Under certain condition, PROG1 transfer control (XCTL) to PROG2, which should have his own pseudo- conversation with the terminal. When PROG2 send the map and execute a RETURN TRANSID('TRN1'), after receiving the control from the terminal, which program will be initiated?
In which table would you make an entry for a BMS map?
Can you use DYNAMIC calls in CICS ?
the dfhcommara is used to pass information from one application to another. What are some other ways that this function can be accomplished?
How can the fact that EIBCALEN is equal to zeros be of use to an application programmer?
Explain the difference between and exec cics xctl and an exec cics link command?
How to establish dynamic cursor position on a map? How to get the cursor position when we receive a map?
how do you execute a background cics txn ?
What is the difference between a RETURN with TRANSID and XCTL ?For example prog. A is issuing REUTRN with TRANSID to prog B. Prog A. is issuing XCTL to prog B?
What does the following transactions do?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program
Name some of the common tables in CICS and their usage.