RC_SLAYELOWC_VW

(SQL View)
Index Back

Yellow SLA

Number of cases in a yellow SLA status by customer.

SELECT A.BUSINESS_UNIT , A.BO_ID_CUST , B.BO_NAME , COUNT(DISTINCT A.CASE_ID) , 'Yellow' FROM PS_RC_CASE A , PS_BO_NAME B , PS_RC_STATUS_TBL C , PS_SET_CNTRL_TBL D WHERE A.RC_YELLOW_DTTM < %CurrentDateTimeIn AND A.RC_RED_DTTM > %CurrentDateTimeIn AND D.SETCNTRLVALUE = A.BUSINESS_UNIT AND C.RC_STATUS = A.RC_STATUS AND C.SETID = ( SELECT D.SETID FROM PS_SET_CNTRL_REC D WHERE D.SETCNTRLVALUE = A.BUSINESS_UNIT AND D.RECNAME = 'RC_STATUS_TBL') AND C.STATUS_CATEGORY = 'O' AND A.BO_ID_CUST <> 0 AND A.BO_ID_CUST = B.BO_ID GROUP BY A.BUSINESS_UNIT, A.BO_ID_CUST, B.BO_NAME

# PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
1 BUSINESS_UNIT Character(5) VARCHAR2(5) NOT NULL Business Unit
2 BO_ID_CUST Number(31,0) DECIMAL(31) NOT NULL This field stores the Business Object ID for the customer.
3 BO_NAME Character(50) VARCHAR2(50) NOT NULL Name Description of Business Object
4 RC_CASE_COUNT Number(7,0) INTEGER NOT NULL Case Count
5 SLA_RESTORE Character(4) VARCHAR2(4) NOT NULL Field used for SLA charts. Shows whether SLA commitment was met or missed for a customer.
MET=Met
MISS=Missed