Looking at an CICS module how would one will identify that
it is pseudo or full conversational?
Answers were Sorted based on User's Feedback
Answer / kasyap
If RETURN command with COMMAREA option follows the SEND command immediately then we can say it as a pseudo conversation mode
| Is This Answer Correct ? | 18 Yes | 1 No |
Answer / ravi
when we see the program we can say by checking whethere the
EXEC CICS
RETURN TRANSID(TR1)
END-EXEC.
After every send command in CICS.
| Is This Answer Correct ? | 7 Yes | 1 No |
Answer / rajesh reddy
After every send command there is a return command wth
TRANSID
EXEC CICS SEND
END-EXEC.
EXEC CICS RETURN
TRANSID('TSK')
END-EXEC.
| Is This Answer Correct ? | 3 Yes | 0 No |
Answer / lu
when u see in the program there are PFKEY, and EIBCALEN = 0
send map else receive map...it's a pseudo.....
| Is This Answer Correct ? | 4 Yes | 9 No |
Answer / smart
Basically all the CICS programs are pseudo conversational.
for this purpose the CICS/COBOL programs are compiled with
RENT,LIB,RESIDENT compiler options.
| Is This Answer Correct ? | 2 Yes | 7 No |
What is meant by an attribute byte?
What is Quasi-reentrancy?
How to handle exceptional conditions in cics?
What is DFHEIBLK?
What is the option that is used to erase all unprotected fields during a SEND MAP operation?
How can you Define and Install the Maps & Mapset ?
Explain the uses that are associated to tsq and tdq ?
How do find length of the cursor in cics map ?
Explain how to build up lu 6.2 communication?
Explain the logical message in cics?
What are the two outputs created as a result of generation of a map?
Explain floating maps with illustration.