HR_CP_SHRT_GOAL

(SQL View)
Index Back

Short-Term Career/Perfrm Goals

HR_CP_SHRT_GOAL is a view based upon SHRT_TERM_GOALS. It is part of Career Planning Self Service product for an employee. Use it to identify an employee's short-term career goals and estimated and actual completion dates.

SELECT A.EMPLID , A.EFFDT ,A. EST_COMPLETION_DT , A.CAREER_GOAL , A.ACT_COMPLETION_DT FROM PS_SHRT_TERM_GOALS A WHERE A.EFFDT = ( SELECT MAX(B.EFFDT) FROM PS_SHRT_TERM_GOALS B WHERE B.EMPLID = A.EMPLID AND B.EFFDT <= %CurrentDateIn)

# PeopleSoft Field Name PeopleSoft Field Type Database Column Type Description
1 EMPLID Character(11) VARCHAR2(11) NOT NULL Employee ID

Prompt Table: PERSON

2 EFFDT Date(10) DATE NOT NULL Effective Date

Default Value: %date

3 EST_COMPLETION_DT Date(10) DATE NOT NULL Estimated Completion Date
4 CAREER_GOAL Character(120) VARCHAR2(120) NOT NULL Career Goal
5 ACT_COMPLETION_DT Date(10) DATE Actual Completion Date