Previous Topic: 10013 User IFCID Record Not Written

Next Topic: 10015 User IFCID Buffer Not Available

10014 User IFCID Record Not Desired


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

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

PURPOSE:   This exception warns that the DB2 request to write
an IFCID record failed because the record was not desired.

RATIONALE:

DEFINITION:  This exception is noted when the DSYRCNDU 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:  10014                  */
/* TITLE:  IFCID RECORD NOT DESIRED USER     */
/* FILE:  DB2DSY01                           */
/* ***************************************** */

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