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 difference between link xctl?
What are attribute bytes and how and why are they modified?
What is the EIB parameter and the CICS command used to implement Pseudo-Conversational technique using single PCT ? Single PPT entry?
what is the purpose of using link ?
What is the procedure to solve an ASRA ABEND?
What happens to resources supplied to a transaction when an XCTL command is executed?
Can you have CICS code in a copybook? If yes, what happens during compilation?
Define RCT.
What is the primary function of the Sign-on Table?
How would you release control of the record in a READ for UPDATE?
what is an mdt (modified data tag)? Its menaing and use?
Explain the mdt in cics?