Previous Topic: 10005 System IFCID Record Not Written

Next Topic: 10007 System IFCID Buffer Not Available

10006 System IFCID Record Not Desired


FILE:  DB2 System Activity File
SAS FILE NAME:  DETAIL.DB2DSY01
SOURCE LOCATION:  prefix.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 DSYRCNDS 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:  10006                  */
/* TITLE:  IFCID RECORD NOT DESIRED SYSTEM   */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

IF DSYRCNDS GT 0 THEN DO;
  EXCCODE='10006';
  SEVERITY='W';
  MGMTAREA='SECURITY';
  EXCDESC1='IFCID RECORD NOT DESIRED SYSTEM';
  EXCDESC2='DESTINATION = '            ||
           ' SYSTEM'                   ||
           '   '                       ||
           'RECORD COUNT = '           ||
            PUT(DSYRCNDS,6.)
            ;
  LINK HIT;
  END;