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 the COMMAREA(communications area)?
What are all things you can do with CEDA?
What is the meaning of the enq command?
what is the option to be coded on return to associate a transaction identifier with next terminal.
How can we code a program such that we will never get a MAPFAIL error?
the dfhcommara is used to pass information from one application to another. What are some other ways that this function can be accomplished?
What is CICS ?
What is the difference between EXEC CICS HANDLE CONDTION and an EXEC CICS IGNORE command?
Explain the means of supporting pseudo conversation programming. (E.g. Storing and restoring of states)
Can you explain enq and deq used in cics?
What is meant by an attribute byte?
How do you place the cursor on a particular position on the screen?