Explain the means of supporting pseudo conversation
programming. (E.g. Storing and restoring of states)

Answers were Sorted based on User's Feedback



Explain the means of supporting pseudo conversation programming. (E.g. Storing and restoring of st..

Answer / gennady

Only RETURN with TRAN-ID will force CICS into pseudo conversation

Is This Answer Correct ?    0 Yes 0 No

Explain the means of supporting pseudo conversation programming. (E.g. Storing and restoring of st..

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

Post New Answer

More CICS Interview Questions

whar is the difference bwn LINK() and XCTL()?

7 Answers   Cap Gemini, CGI, IBM,


What information can be obtained from the EIBRCODE?

1 Answers  


What is the function of DFHMDF BMS macro?

2 Answers  


Have you entered any program names in PPT or PCT? If so How?

2 Answers   IBM,


Define the term function request shipping?

0 Answers  


Define the term transaction routing?

0 Answers  


What is the difference between receive and receivemap commands in CICS?

1 Answers  


What are attribute bytes and how and why are they modified?

1 Answers  


Explain the difference between tsq and tdq

0 Answers  


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 does a cics translator do?

0 Answers  


What is the difference between FSET and FRSET?

3 Answers  


Categories