Previous Topic: 10008 System IFCID Collection Failure

Next Topic: 10010 Data Base IFCID Record Not Desired

10009 Data Base IFCID Record Not Written


FILE:  DB2 System Activity File
SAS FILE NAME:  DETAIL.DB2DSY01
SOURCE LOCATION:  sharedprefix.MICS.USER.SOURCE(DB2DYEXC)

SEVERITY:  Warning            (Severity='W')
MANAGEMENT AREA:  Security    (MGMTAREA='Security')

PURPOSE:  This exception warns that the DB2 request to write
an IFCID record is not processable.

RATIONALE:

DEFINITION:   This exception is noted when the DSYIFCND 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:  10009                  */
/* TITLE:  IFCID RECORD NOT WRITTEN DATA BASE */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYIFCND GT 0 THEN DO;
  EXCCODE='10009';
  SEVERITY='W';
  MGMTAREA='SECURITY';
  EXCDESC1='IFCID RECORD NOT WRITTEN DATA BASE';
  EXCDESC2='DESTINATION = '            ||
           ' DATA BASE'                ||
           '   '                       ||
           'RECORD COUNT = '           ||
            PUT(DSYIFCND,6.)
            ;
  LINK HIT;
  END;