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



Looking at an CICS module how would one will identify that it is pseudo or full conversational? ..

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

Looking at an CICS module how would one will identify that it is pseudo or full conversational? ..

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

Looking at an CICS module how would one will identify that it is pseudo or full conversational? ..

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

Looking at an CICS module how would one will identify that it is pseudo or full conversational? ..

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

Looking at an CICS module how would one will identify that it is pseudo or full conversational? ..

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

Post New Answer

More CICS Interview Questions

What is the difference between getting the system time with EIBTIME and ASKTIME command?

2 Answers  


Explain the difference between temporary storage queue (tsq) and transient data quene (tdq)?

0 Answers  


What option is specified in the SEND command to send only the unnamed fields on to the screen?

1 Answers   IBM,


What is effect on RECEIVE MAP when PF key is pressed? PA key is pressed?

1 Answers  


Explain the difference between the into and the set option in the exec cics receive map command?

0 Answers  






Can you explain cics translator?

0 Answers  


explain the means of supporting pseudo conversation programming. (Eg. Storing and restoring of states, control flow, error handling)?

0 Answers   IBM,


what is an mdt (modified data tag)? Its menaing and use?

0 Answers   IBM,


What is trigger level in the context of TDQs?

2 Answers   IBM,


mention the option (along with argument type) used in a cics command to retrieve the response code after execution of the command?

0 Answers   IBM,


Generally we check EIBALEN = 0 to decide whether first call or not. If I do not pass any value in the COMMAREA then EIBCALEN will be 0 even on second call. Now how can we say the program is called for the first time or second time?

3 Answers   Accenture,


What are the cics tables?

0 Answers  


Categories