4. EXCEPTIONS › 4.3 Detailed Exception Descriptions › 00207: Hourly TSO Availability Objective Missed
00207: Hourly TSO Availability Objective Missed
FILE TSO System Activity File
SAS FILE NAME DAYS.TSOTSO01
SOURCE LOCATION sharedprefix.MICS.SOURCE(DYTSOEXC)
SEVERITY Critical (SEVERITY='C')
MANAGEMENT AREA Availability (MGMTAREA='AVAILABILITY')
PURPOSE Identifies the hours during which TSO was not
available.
RATIONALE An installation can monitor the times when TSO
was not available to ensure that users are
receiving adequate availability.
DEFINITION This exception is detected when the total TSO
available time is less than one hour.
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:
************************************************************;
*
** 00207
** HOURLY TSO AVAILABILITY OBJECTIVE MISSED
*;
IF TSOUPTM < uptime
THEN DO;
EXCCODE='00207'; SEVERITY='C'; MGMTAREA='AVAILABILITY';
EXCDESC1='HOURLY TSO AVAILABILITY OBJECTIVE MISSED';
EXCDESC2='AVAILABILITY (HH:MM:SS)=' || PUT(TSOUPTM,TIME.);
LINK HIT;
END;
THRESHOLD Modify the value of uptime, according to the
MODIFICATION following conventions:
uptime The minimum amount of time during the hour that
TSO was available is specified. A threshold of
57 minutes of uptime would appear as:
TSOUPTM < HMS(0,57,00)