4. EXCEPTIONS › 4.3 Exception Descriptions › 10017 Successful Abort
10017 Successful Abort
FILE: DB2 System Activity File
SAS FILE NAME: DETAIL.DB2DSY01
SOURCE LOCATION: sharedprefix.MICS.SOURCE(DB2DYEXC)
SEVERITY: Warning (Severity='W')
MANAGEMENT AREA: Productivity (MGMTAREA='Productivity')
PURPOSE: This exception warns that a unit of recovery was
backed out. Possible reasons are an application program
abend, an application deadlocked on data base records, or the
application program was canceled by the operator.
RATIONALE: It is important that application program failures
be noted because of the effect on application productivity.
DEFINITION: This exception is noted when the DSYABORT flag
is non-zero.
EXCEPTION STATEMENTS: The SAS statements identifying the
exception situation and describing the condition are stored
in the source member named in SOURCE LOCATION and are
described below:
/* ***************************************** */
/* EXCEPTION NUMBER: 10017 */
/* TITLE: SUCCESSFUL ABORT */
/* FILE: DB2DSY01 */
/* ***************************************** */
IF DSYABORT GT 0 THEN DO;
EXCCODE='10017';
SEVERITY='W';
MGMTAREA='PRODUCTIVITY';
EXCDESC1='SUCCESSFUL ABORT';
EXCDESC2='COUNT = ' ||
PUT(DSYABORT,6.)
;
LINK HIT;
END;