HR_LOCDET_DL_VW

(SQL View)
Index Back

Location Source Department Vw

This view searches for the Location code on the DEPT_TBL when determining the employee address to use for Market Pay Geography purposes

SELECT D.SETID , D.EFFDT , D.DEPTID , L.LOCATION , L.COUNTRY , L.STATE , L.CITY FROM PS_DEPT_TBL D , PS_LOCATION_TBL L WHERE D.LOCATION = L.LOCATION AND D.SETID = L.SETID AND D.EFFDT = L.EFFDT

# PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
1 SETID Character(5) VARCHAR2(5) NOT NULL SetID
2 EFFDT Date(10) DATE Effective Date
3 DEPTID Character(10) VARCHAR2(10) NOT NULL Department
4 LOCATION Character(10) VARCHAR2(10) NOT NULL Location Code
5 COUNTRY Character(3) VARCHAR2(3) NOT NULL Country

Prompt Table: COUNTRY_TBL

6 STATE Character(6) VARCHAR2(6) NOT NULL State

Prompt Table: STATE_TBL

7 CITY Character(30) VARCHAR2(30) NOT NULL City