Explain the means of supporting pseudo conversation
programming. (E.g. Storing and restoring of states)
Answers were Sorted based on User's Feedback
Answer / gennady
Only RETURN with TRAN-ID will force CICS into pseudo conversation
Is This Answer Correct ? | 0 Yes | 0 No |
Answer / rohit
It is a mode of dialogue between program
and terminal which appears to the operator as a continuous
conversation but which is actually carried by a series of
tasks
EX:
Transaction TSK1
Program PROG1
PROCEDURE DIVISION.
:
EXEC CICS RECEIVE
END-EXEC.
:
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
TRANSID (‘TSK2’)
END-EXEC.
Transaction TSK2
Program PROG2
PROCEDURE DIVISION.
:
EXEC CICS
RECEIVE
END-EXEC.
:
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
END-EXEC.
Is This Answer Correct ? | 0 Yes | 1 No |
whar is the difference bwn LINK() and XCTL()?
7 Answers Cap Gemini, CGI, IBM,
What information can be obtained from the EIBRCODE?
What is the function of DFHMDF BMS macro?
Have you entered any program names in PPT or PCT? If so How?
Define the term function request shipping?
Define the term transaction routing?
What is the difference between receive and receivemap commands in CICS?
What are attribute bytes and how and why are they modified?
Explain the difference between tsq and tdq
Generally we check EIBALEN = 0 to decide whether first call or not. If I do not pass any value in the COMMAREA then EIBCALEN will be 0 even on second call. Now how can we say the program is called for the first time or second time?
What does a cics translator do?
What is the difference between FSET and FRSET?