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 |
Name some translator and compile options and explain their meaning?
What is the CICS command that is used to receive the un- formatted data from the terminal?
What are the common tables in cics and their usage?
How would you release control of the record in a READ for UPDATE?
What is EXEC CICS RETRIEVE ?
What is interval control?
How will you access a VSAM file using an alternate index?
What is the command that is used to delay the processing of a task for a specified time interval
Highlight the points of differences between XCTL and START?
Can you define multiple maps in a BMS mapset?
How is Telon(CA-Telon) used to build map?
How many exceptional condition can be given in a HANDLE CONDITION?