IFABXIT (HLI function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
(Created page with "==Summary== <p> The IFABXIT call (ABEND EXIT) establishes the IFAM2 abend handler.</p> <p>IFABXIT is available only for use with the IFAM2 CICS interface. </p> ==Thread type...")
 
No edit summary
Line 1: Line 1:
==Summary==
==Summary==
<p>
<p>
Line 5: Line 6:


==Thread type==
==Thread type==
multiple cursor IFSTRT thread, single cursor IFSTRT thread
multiple cursor IFSTRT thread, <br />
single cursor IFSTRT thread


==Syntax==
==Syntax==

Revision as of 23:35, 2 May 2016

Summary

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 thread,
single cursor IFSTRT thread

Syntax

Full syntax (97)

IFABXIT

Compile-only syntax

A compile-only form of IFABXIT is not available.

Execute-only syntax

An execute-only form of IFABXIT is not available.

Parameters

No parameters available for use with the IFABXIT call.

Notes and tips

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".