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

Explain the difference between using the read command with into option and set option?

0 Answers  


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

0 Answers  


What is a transid?

0 Answers  


Define RCT.

0 Answers  


What are the cics commands associated with task control?

0 Answers  






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

1 Answers  


What is the CICS command that is used to copy a screen image of a terminal into another terminal?

1 Answers   IBM,


If -1 is moved to length for more than one field on a map, where will the cursor be positioned?

6 Answers  


What is data only and map only in cics

4 Answers   TCS, Virtusa,


Define an aey9 abend?

0 Answers  


how to get 'time stamp' in cics prgms ,what is the syntax.

1 Answers  


Can you access QSAM (seq ) files from CICS ?

2 Answers   IBM,


Categories