POTENTIAL_VW

(SQL View)
Index Back

Potential Ratings by EffDt

POTENTIAL_VW is a view which selects the latest potential rating for each career plan from the CAREER_POTENTIAL record. This is displayed for each incumbent of a key position in the Succession Planning application.

SELECT A.EMPLID ,A.POTENTIAL ,A.REVIEW_DT FROM PS_CAREER_POTENTL A WHERE A.REVIEW_DT = ( SELECT MAX(B.REVIEW_DT) FROM PS_CAREER_POTENTL B WHERE B.EMPLID = A.EMPLID AND B.EFFDT <= %CurrentDateIn)

  • Parent record: CAREERPLAN
  • # PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
    1 EMPLID Character(11) VARCHAR2(11) NOT NULL Employee ID

    Prompt Table: PERSON

    2 POTENTIAL Character(1) VARCHAR2(1) NOT NULL Career Potential
    H=High Potential Candidate
    L=Lateral Transfer
    O=Officer Potential
    P=Promotable
    W=Currently Well Placed
    3 REVIEW_DT Date(10) DATE NOT NULL Review Date