Search Results pay_element_entry_values_f
Overview
The PAY_ELEMENT_ENTRY_VALUES_F table is a core data object within the Oracle E-Business Suite Payroll (PAY) module. It functions as the primary repository for the actual input values associated with specific element entries. In Oracle Payroll, an element entry defines an instance of a compensation or deduction element (e.g., Salary, Bonus, Tax Withholding) for an employee. This table stores the concrete values entered for each input value defined by the element's classification, such as hours worked, a monetary amount, or a percentage rate. Its role is critical for payroll calculations, as the engine references these stored values to compute earnings and deductions. The '_F' suffix denotes that it is a date-effective table, meaning it maintains a history of changes to these input values over time, which is essential for accurate retroactive processing and auditing.
Key Information Stored
The table's structure is designed to link input data to specific element entries while maintaining historical integrity. The primary key, PAY_ELEMENT_ENTRY_VALUES_F_PK, consists of ELEMENT_ENTRY_VALUE_ID, EFFECTIVE_START_DATE, and EFFECTIVE_END_DATE. This composite key uniquely identifies each historical row of an input value. Key columns include ELEMENT_ENTRY_ID, which foreign keys to PAY_ELEMENT_ENTRIES_F to associate the value with a specific element entry. The INPUT_VALUE_ID links to PAY_INPUT_VALUES_F, identifying which element input (e.g., "Hours", "Amount") the row pertains to. The actual data value is stored in the SCREEN_ENTRY_VALUE column. The EFFECTIVE_START_DATE and EFFECTIVE_END_DATE columns define the period for which that specific input value is valid, enabling the system to manage changes.
Common Use Cases and Queries
A primary use case is auditing and troubleshooting payroll calculation results by examining the precise inputs used. For example, to retrieve all current input values for a specific element entry, a common query pattern is:
- SELECT pivv.name, peev.screen_entry_value
- FROM pay_element_entry_values_f peev,
- pay_input_values_f pivv
- WHERE peev.element_entry_id = :p_element_entry_id
- AND SYSDATE BETWEEN peev.effective_start_date AND peev.effective_end_date
- AND peev.input_value_id = pivv.input_value_id
- AND SYSDATE BETWEEN pivv.effective_start_date AND pivv.effective_end_date;
This table is also central for generating custom reports on compensation data, validating batch entry of element entries, and supporting data migration or integration efforts where payroll input data needs to be extracted or validated.
Related Objects
PAY_ELEMENT_ENTRY_VALUES_F has integral relationships with several other key Payroll tables. It is a direct child of PAY_ELEMENT_ENTRIES_F, which defines the overarching element entry. It references PAY_INPUT_VALUES_F to understand the context and validation rules for the stored SCREEN_ENTRY_VALUE. The table is heavily referenced by the payroll calculation engine itself and by key summary and reporting views. For programmatic operations, the PAY_ELEMENT_ENTRY_API package is the supported public interface for creating, updating, and deleting data that ultimately resides in this table, ensuring business rule validation and maintaining data integrity.
-
Table: PAY_ELEMENT_ENTRY_VALUES_F
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_ENTRY_VALUES_F, object_name:PAY_ELEMENT_ENTRY_VALUES_F, status:VALID, product: PAY - Payroll , description: Actual input values for specific element entries. , implementation_dba_data: HR.PAY_ELEMENT_ENTRY_VALUES_F ,
-
Table: PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_ENTRY_VALUES_F, object_name:PAY_ELEMENT_ENTRY_VALUES_F, status:VALID, product: PAY - Payroll , description: Actual input values for specific element entries. , implementation_dba_data: HR.PAY_ELEMENT_ENTRY_VALUES_F ,
-
APPS.PAY_YEAR_END_EXTRACT dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_GB_EOY_ARCHIVE dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.GHR_ELEMENT_API dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_DK_ARCHIVE_EIN dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_AC_ACTION_ARCH dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PQP_VAL_BUS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HR_RUNGEN dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_CA_EMP_TAX_INF dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_IN_24Q_ARCHIVE dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_US_EMPLOYEE_BALANCES dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.GHR_CPDF_STATRPT dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_GB_WORKING_TAX_CREDIT dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HR_ELEMENT_LINKS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_IN_TAX_DECLARATION dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_IN_TERM_RPRT_GEN_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PY_ROLLBACK_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_P45_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_ADVANCE_PAY_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PQP_GB_PSI_FUNCTIONS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PER_ZA_UTILITY_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PQP_GB_PSI_WPS_HISTORY dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_IN_INDIA_BENEFITS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.BEN_DM_DELETE dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.GHR_PER_SUM dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HRWSECI dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PQP_NL_PENSION_EXTRACTS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_AU_PAYMENT_SUMMARY dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HR_GBNIDIR dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HR_LOC_ABSENCE dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_MX_TAX_FUNCTIONS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.BEN_EFC_ADJUSTMENTS1 dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.BEN_UPDATE_PRTT_RT_VAL dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PY_NO_TAX_CARD dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.SSP_ERN_BUS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_US_RULES dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_US_MAGTAPE_REPORTING dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_IE_PAYE_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_CA_DEDN_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_QPQ_API dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_SE_ALECTA dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PQP_GB_CPX_EXTRACT_FUNCTIONS dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_ELEMENT_ENTRY_API dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_GB_STUDENT_LOANS_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_FI_ARCHIVE_PYSA dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_FI_TAX_CARD_PKG dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.HREMPTER dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_KW_PIFSS_REPORT dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
-
APPS.PAY_SG_SOE dependencies on PAY_ELEMENT_ENTRY_VALUES_F
12.1.1