Explain the means of supporting pseudo conversation
programming. (E.g. Storing and restoring of states)
Answer Posted / 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 View All Answers
What is the cics command level?
What is the primary aspect of CICS?
What is the pic clause for the hhmmss type of data fields?
What are the types of processes to create a map in cics?
Can you explain dfheiblk?
In a CICS program, how will you read a VSAM file?
mention the option (along with argument type) used in a cics command to retrieve the response code after execution of the command?
how can you prevent more than one user from accessing the same transient data queue?
Define task work area?
If we wish to create bms executable, what are the basic steps that the user has to go through?
Explain the function of the terminal control table?
Explain the difference between using the read command with into option and set option?
Kindly specify the pic clause for the any bll cell type of data fields?
Define an asra?
Name a few CICS programs which are generally used ?