Search Results pay_element_sets_tl
Overview
PAY_ELEMENT_SETS_TL is the translation table for element sets within the Oracle Payroll (PAY) module. An element set is a named grouping of payroll elements — such as earnings, deductions, or balance-affecting items — that is used to drive eligibility for a payroll run, a balance calculation, a report, or a legislative process. Because element sets carry user-facing descriptive text, Oracle E-Business Suite stores that text in a dedicated translation (TL) table so the same element set definition can be presented in multiple languages. PAY_ELEMENT_SETS_TL holds the language-specific ELEMENT_SET_NAME for each element set row defined in the base transactional table.
The object resides in the HR schema and is documented as VALID in ETRM for release 12.2.2, with corresponding availability in 12.1.1. Its heuristic Data Vault classification, mined from the foreign-key structure, is standalone; this suggests that, for analytical or warehouse modeling, the table is best treated as a descriptive satellite attached to the element set entity rather than as an independent hub or a link between two business entities. In practice it functions as a language-dependent attribute store keyed to the element set identifier and language.
Key Information Stored
The table is composed of ten documented columns. The most significant are:
ELEMENT_SET_ID— surrogate identifier of the parent element set; the principal join column to the base element set table.LANGUAGE— the language code for the translated name, forming part of the composite key.SOURCE_LANG— the language from which the translation originates, supporting the standard EBS TL pattern.ELEMENT_SET_NAME— the translated display name of the element set, the primary business-facing attribute of this table.ZD_EDITION_NAME— the editioning column used by EBS online patching (12.2.x) to identify the active edition of the row.- Audit columns —
LAST_UPDATE_DATE,LAST_UPDATED_BY,LAST_UPDATE_LOGIN,CREATED_BY, andCREATION_DATE— which record who created and last modified each translation row and when.
The documented primary key is PAY_ELEMENT_SETS_TL_PK on (ELEMENT_SET_ID, LANGUAGE). A separate unique index, PAY_ELEMENT_SETS_TL_PK (also referred to as a business-key candidate), extends the key to (ELEMENT_SET_ID, LANGUAGE, ZD_EDITION_NAME), reflecting the editioning requirement of the 12.2.2 schema. The surrogate key is therefore ELEMENT_SET_ID combined with LANGUAGE; the business-key candidate adds the edition discriminator to guarantee uniqueness across editions.
Common Use Cases and Queries
This table is most often joined to PAY_ELEMENT_SETS_F (or its translated base) to present element set names in the session language. A typical query retrieves the localized name for each element set:
- Reporting on element set membership for payroll runs, filtered by
ELEMENT_SET_NAME. - Joining to base element set and element set–element mapping tables to resolve names for a given
ELEMENT_SET_ID. - Filtering by
LANGUAGE(orUSERENV('LANG')) to return only the active language row. - Excluding superseded editions by filtering
ZD_EDITION_NAME = 'SET1'in 12.2.x environments. - Auditing recent translation changes via
LAST_UPDATE_DATEandLAST_UPDATED_BY.
A representative join pattern is: SELECT f.element_set_id, t.element_set_name FROM pay_element_sets_f f, pay_element_sets_tl t WHERE f.element_set_id = t.element_set_id AND t.language = USERENV('LANG');
Related Objects
The table links primarily to element set definition and membership objects:
PAY_ELEMENT_SETS_F— base element set definition, joined onELEMENT_SET_ID.PAY_ELEMENT_SETS— the underlying element set entity view/table.PAY_ELEMENT_SET_ELEMENTS— maps elements into a set, joined onELEMENT_SET_ID.PAY_ELEMENT_TYPES_F/PAY_ELEMENT_TYPES_TL— the elements themselves, referenced through the membership table.FND_LANGUAGES— validates theLANGUAGEvalues used here.
These relationships are consistent with the standalone classification: the table depends on the element set entity but does not by itself establish a link between two independent business entities.
-
Table: PAY_ELEMENT_SETS_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_SETS_TL, object_name:PAY_ELEMENT_SETS_TL, status:VALID, product: PAY - Payroll , description: Translated Element Sets Names , implementation_dba_data: HR.PAY_ELEMENT_SETS_TL ,
-
Table: PAY_ELEMENT_SETS_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_SETS_TL, object_name:PAY_ELEMENT_SETS_TL, status:VALID, product: PAY - Payroll , description: Translated Element Sets Names , implementation_dba_data: HR.PAY_ELEMENT_SETS_TL ,
-
VIEW: HR.PAY_ELEMENT_SETS_TL#
12.2.2
owner:HR, object_type:VIEW, object_name:PAY_ELEMENT_SETS_TL#, status:VALID,
-
APPS.PAY_ELEMENT_SETS_PKG SQL Statements
12.1.1
-
APPS.PAY_ELEMENT_SETS_PKG SQL Statements
12.2.2
-
VIEW: APPS.PAY_ELEMENT_SETS_VL
12.2.2
-
TRIGGER: APPS.PAY_ELEMENT_SETS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PAY_ELEMENT_SETS_TL+, status:VALID,
-
TABLE: HR.PAY_ELEMENT_SETS_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_SETS_TL, object_name:PAY_ELEMENT_SETS_TL, status:VALID,
-
VIEW: HR.PAY_ELEMENT_SETS_TL#
12.2.2
-
SYNONYM: PUBLIC.PAY_ELEMENT_SETS_TL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:PAY_ELEMENT_SETS_TL, status:VALID,
-
APPS.PAY_EST_SHD SQL Statements
12.2.2
-
APPS.PAY_EST_SHD SQL Statements
12.1.1
-
SYNONYM: APPS.PAY_ELEMENT_SETS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_SETS_TL, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_TL+
12.2.2
-
VIEW: APPS.PAY_ELEMENT_SETS_VL
12.1.1
-
SYNONYM: APPS.PAY_ELEMENT_SETS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:PAY_ELEMENT_SETS_TL, status:VALID,
-
APPS.PAY_EST_UPD SQL Statements
12.1.1
-
APPS.PAY_EST_DEL SQL Statements
12.1.1
-
APPS.PAY_EST_INS SQL Statements
12.1.1
-
APPS.PAY_EST_DEL SQL Statements
12.2.2
-
APPS.PAY_EST_BUS SQL Statements
12.2.2
-
APPS.PAY_EST_BUS SQL Statements
12.1.1
-
APPS.PAY_EST_UPD SQL Statements
12.2.2
-
APPS.PAY_EST_INS SQL Statements
12.2.2
-
TABLE: HR.PAY_ELEMENT_SETS_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PAY.PAY_ELEMENT_SETS_TL, object_name:PAY_ELEMENT_SETS_TL, status:VALID,
-
FUNCTION: APPS.PAY_ELEMENT_SETS_TL=
12.2.2
-
View: PAY_ELEMENT_SETS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_SETS_VL, object_name:PAY_ELEMENT_SETS_VL, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_ELEMENT_SETS_VL ,
-
PACKAGE BODY: APPS.PAY_EST_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_SHD, status:VALID,
-
View: PAY_ELEMENT_SETS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PAY.PAY_ELEMENT_SETS_VL, object_name:PAY_ELEMENT_SETS_VL, status:VALID, product: PAY - Payroll , implementation_dba_data: APPS.PAY_ELEMENT_SETS_VL ,
-
FUNCTION: APPS.PAY_ELEMENT_SETS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:PAY_ELEMENT_SETS_TL=, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_MNT_TL_ARU
12.2.2
-
PACKAGE BODY: APPS.PAY_EST_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_SHD, status:VALID,
-
PACKAGE: APPS.HXC_ABSENCE_TYPE_ALIAS
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HXC_ABSENCE_TYPE_ALIAS, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_MNT_TL_ARU
12.1.1
-
PACKAGE BODY: APPS.PAY_EST_BUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_BUS, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_DEL, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_INS, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_TL054850_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:PAY_ELEMENT_SETS_TL054850_WHO, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_TL041449_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:PAY_ELEMENT_SETS_TL041449_WHO, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_MNT_TL_ARD
12.1.1
-
TRIGGER: APPS.PAY_ELEMENT_SETS_MNT_TL_ARD
12.2.2
-
PACKAGE BODY: APPS.PAY_ELEMENT_SETS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_ELEMENT_SETS_PKG, status:VALID,
-
TRIGGER: APPS.PAY_ELEMENT_SETS_MNT_TL_ARI
12.1.1
-
TRIGGER: APPS.PAY_ELEMENT_SETS_TL054850_WHO
12.2.2
-
PACKAGE BODY: APPS.PAY_EST_BUS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_BUS, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_UPD, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_SHD
12.1.1
-
PACKAGE BODY: APPS.PAY_EST_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_DEL, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_UPD, status:VALID,
-
PACKAGE BODY: APPS.PAY_EST_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PAY_EST_INS, status:VALID,