IFABXIT (HLI function): Difference between revisions
Jump to navigation
Jump to search
No edit summary |
|||
Line 1: | Line 1: | ||
==Summary== | ==Summary== | ||
< | <dl> | ||
The IFABXIT call (ABEND EXIT) establishes the IFAM2 abend handler. | <dt>Description | ||
<dd>The IFABXIT call (ABEND EXIT) establishes the IFAM2 abend handler. | |||
<p>IFABXIT is available only for use with the IFAM2 CICS interface. </p> | <p>IFABXIT is available only for use with the IFAM2 CICS interface. </p> | ||
<dt>Thread type | |||
<dd>multiple cursor IFSTRT, single cursor IFSTRT | |||
multiple cursor IFSTRT, single cursor IFSTRT | <dt>IFCALL function number | ||
<dd>97 | |||
</dl> | |||
==Syntax== | ==Syntax== | ||
Line 12: | Line 15: | ||
<p class="syntax">IFABXIT</p> | <p class="syntax">IFABXIT</p> | ||
< | <dl> | ||
< | <dt>Compile-only form | ||
<dd>Not available | |||
<dt>Execute-only form | |||
<dd>Not available | |||
</dl> | |||
< | |||
< | |||
< | |||
</ | |||
<p>There are no parameters available with IFABXIT.</p> | |||
<p> | |||
==Usage notes== | ==Usage notes== |
Revision as of 16:58, 4 May 2016
Summary
- Description
- The IFABXIT call (ABEND EXIT) establishes the IFAM2 abend handler.
IFABXIT is available only for use with the IFAM2 CICS interface.
- Thread type
- multiple cursor IFSTRT, single cursor IFSTRT
- IFCALL function number
- 97
Syntax
IFABXIT
- Compile-only form
- Not available
- Execute-only form
- Not available
There are no parameters available with IFABXIT.
Usage notes
- Use the IFABXIT call with an IFAM2 connection to Model 204 only in a CICS environment.
- Use IFABXIT if the host language application does not require its own abend handler. Using IFABXIT protects the application against a hung CRAM channel in the event of an abend prior to the first functional IFAM2 call.
- Issue the IFABXIT call as soon as possible after entering the program, after the initial IFCSA call.
- See CICS abend handling for more information about CICS abend handling in IFAM2.
Coding example (COBOL)
. . . PROCEDURE DIVISION. . . CALL "IFABXIT".