PENSION_VW(SQL View) |
Index Back |
---|---|
EE Current Retirement BenefitsRTRMNT_VW is a select-only view used to display current retirement plan elections (plan type '7X') for US employees. This view accesses fields from the PS_RTRMNT_PLAN table, and is used by the US version of the Benefits Summary 2 panel. |
SELECT A.EMPLID ,A.EMPL_RCD ,A.PLAN_TYPE ,A.EFFDT ,A.DEDUCTION_END_DT ,A.COVERAGE_ELECT ,A.BENEFIT_PLAN ,A.VOLUNTARY_AMT ,A.VOLUNTARY_PCT FROM PS_PENSION_PLAN A WHERE A.EFFDT = ( SELECT MAX(B.EFFDT) FROM PS_PENSION_PLAN B WHERE B.EMPLID = A.EMPLID AND B.EMPL_RCD = A.EMPL_RCD AND B.PLAN_TYPE = A.PLAN_TYPE 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 | EMPL_RCD | Number(3,0) | SMALLINT NOT NULL |
Empl Record
Prompt Table: PER_ORG_ASGN_VW |
3 | PLAN_TYPE | Character(2) | VARCHAR2(2) NOT NULL | Identifies a category of benefit plan, such as Medical, Dental, and Life (Insurance). A set of plan type codes, as well as rules for creating new codes, is provided by PeopleSoft. Plan Type codes determine how the system processes and defines eligibility for the various benefit plans. |
4 | DEDUCTION_BEGIN_DT | Date(10) | DATE | Deduction Begin Date |
5 | DEDUCTION_END_DT | Date(10) | DATE | Deduction End Date |
6 | COVERAGE_ELECT | Character(1) | VARCHAR2(1) NOT NULL |
Coverage Election
E=Elect T=Terminate W=Waive |
7 | BENEFIT_PLAN | Character(6) | VARCHAR2(6) NOT NULL |
Benefit Plan
Prompt Table: BEN_PROG_BENPLN |
8 | VOLUNTARY_AMT | Number(11,2) | DECIMAL(10,2) NOT NULL | Voluntary Contribution Amount |
9 | VOLUNTARY_PCT | Number(7,3) | DECIMAL(6,3) NOT NULL | Voluntary Contrib Pct |