Search Results payfv_element_entries
Overview
The view APPS.PAYFV_ELEMENT_ENTRIES presents a denormalized, security-aware picture of payroll element entries captured against employee assignments within Oracle E-Business Suite Payroll (PAY). It consolidates data from element entry headers, element entry values, input values, element types and links, assignment and person records, and organization hierarchies, and it enriches the result with descriptive names resolved through the PAY_PAYFV_ELEMENT_ENTRIES_PKG package and standard Oracle lookup decoding. The view carries a VALID status in both the 12.1.1 and 12.2.2 releases and is owned by the APPS schema. Because it exposes meaningful, human-readable attributes — person name, element name, input value, entry value, and the assignment attributes (job, position, grade, location, pay basis, payroll) — it is intended for reporting and integration rather than for transactional maintenance. The "FV" prefix convention in Oracle Payroll indicates a "fast formula"/reporting-oriented view whose primary consumers are BI Publisher reports, custom SQL extracts, and downstream interfaces that need element entry detail without reconstructing the multi-table join themselves.
Underlying Base Objects
The view is defined over a wide join of Payroll and Human Resources core objects, all referenced through APPS synonyms except for the PER views. The Payroll objects are PAY_ELEMENT_ENTRIES_F (the element entry header), PAY_ELEMENT_ENTRY_VALUES_F (the per-input-value entry values), PAY_INPUT_VALUES_F and PAY_INPUT_VALUES_F_TL (input value definition and its translated name), PAY_ELEMENT_LINKS_F, PAY_ELEMENT_TYPES_F, and PAY_ELEMENT_TYPES_F_TL (element type and translated element name). The Human Resources objects are the PER_ASSIGNMENTS_F and PER_PEOPLE_F views and the HR_ALL_ORGANIZATION_UNITS_TL synonym, which is joined twice — once to resolve the assignment organization name and once to resolve the business group name. The view also references FND_USER twice to resolve the created-by and updated-by user names, and it depends on the PAY_PAYFV_ELEMENT_ENTRIES_PKG package to derive job, position, grade, location, pay basis, and payroll names. The HR_GENERAL, HR_PERSON_NAME, and HR_SECURITY packages are referenced as part of the descriptive and security logic.
Key Columns
- BUSINESS_GROUP_NAME, PERSON_NAME, ORDER_NAME, ORGANIZATION_NAME — organizational and person context for the entry.
- ELEMENT — the translated element name from
PAY_ELEMENT_TYPES_F_TL. - JOB_NAME, POSITION_NAME, GRADE_NAME, LOCATION_NAME, PAY_BASIS, PAYROLL_NAME — assignment attributes resolved through
PAY_PAYFV_ELEMENT_ENTRIES_PKG; each returns NULL when the corresponding assignment ID is NULL. - ENTRY_TYPE — the decoded lookup meaning for the entry type.
- INPUT_VALUE — the translated input value definition name drawn from
PAY_INPUT_VALUES_F_TL; this is the column most frequently targeted by users searching for "input_value". - UNIT_OF_MEASURE — the decoded units lookup for the input value's UOM.
- ENTRY_VALUE — the actual value entered for that input value (
EEV.SCREEN_ENTRY_VALUE). - EFFECTIVE_START_DATE, EFFECTIVE_END_DATE — date-tracked validity of the element entry.
- Identifier columns — ASSIGNMENT_ID, BUSINESS_GROUP_ID, PERSON_ID, ELEMENT_ENTRY_ID, ELEMENT_ENTRY_VALUE_ID, ELEMENT_LINK_ID, ELEMENT_TYPE_ID, ORGANIZATION_ID, JOB_ID, POSITION_ID, GRADE_ID, LOCATION_ID, PAY_BASIS_ID, PAYROLL_ID, and INPUT_VALUE_ID, supporting joins back to base tables.
- Audit columns — CREATION_DATE, CREATE_USR.USER_NAME, LAST_UPDATE_DATE, UPDATE_USR.USER_NAME.
Common Use Cases and Queries
The view is typically used to report element entry values per assignment without writing the full multi-table join. A common query retrieves entries for a person and element alongside the input value and entered amount:
- Element entry detail:
SELECT person_name, element, input_value, entry_value, effective_start_date, effective_end_date FROM apps.payfv_element_entries WHERE person_name = :p_person AND element = :p_element ORDER BY effective_start_date; - Input value lookup:
SELECT assignment_id, element, input_value, unit_of_measure, entry_value FROM apps.payfv_element_entries WHERE input_value = 'Amount'; - Assignment context report:
SELECT payroll_name, organization_name, job_name, grade_name, element, input_value, entry_value FROM apps.payfv_element_entries WHERE business_group_name = :p_bg;
Because the view is date-tracked through the underlying _F tables, queries should filter on effective dates where point-in-time results are required, and the ELEMENT_ENTRY_ID and ELEMENT_ENTRY_VALUE_ID columns should be used to trace results back to their source records.
-
View: PAYFV_ELEMENT_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYFV_ELEMENT_ENTRIES, object_name:PAYFV_ELEMENT_ENTRIES, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYFV_ELEMENT_ENTRIES ,
-
View: PAYFV_ELEMENT_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYFV_ELEMENT_ENTRIES, object_name:PAYFV_ELEMENT_ENTRIES, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAYFV_ELEMENT_ENTRIES ,
-
SYNONYM: PUBLIC.PAYFV_ELEMENT_ENTRIES
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAYFV_ELEMENT_ENTRIES, status:VALID,
-
PACKAGE: APPS.PAY_PAYFV_ELEMENT_ENTRIES_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:PAY_PAYFV_ELEMENT_ENTRIES_PKG, status:VALID,
-
VIEW: APPS.PAYFV_ELEMENT_ENTRIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYFV_ELEMENT_ENTRIES, object_name:PAYFV_ELEMENT_ENTRIES, status:VALID,
-
PACKAGE: APPS.PAY_PAYFV_ELEMENT_ENTRIES_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:PAY_PAYFV_ELEMENT_ENTRIES_PKG, status:VALID,
-
PACKAGE: APPS.PAY_PAYFV_ELEMENT_ENTRIES_PKG
12.1.1
-
PACKAGE: APPS.PAY_PAYFV_ELEMENT_ENTRIES_PKG
12.2.2
-
SYNONYM: APPS.PAY_INPUT_VALUES_F_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_INPUT_VALUES_F_TL, status:VALID,
-
VIEW: APPS.PAYFV_ELEMENT_ENTRIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAYFV_ELEMENT_ENTRIES, object_name:PAYFV_ELEMENT_ENTRIES, status:VALID,
-
SYNONYM: APPS.PAY_INPUT_VALUES_F_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_INPUT_VALUES_F_TL, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F_TL, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F_TL, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.PAY_ELEMENT_ENTRY_VALUES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_ENTRY_VALUES_F, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.HR_ALL_ORGANIZATION_UNITS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_ALL_ORGANIZATION_UNITS_TL, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_LINKS_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_LINKS_F, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_ENTRY_VALUES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_ENTRY_VALUES_F, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_LINKS_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_LINKS_F, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_ENTRIES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_ENTRIES_F, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_ENTRIES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_ENTRIES_F, status:VALID,
-
SYNONYM: APPS.PAY_INPUT_VALUES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_INPUT_VALUES_F, status:VALID,
-
SYNONYM: APPS.PAY_INPUT_VALUES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_INPUT_VALUES_F, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F, status:VALID,
-
SYNONYM: APPS.PAY_ELEMENT_TYPES_F
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_F, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_F, object_name:PER_ASSIGNMENTS_F, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_F, object_name:PER_ASSIGNMENTS_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
VIEW: APPS.PER_PEOPLE_F
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_F, object_name:PER_PEOPLE_F, status:VALID,
-
SYNONYM: APPS.FND_USER
12.2.2
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
SYNONYM: APPS.FND_USER
12.1.1
owner:APPS, object_type:SYNONYM, object_name:FND_USER, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PAY Tables and Views
12.2.2
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PAY Tables and Views
12.1.1
description: Temporary table used to hold invalid location addresses. ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
eTRM - PAY Tables and Views
12.2.2
description: Temporary table used to hold invalid location addresses. ,