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 other way of terminating a transaction?
Explain how pa key is different from pf key?
Explain how do you handle errors in cics programs?
Specify the requirements for automatic task initiation?
Mention the option (along with argument type) used in a CICS command to retrieve the response code
What are the common tables in cics and their usage?
In a string " SEMINAR" .Replace "A" by 123. will this replacement will happen ot will it give error? If not , den what will be the output?
specify the requirements for automatic task initiation. (Mention the control table, it is entries and the corresponding procedure division cics command).?
i would like to practise some programs in code some cics programs plz send the programs
What is data only and map only in cics
How can you accomplish breakpoint in intertest?
What is eib?