Explain the means of supporting pseudo conversation
programming. (E.g. Storing and restoring of states)
Answer Posted / 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 |
Post New Answer View All Answers
What is the type of ppt in the cics?
How errors are handled in CICS programs?
Explain the difference between a package and a plan.
Specify the requirements for automatic task initiation?
What are the ways fot initiating a transaction?
What is task control?
List out all the tables that are a part of cics ?
Sync points cannot be requested by the application programs? State true or false
What is meant by PPT and what are its uses?
Can a CICS code be a part of a copybook? If so, then what are the outcomes after compilation?
Explain how pa key is different from pf key?
What is the kcp in the cics?
Explain the difference between a return with transid and xctl? For example program. A is issuing return with transid to program b. Program a. Is isssuing xctl to program b?
Explain the difference between getting the system time with eibtime and asktime command?
How to establish dynamic cursor position on a map?