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 |
What is the command used to send a map to a terminal?
What is difference between copy and include?
I want to know what exactly the STOPPER field does with example. Please help.
Which is the program which determines whether a transaction should be restarted ?
What tables must be updated when adding a new transaction and program?
What is the command for reading a record form a TSQ?
Which option of the PCT entry is used to specify the PF key to be pressed for initiating a transaction?
With the use of an alternate index, how is a VSAM file accessed?
What are the CICS commands associated with transient data queue processing?
What is the difference between a PF key & a PA key ?
Mention one alternative aspect of CICS?
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?