What is the difference between the NOHANDLE option and the
IGNORE condition?
Answers were Sorted based on User's Feedback
Answer / mani
NOHANDLE can be specified in any cics command which means
when it is used in exec cics, if at all any exceptions
occur while executing the cics command it will not handle
that and goes to next line for execution
whereas
IGNORE is a command in itself and in ignore we specify when
a particular exception occurs what is to be done.
example
EXEC CICS IGNORE
OVERFLOW(PARA-NAME)
END EXEC
| Is This Answer Correct ? | 17 Yes | 5 No |
Answer / vishal k gupta
Nohandle is going to disable any previous handle command
provided in the program. This will temporarily disable that
section of code where nohandle has been put. A handle
command is a sticky command.
However an Ignore command is going to ignore the condition
whenevr that condition occurs.
| Is This Answer Correct ? | 17 Yes | 5 No |
Answer / thavasi
NOHANLDLE option:
use the NOHANDLE option with any cics command to specify
that you want CICS to take no action for any condition or
attention.
IGNORE CONDITION:
An IGNORE CONDITION command for a given condition applies
only to the program you put it in, and it remains active
while the program is running, or until a later HANDLE
CONDITION command naming the same condition is met, in which
case the IGNORE CONDITION command is overridden.
| Is This Answer Correct ? | 4 Yes | 0 No |
Explain how many exceptional condition can be given in a handle condition?
IN CICS APPLICATION PROGRAM, INSTEAD OF HARDCODING MAP AND MPASET NAMES WHILE SENDING AND REIEVING ...CAN WE DO LIKE THIS ??? MOVE MAP AND MAPSET NAMES TO WORKING STORAGE SECTION VARIABLES AND USE THOSE VARIABLES WHILE SENDING AND RECIEVING MAP.IF YES, HOW CAN WE MOVE MAP INPUT , OUTPUT VARIABLES. IF ANYBODY KNOWS THIS PLEASE POST THE ANSWER
What is the difference between the XCTL and LINK commands?
Define the term mro (multi region operation)?
Is it possible to delete Symbolic Map? What is the impactness if we delete symbolic map?
Explain how and where is the twa size set?
What is DFHAID? what is its use?
Can you define bms?
how we change the vsam file name in cics rigion? anybody elobrate this?
pf7 and pf8 logic. first wnen i press pf7 first five records has to be displayed .second time when i press pf7 next five records to be displayed. what was the logic. give clear explination.
Explain cebr transaction commands?
if i have 3 fields and i declare IC for all of them .. Then where will the cursor after sending map? pls give explanation (it will be so kind)