IFABXIT (HLI function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
Line 32: Line 32:
Issue the IFABXIT call as soon as possible after entering the program, after the initial IFCSA call. </p>
Issue the IFABXIT call as soon as possible after entering the program, after the initial IFCSA call. </p>
<p>
<p>
See [[HLI: IFAM CICS processing#CICS abend handling|CICS abend handling]] for more information about CICS abend handling in IFAM2. </p>
See [[HLI: IFAM2 CICS processing#CICS abend handling|CICS abend handling]] for more information about CICS abend handling in IFAM2. </p>


==Coding example (COBOL)==
==Coding example (COBOL)==

Revision as of 15:48, 3 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, single cursor IFSTRT

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