Previous Topic: 03101: Degraded Printer Performance

Next Topic: 5. FILES

03102: Lines Printed Exceeded Limit

FILE:             Batch User Spool Activity
SAS FILE NAME:    DETAIL.BATSPL01
SOURCE LOCATION:  prefix.MICS.USER.SOURCE(DYSMFEXC)

SEVERITY:  Warning             (SEVERITY='W')
MANAGEMENT AREA:  Standards      (MGMTAREA='STANDARDS')

PURPOSE:  Identifies print volumes exceeding installation
standards.

RATIONALE:  You should investigate occurrences of large print
volumes to determine whether the output is actually needed
and useful.  You should consider eliminating printing that is
not needed, using microfiche where feasible, or increasing
the number of lines per inch to reduce paper usage.

DEFINITION:  This exception is detected when a print volume
exceeds the installation-defined standard.

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.

*
** 03102
** LINES PRINTED EXCEEDED LIMIT
*;
IF SPLNLR > lines-printed
 THEN DO;
  MGMTAREA='STANDARDS'; EXCCODE='03102'; SEVERITY='W';
  EXCDESC1=
     'LINES PRINTED EXCEEDED LIMIT';
  EXCDESC2='LINES PRINTED=' || PUT(SPLNLR,7.);
  LINK HIT;
END;

THRESHOLD MODIFICATION:  Modify the value for lines-printed
as follows:

    lines-printed  -  The numeric value of lines printed.  A
       lines-printed value of 50000 appears as:

          SPLNLR > 50000