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 size of commarea

5 Answers   IBM,


define the field with ic in the bms map.

0 Answers   IBM,


plz give the syntax for receive map and receive text cmds in cics

1 Answers  


What is the CICS supplied transaction which performs syntax checking of a CICS command?

3 Answers  


what we will give in the ATI after reaching the trigger level eaither transation or program. EXEC CICS TRANSID() TERMID() TRIGGERLVL() what we have to code eaither TRANSATION OR PROGRAM

2 Answers   TCS,






What is the difference between a return with transid and xctl?

0 Answers  


What is an ASRA abend ?

3 Answers   IBM,


What is the difference between Re-Entrant and Quasi re entrant program?? By looking at the program how can you tell if its re- entrant or not??

1 Answers   IBM,


what are transient data sets defined to cics?

0 Answers   IBM,


Can you use OCCURS in a BMS map? If you do, what are the issues related with its use?

1 Answers   IBM,


Explain the difference between cics program control table (pct) and cics processing program table (ppt)?

0 Answers  


What is the attribute byte?

2 Answers   IBM,


Categories