Search Results pay_element_types_x
Overview
PAY_ELEMENT_TYPES_X is a date-effective (X) view owned by the APPS schema within the Payroll (PAY) product module of Oracle E-Business Suite. It exposes element type definitions — the reusable building blocks that determine how an element processes, what inputs and outputs it accepts, which currency it uses, and how entries are generated during a payroll run. Because it is a "date-effective" view, it presents rows as of the effective date range defined by EFFECTIVE_START_DATE and EFFECTIVE_END_DATE, allowing the same logical element type to have multiple historically versioned definitions.
The view is a critical data source for payroll reporting, integrations, interfaces, and extensions that need to read element type metadata (rather than the current-only, singular view). It is widely referenced in payroll extracts, element migration scripts, and statutory reporting where the historical effective definition of an element must be resolved.
Underlying Base Objects
The ETRM 12.2.2 metadata documents that PAY_ELEMENT_TYPES_X is defined over two base objects through synonyms:
- PAY_ELEMENT_TYPES_F (SYNONYM) — the date-effective (F) table holding element type attribute rows including effective dates, flags, currencies, and DFF/legislation attributes.
- PAY_ELEMENT_TYPES_F_TL (SYNONYM) — the translation (TL) table providing language-specific element name, reporting name, and description.
The view text joins these on ELEMENT_TYPE_ID and effective date boundaries, exposing the denormalized result (PET.* plus PETTL.ELEMENT_NAME, PETTL.DESCRIPTION, PETTL.REPORTING_NAME). The relationship is therefore a straightforward one-to-many correspondence between the effective definition rows and their translated names, filtered so that callers see a coherent, date-effective view akin to Oracle's standard _X view pattern (comparable to HR/Payroll _F/_X pairs).
Key Columns
- ELEMENT_TYPE_ID — primary key identifying the element type.
- EFFECTIVE_START_DATE / EFFECTIVE_END_DATE — the date-effective boundaries governing which definition is active.
- BUSINESS_GROUP_ID, LEGISLATION_CODE, LEGISLATION_SUBGROUP — organizational and legal context.
- CLASSIFICATION_ID, BENEFIT_CLASSIFICATION_ID, ELEMENT_INFORMATION_CATEGORY / ELEMENT_INFORMATION1–20 — classification and legislatively defined descriptive flexfield attributes.
- INPUT_CURRENCY_CODE, OUTPUT_CURRENCY_CODE, FORMULA_ID — processing currency and calculation formula linkage.
- ADDITIONAL_ENTRY_ALLOWED_FLAG, ADJUSTMENT_ONLY_FLAG, CLOSED_FOR_ENTRY_FLAG, INDIRECT_ONLY_FLAG, MULTIPLE_ENTRIES_ALLOWED_FLAG, MULTIPLY_VALUE_FLAG, PROCESS_IN_RUN_FLAG, STANDARD_LINK_FLAG, THIRD_PARTY_PAY_ONLY_FLAG — behavioral flags controlling how entries are created and processed.
- PROCESSING_PRIORITY, PROCESSING_TYPE, POST_TERMINATION_RULE, QUALIFYING_AGE, QUALIFYING_LENGTH_OF_SERVICE, QUALIFYING_UNITS — processing order and eligibility rules.
- ELEMENT_NAME, DESCRIPTION, REPORTING_NAME — translated (TL) descriptive fields.
- ATTRIBUTE_CATEGORY, ATTRIBUTE1–20 — developer descriptive flexfield.
- Audit columns — LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE.
- ELEMENT — the element's identifying short name/context value.
Common Use Cases and Queries
Typical scenarios include resolving currently active element types for a business group, driving payroll interfaces, generating element catalogs, and validating migration scripts.
A query returning currently effective element types for a business group:
SELECT element_type_id, element_name, classification_id, input_currency_code FROM apps.pay_element_types_x WHERE business_group_id = :p_bg AND SYSDATE BETWEEN effective_start_date AND effective_end_date;
A query listing element behavior flags for reconciliation to a prior effective date:
SELECT element_type_id, element_name, process_in_run_flag, multiply_value_flag FROM apps.pay_element_types_x WHERE legislation_code = :p_leg AND :p_eff_date BETWEEN effective_start_date AND effective_end_date ORDER BY processing_priority;
A query joining to a payroll run or element entries to enrich reporting with translated names:
SELECT x.element_name, x.reporting_name, x.legislation_subgroup FROM apps.pay_element_types_x x, apps.pay_element_entries_f e WHERE e.element_type_id = x.element_type_id AND SYSDATE BETWEEN x.effective_start_date AND x.effective_end_date;
Because the view is date-effective, all queries should constrain on effective dates to avoid returning multiple historical versions of the same ELEMENT_TYPE_ID.
-
View: PAY_ELEMENT_TYPES_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_TYPES_X, object_name:PAY_ELEMENT_TYPES_X, status:VALID, product: PAY - Payroll , description: Date-effective view. , implementation_dba_data: APPS.PAY_ELEMENT_TYPES_X ,
-
View: PAY_ELEMENT_TYPES_X
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_TYPES_X, object_name:PAY_ELEMENT_TYPES_X, status:VALID, product: PAY - Payroll , description: Date-effective view. , implementation_dba_data: APPS.PAY_ELEMENT_TYPES_X ,
-
APPS.PAY_PAYGBRRS_XMLP_PKG SQL Statements
12.2.2
-
SYNONYM: PUBLIC.PAY_ELEMENT_TYPES_X
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_ELEMENT_TYPES_X, status:VALID,
-
VIEW: APPS.HRFV_ACCRUAL_VALUES
12.1.1
-
APPS.PAY_PAYGBRRS_XMLP_PKG SQL Statements
12.1.1
-
View: HRFV_ACCRUAL_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
VIEW: APPS.HRFV_ACCRUAL_VALUES
12.2.2
-
View: HRFV_ACCRUAL_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_VALUES ,
-
PACKAGE BODY: APPS.PAY_PAYGBRRS_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_PAYGBRRS_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.PAY_PAYGBRRS_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_PAYGBRRS_XMLP_PKG, status:VALID,
-
VIEW: APPS.HRFV_CURRENT_SALARIES
12.2.2
-
VIEW: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.1.1
-
VIEW: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.2.2
-
PACKAGE BODY: APPS.PAY_PAYGBRRS_XMLP_PKG
12.2.2
-
VIEW: APPS.HRFV_CURRENT_SALARIES
12.1.1
-
VIEW: APPS.HRFV_ACCRUAL_VALUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID,
-
VIEW: APPS.HRFV_ACCRUAL_VALUES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_VALUES, object_name:HRFV_ACCRUAL_VALUES, status:VALID,
-
VIEW: APPS.HRFV_BENEFIT_ENROLLMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_BENEFIT_ENROLLMENTS, object_name:HRFV_BENEFIT_ENROLLMENTS, status:VALID,
-
PACKAGE BODY: APPS.PAY_PAYGBRRS_XMLP_PKG
12.1.1
-
VIEW: APPS.HRFV_BENEFIT_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_BENEFIT_ENROLLMENTS, object_name:HRFV_BENEFIT_ENROLLMENTS, status:VALID,
-
VIEW: APPS.HRFV_BENEFIT_ENROLLMENTS
12.2.2
-
VIEW: APPS.HR_ADP_ELE_COSTING_V
12.1.1
-
VIEW: APPS.HR_ADP_ELE_COSTING_V
12.2.2
-
VIEW: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_PLAN_ENROLLMENTS, object_name:HRFV_ACCRUAL_PLAN_ENROLLMENTS, status:VALID,
-
VIEW: APPS.HRFV_CURRENT_SALARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID,
-
View: HRFV_CURRENT_SALARIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CURRENT_SALARIES ,
-
VIEW: APPS.HRFV_CURRENT_SALARIES
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID,
-
View: HRFV_CURRENT_SALARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_CURRENT_SALARIES, object_name:HRFV_CURRENT_SALARIES, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_CURRENT_SALARIES ,
-
VIEW: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_PLAN_ENROLLMENTS, object_name:HRFV_ACCRUAL_PLAN_ENROLLMENTS, status:VALID,
-
VIEW: APPS.PAY_ELEMENT_TYPES_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_TYPES_X, object_name:PAY_ELEMENT_TYPES_X, status:VALID,
-
VIEW: APPS.HRFV_BENEFIT_ENROLLMENTS
12.1.1
-
View: HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_PLAN_ENROLLMENTS, object_name:HRFV_ACCRUAL_PLAN_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS ,
-
VIEW: APPS.HR_CERIDIAN_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID,
-
View: HRFV_ACCRUAL_PLAN_ENROLLMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_ACCRUAL_PLAN_ENROLLMENTS, object_name:HRFV_ACCRUAL_PLAN_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_ACCRUAL_PLAN_ENROLLMENTS ,
-
View: HR_ADP_ELE_COSTING_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ELE_COSTING_V, object_name:HR_ADP_ELE_COSTING_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ELE_COSTING_V ,
-
View: HR_ADP_ELE_COSTING_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_ADP_ELE_COSTING_V, object_name:HR_ADP_ELE_COSTING_V, status:VALID, product: PER - Human Resources , description: ADP payroll interface view , implementation_dba_data: APPS.HR_ADP_ELE_COSTING_V ,
-
VIEW: APPS.HR_CERIDIAN_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID,
-
View: HRFV_BENEFIT_ENROLLMENTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_BENEFIT_ENROLLMENTS, object_name:HRFV_BENEFIT_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_BENEFIT_ENROLLMENTS ,
-
VIEW: APPS.HR_CERIDIAN_ASSIGNMENT_V
12.2.2
-
VIEW: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID,
-
VIEW: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V
12.2.2
-
VIEW: APPS.HR_CERIDIAN_ASSIGNMENT_V
12.1.1
-
View: HRFV_BENEFIT_ENROLLMENTS
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HRFV_BENEFIT_ENROLLMENTS, object_name:HRFV_BENEFIT_ENROLLMENTS, status:VALID, product: PER - Human Resources , description: Business view template from which the flexfield view is generated. , implementation_dba_data: APPS.HRFV_BENEFIT_ENROLLMENTS ,
-
VIEW: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID,
-
VIEW: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V
12.1.1
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
View: HR_CERIDIAN_EMPLOYEE_ONLY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_EMPLOYEE_ONLY_V, object_name:HR_CERIDIAN_EMPLOYEE_ONLY_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_EMPLOYEE_ONLY_V ,
-
View: HR_CERIDIAN_ASSIGNMENT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_CERIDIAN_ASSIGNMENT_V, object_name:HR_CERIDIAN_ASSIGNMENT_V, status:VALID, product: PER - Human Resources , description: Ceridian Source 100 payroll interface view , implementation_dba_data: APPS.HR_CERIDIAN_ASSIGNMENT_V ,
-
APPS.PER_CEI_BUS SQL Statements
12.1.1