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

What is the difference between link xctl?

8 Answers   IBM, MBNA,


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

1 Answers  


What is the EIB parameter and the CICS command used to implement Pseudo-Conversational technique using single PCT ? Single PPT entry?

1 Answers   IBM,


what is the purpose of using link ?

5 Answers   Kanbay,


What is the procedure to solve an ASRA ABEND?

0 Answers  


What happens to resources supplied to a transaction when an XCTL command is executed?

1 Answers   IBM,


Can you have CICS code in a copybook? If yes, what happens during compilation?

3 Answers   IBM,


Define RCT.

0 Answers  


What is the primary function of the Sign-on Table?

1 Answers  


How would you release control of the record in a READ for UPDATE?

2 Answers   IBM,


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

0 Answers   IBM,


Explain the mdt in cics?

0 Answers  


Categories