What is the function of the EXEC CICS HANDLE CONDITION
command?
Answers were Sorted based on User's Feedback
Answer / sahil
a) HANDLE option is used for exception handling
b) It should be used before the cics condition.
c) Handle condition gives the control to the para for exception handling.
| Is This Answer Correct ? | 6 Yes | 0 No |
Answer / ankit
handle condition route the cursor to particular para inorder
to take the paricular action when that error codition
occured after execution of that command.
exec cics handle condition
notfnd (para-1),
invrec (para-2),
duprec (para-3)
end-exec.
| Is This Answer Correct ? | 3 Yes | 1 No |
Answer / mahesh
In order make the program execution continuous even when an
exception is occured in a program.
| Is This Answer Correct ? | 5 Yes | 4 No |
How can we initiate a transaction from batch?
I just want to ask why does the variable I passed in a dclgen of sql that has a data type of varchar which has a maximum length is 250 is truncated,, Here is the code.. DCLGEN of rsauud01 table 01 dataarea 43 data-area-len pic s9(4). 43 data-area-text pic x(250). MYVARIABLE. 01 DATAAREA1 pic x(250). move 250 to data-area-len of dataarea of rsauud01 MOVE DATA-AREA1 TO data-area-text of dataarea of rsauud01 --- but it is always trucated everytime I insert it in the table by the way it is a cobol-cics program
Explain the thress bms options?
what is the cics command used to access current date and time?
What is the kcp in the cics?
What is meant by program reentrance?
What is a two Phase commit in CICS?
How do you get data from a task that began with a START command?
Explain how do you establish a starting position in a browse operation?
What will happen if some program tries to process a queue on which an ENQ command has been issued by some other program?
If I create a TSQ from one transaction, can I read it from another transaction?
What is meant by PPT and what are its uses?