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 process of converting the CICS commands into the equivalent host language statements called?
What are the differences between an EXEC CICS XCTL and an EXEC CICS LINK command.
What is the difference between a Symbolic map and Physical map ?
What is ATI? What kind of TDQ can be used?
Name the command which is used to release a record on which exclusive control is gained?
A mapset consists of three maps and 10 fields on each map . How many of the following will be needed ?
what is the use of tsq and tdq....at what situation we need to use this...pls tell me....
Explain the function of the load command?
what we will give in the ATI after reaching the trigger level eaither transation or program. EXEC CICS TRANSID() TERMID() TRIGGERLVL() what we have to code eaither TRANSATION OR PROGRAM
I have a Field which is of size 9(4). In the Screen if I enter the value for this field as 1234, it showing it as Valid. But if I enter only one or two digits, zeros should be appended in the remaining places. For example: When u enter 1 in the screen the output should be 0001. When you enter 12, output should be 0012. How to achieve this in the program?
The read of a record from an Intrapartition TDQ is not destructive(True or False).
when will be use the tdq and tsq??