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 command used to send a map to a terminal?

1 Answers  


What is difference between copy and include?

6 Answers  


I want to know what exactly the STOPPER field does with example. Please help.

1 Answers  


Which is the program which determines whether a transaction should be restarted ?

1 Answers  


What tables must be updated when adding a new transaction and program?

2 Answers  


What is the command for reading a record form a TSQ?

3 Answers  


Which option of the PCT entry is used to specify the PF key to be pressed for initiating a transaction?

2 Answers   IBM,


With the use of an alternate index, how is a VSAM file accessed?

0 Answers  


What are the CICS commands associated with transient data queue processing?

1 Answers  


What is the difference between a PF key & a PA key ?

4 Answers   IBM,


Mention one alternative aspect of CICS?

0 Answers  


What is the difference between a RETURN with TRANSID and XCTL ?For example prog. A is issuing REUTRN with TRANSID to prog B. Prog A. is issuing XCTL to prog B?

3 Answers  


Categories