4. EXCEPTIONS › 4.3 Detailed Exception Descriptions › 00205: Hourly TSO Long Service Objective Missed
00205: Hourly TSO Long Service Objective Missed
FILE TSO System Activity File
SAS FILE NAME DAYS.TSOTSO01
SOURCE LOCATION sharedprefix.MICS.SOURCE(DYTSOEXC)
SEVERITY Warning (SEVERITY='W')
MANAGEMENT AREA Service (MGMTAREA='SERVICE')
PURPOSE Identifies the hours when TSO users' response
time did not meet the installation defined long
response service objective.
RATIONALE An installation can set a service objective for
all users as a percent of all long responses
which will be completed within a certain time.
Setting the service objective this way
recognizes the importance of consistency of
response, which is not reflected in an average.
DEFINITION This exception is detected when average user
long response for an hour falls below the
installation objective.
EXCEPTION The SAS statements identifying the exception
STATEMENTS situation and describing the condition are
stored in the source member named in SOURCE
LOCATION and are described below:
************************************************************;
*
** 00205
** HOURLY TSO LONG SERVICE OBJECTIVE MISSED
*;
SECONDS=seconds;
OBJECT=percent;
EVENTS=number-of-responses;
_PCTRESP
PERCENT=LPCT;
IF (PERCENT + .5) < OBJECT
AND TSOLRESC > EVENTS
THEN DO;
EXCCODE='00205'; SEVERITY='W'; MGMTAREA='SERVICE';
EXCDESC1='HOURLY TSO LONG SERVICE OBJECTIVE MISSED';
EXCDESC2='OBJECTIVE ' || PUT(OBJECT,3.) || '% WAS ' ||
PUT (PERCENT,3.) || '% WITHIN ' || PUT (SECONDS,3.)
|| ' SECONDS';
LINK HIT;
END;
THRESHOLD Modify the values of seconds and percent to
MODIFICATION define the installation service objective (the
percent of responses within a certain number of
seconds), according to the following
conventions:
seconds The number of seconds in the service
objective is specified. An objective of five
seconds would appear as:
SECONDS = 5
percent The target percentage that is associated with
the seconds given above (e.g., 90% within
five seconds) would appear as:
OBJECT = 90
number-of-responses The minimum number of long response
events for which this exception is
to be considered would appear as:
EVENTS = 20