Search Results pay_element_entries_f
Overview
The PAY_ELEMENT_ENTRIES_F table is a core data object within the Oracle E-Business Suite Payroll module (PAY). It functions as the master repository for all recurring and non-recurring element entries linked to employee assignments. An element entry represents the specific instance of a compensation or deduction element, such as a salary, bonus, or tax withholding, assigned to an employee. This table is date-tracked, as indicated by the "_F" suffix and the EFFECTIVE_START_DATE and EFFECTIVE_END_DATE columns, enabling the maintenance of a complete history of entry changes over time. Its primary role is to store the definitive list of active and historical earnings and deductions that are processed during payroll calculations, making it fundamental to the payroll engine's operation.
Key Information Stored
The table's structure is designed to manage the lifecycle and context of each element entry. The primary key is a composite of ELEMENT_ENTRY_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE, ensuring unique identification of each entry version. The ELEMENT_ENTRY_ID itself uniquely identifies the entry across all its date-effective versions. Critical foreign key columns establish essential relationships: the ASSIGNMENT_ID links the entry to a specific employee assignment in PER_ALL_ASSIGNMENTS_F, and the ELEMENT_LINK_ID connects it to the specific element and its eligibility rules defined in PAY_ELEMENT_LINKS_F. Other significant columns include the ENTRY_TYPE (e.g., 'E' for standard entry), the COST_ALLOCATION_KEYFLEX_ID for assigning costs, and the UPDATING_ACTION_ID, which tracks the payroll run or process that last modified the entry.
Common Use Cases and Queries
This table is central to payroll reporting, auditing, and data validation. Common use cases include generating a report of all element entries for an employee to verify compensation setup, auditing changes to specific entries over time, and identifying entries with certain characteristics (e.g., all entries of a particular element type) for mass updates or corrections. A typical query to retrieve current active entries for an assignment would join to PER_ALL_ASSIGNMENTS_F and PAY_ELEMENT_LINKS_F, filtering on SYSDATE between the effective dates.
SELECT pee.element_entry_id,
pee.assignment_id,
pel.element_type_id,
pee.effective_start_date,
pee.effective_end_date
FROM pay_element_entries_f pee,
pay_element_links_f pel
WHERE pee.assignment_id = :p_assignment_id
AND SYSDATE BETWEEN pee.effective_start_date AND pee.effective_end_date
AND pee.element_link_id = pel.element_link_id
AND SYSDATE BETWEEN pel.effective_start_date AND pel.effective_end_date;
Related Objects
PAY_ELEMENT_ENTRIES_F has integral relationships with several other key payroll tables, as indicated by its foreign key constraints. It is a primary child table of PAY_ASSIGNMENT_ACTIONS via the UPDATING_ACTION_ID column, linking each entry modification to a specific payroll calculation action. It also references PAY_COST_ALLOCATION_KEYFLEX through COST_ALLOCATION_KEYFLEX_ID for accounting cost distribution. Crucially, it is joined to PAY_ELEMENT_LINKS_F (on ELEMENT_LINK_ID) to retrieve the element type and rules, and to PER_ALL_ASSIGNMENTS_F (on ASSIGNMENT_ID) to get employee and assignment details. For processing, it feeds into tables like PAY_RUN_RESULTS which store the calculated values for each entry per payroll run.
-
Table: PAY_ELEMENT_ENTRIES_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_ENTRIES_F, object_name:PAY_ELEMENT_ENTRIES_F, status:VALID, product: PAY - Payroll , description: Element entry list for each assignment. , implementation_dba_data: HR.PAY_ELEMENT_ENTRIES_F ,
-
Table: PAY_ELEMENT_ENTRIES_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_ENTRIES_F, object_name:PAY_ELEMENT_ENTRIES_F, status:VALID, product: PAY - Payroll , description: Element entry list for each assignment. , implementation_dba_data: HR.PAY_ELEMENT_ENTRIES_F ,
-
APPS.PAY_ELEMENT_ENTRY_API dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_US_TAX_API dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_JP_DATA_MIGRATION_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_CN_SOE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PQH_GSP_UTILITY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PER_SSHR_CHANGE_PAY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.GHR_CORR_CANC_SF52 dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_JP_ISDF_ARCHIVE_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PQP_US_FF_FUNCTIONS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_HK_AVG_PAY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PQP_RATES_HISTORY_CALC dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_US_MAGTAPE_REPORTING dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_JP_DEF_SS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_MX_SSAFFL_SALARY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_SE_ALECTA dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_SE_RULES dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PER_ES_COMP_CERT_ARCHIVE_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_PAY_INTERFACE_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_ZA_PAYSLIP_ARCHIVE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.GHR_HISTORY_CONV_RG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_PAYMENT_XML_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PQH_RBC_RATE_RETRIEVAL dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_DK_TC_DP_UPLOAD dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_IE_BAL_UPLOAD dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_HK_SOE_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PER_CANCEL_HIRE_OR_APL_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_H2PI_PERSON_UPLOAD dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_UPLOAD_PROPOSAL_API dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PQP_GB_PSI_STH_HISTORY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_AU_PAYE_FF dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_LIV_BUS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.BEN_PERSON_DELETE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_US_DEDN_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_NO_UTILITY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_CA_EOY_ARCHIVE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_US_NACHA_TAPE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.GHR_FORMULA_FUNCTIONS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_COST dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.SSP_SSP_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_NO_ARCHIVE_RSEA dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_KR_ENTRIES_PKG dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_SG_SOE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_ITERATE dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_MAINTAIN_PROPOSAL_API dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PAY_SG_DEDUCTIONS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.HR_NZ_HOLIDAYS dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.PER_SALADMIN_UTILITY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1
-
APPS.BEN_ELEMENT_ENTRY dependencies on PAY_ELEMENT_ENTRIES_F
12.1.1