IFABXIT (HLI function): Difference between revisions

From m204wiki
Jump to navigation Jump to search
m (ELowell moved page HLI: IFABXIT call to IFABXIT (HLI function call): better searchability; consistency with existing topic names)
(No difference)

Revision as of 21:27, 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".