JOB_POSN_CURR(SQL View) |
Index Back |
---|---|
Current Emplid and PositionPOSN_INCUMBENT is a view which retrieves the emplid of the current incumbent by position number. It is used in the Position Management application when the incumbent is brought into panels via related-display to Position_Nbr. |
Select A.Position_Nbr ,A.Emplid FROM PS_JOB A WHERE A.Empl_Status in('A','P','L','S') AND A.Effdt = (Select MAX(C.EffDt) FROM PS_JOB C WHERE C.Emplid = A.Emplid AND C.EMPL_RCD = A.EMPL_RCD AND C.EffDt <= %CURRENTDATEIN) AND A.EffSeq = (Select MAX(D.EffSeq) FROM PS_JOB D WHERE D.Emplid = A.Emplid AND D.EMPL_RCD = A.EMPL_RCD AND D.EffDt = A.EffDt) |
# | PeopleSoft Field Name | PeopleSoft Field Type | Database Column Type | Description |
---|---|---|---|---|
1 | Character(8) | VARCHAR2(8) NOT NULL | Position Number | |
2 | EMPLID | Character(11) | VARCHAR2(11) NOT NULL |
Employee ID
Prompt Table: PERSONAL_DATA |