SF_SRVC_VW(SQL View) |
Index Back |
---|---|
Stud Rec Srvc Impact DropsStudent Records view joing the SRVC_IND_DATA and SERVICE_IMPACT tables. |
select a.emplid ,a.institution ,a.srvc_ind_cd ,b.service_impact ,a.srvc_ind_act_term ,a.srvc_ind_active_dt ,a.pos_srvc_indicator from PS_SRVC_IND_DATA a, ps_service_impact b where a.institution = b.institution and a.srvc_ind_cd = b.srvc_ind_cd and b.effdt = (select max(b1.effdt) from ps_service_impact b1 where b1.institution = b.institution and b1.srvc_ind_cd = b.srvc_ind_cd and b1.effdt <= %currentdatein and b1.service_impact = b.service_impact) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL | Employee ID |
2 | INSTITUTION | Character(5) | VARCHAR2(5) NOT NULL |
Academic Institution
Prompt Table: INSTITUTION_TBL |
3 | SRVC_IND_CD | Character(3) | VARCHAR2(3) NOT NULL | Service Indicator Cd |
4 | SERVICE_IMPACT | Character(5) | VARCHAR2(5) NOT NULL | Service Impact |
5 | SRVC_IND_ACT_TERM | Character(4) | VARCHAR2(4) NOT NULL | Service Indicator Start Term |
6 | SRVC_IND_ACTIVE_DT | Date(10) | DATE | Service Indicator Start Date |
7 | POS_SRVC_INDICATOR | Character(1) | VARCHAR2(1) NOT NULL | Positive Service Indicator |