Search Results hr_tab_page_properties_tl
Overview
HR_TAB_PAGE_PROPERTIES_TL is the translation (TL) table for tab page properties used by Oracle E-Business Suite configurable forms within the PER — Human Resources product. In the Oracle EBS architecture, translation tables store multilingual, language-specific attributes for a corresponding base table. This table stores the translated, display-facing properties of tab pages — most notably the label rendered to end users — keyed by the language in which that label is expressed.
Its documented foreign key relationship ties each row to HR_TAB_PAGE_PROPERTIES_B on TAB_PAGE_PROPERTY_ID, confirming the classic EBS _B (base) and _TL (translated) pairing. The _B table holds language-independent structural and configuration attributes, while this _TL table holds language-dependent text. In Data Vault modeling terms, the metadata's heuristic classification is satellite-leaning: the table behaves as a descriptive satellite attached to the base entity, carrying descriptive, time-versioned attributes rather than defining business keys themselves. It is owned by the HR schema and documented as VALID in release 12.1.1 / 12.2.2.
Key Information Stored
The table is documented with ten columns. The most significant are the following:
- TAB_PAGE_PROPERTY_ID — the surrogate identifier for the parent tab page property; also part of the composite primary key and the FK to HR_TAB_PAGE_PROPERTIES_B.
- LANGUAGE — the NLS language code for the translated content; the second component of the primary key.
- LABEL — the translated, user-visible text displayed on the tab page.
- SOURCE_LANG — the language code of the source row from which the translation was derived, supporting the standard EBS translation model.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — the standard EBS WHO columns providing audit and change tracking.
- ZD_EDITION_NAME — the editioning column used in the 12.2 Online Patching (AD/TXK) architecture.
The documented primary key is HR_TAB_PAGE_PROPERTIES_TL_PK over (TAB_PAGE_PROPERTY_ID, LANGUAGE). The unique index in the documented physical schema additionally includes ZD_EDITION_NAME — (TAB_PAGE_PROPERTY_ID, LANGUAGE, ZD_EDITION_NAME) — which serves as the business-key candidate and reflects the edition-aware partitioning introduced under Online Patching. TAB_PAGE_PROPERTY_ID and LANGUAGE together form the natural traversal key, while ZD_EDITION_NAME scopes each row to a specific edition.
Common Use Cases and Queries
The primary use case is retrieving localized labels for configurable tab pages. Forms and framework components resolve a tab page property by joining this table to its base table and filtering on the active language. A representative pattern is:
- SELECT tl.label FROM hr.hr_tab_page_properties_tl tl WHERE tl.tab_page_property_id = :property_id AND tl.language = userenv('LANG');
- Joining to the base table: SELECT b.tab_page_property_id, tl.label FROM hr.hr_tab_page_properties_b b, hr.hr_tab_page_properties_tl tl WHERE b.tab_page_property_id = tl.tab_page_property_id AND tl.language = userenv('LANG');
- Auditing untranslated or missing labels by comparing the set of languages present in HR_TAB_PAGE_PROPERTIES_TL against the expected NLS language list for a given property.
Reporting scenarios include translation-coverage reports (which tab pages lack a given language), and label-change audits using the WHO and edition columns. Under 12.2 Online Patching, queries should be edition-aware, since ZD_EDITION_NAME distinguishes rows across editions.
Related Objects
- HR_TAB_PAGE_PROPERTIES_B — the base table; join on TAB_PAGE_PROPERTY_ID. This is the documented foreign-key parent and the primary related object.
- HR_TAB_PAGE_PROPERTIES_TL_PK — the composite primary-key constraint over (TAB_PAGE_PROPERTY_ID, LANGUAGE).
- HR_TAB_PAGE_PROPERTIES_TL — this table itself, referenced by the same surrogate key in dependent configuration and personalization logic.
- ZD_EDITION_NAME / AD_ZD_EDITION — the Online Patching edition infrastructure that governs row visibility per edition.
- FND_LANGUAGES — referenced logically via the LANGUAGE and SOURCE_LANG columns to map language codes to installed languages.
-
Table: HR_TAB_PAGE_PROPERTIES_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_TL, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID, product: PER - Human Resources , description: Translated properties of tab pages for configurable forms , implementation_dba_data: HR.HR_TAB_PAGE_PROPERTIES_TL ,
-
Table: HR_TAB_PAGE_PROPERTIES_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_TL, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID, product: PER - Human Resources , description: Translated properties of tab pages for configurable forms , implementation_dba_data: HR.HR_TAB_PAGE_PROPERTIES_TL ,
-
APPS.HR_TPT_SHD SQL Statements
12.2.2
-
APPS.HR_TPT_SHD SQL Statements
12.1.1
-
VIEW: HR.HR_TAB_PAGE_PROPERTIES_TL#
12.2.2
owner:HR, object_type:VIEW, object_name:HR_TAB_PAGE_PROPERTIES_TL#, status:VALID,
-
TABLE: HR.HR_TAB_PAGE_PROPERTIES_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_TL, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID,
-
SYNONYM: APPS.HR_TAB_PAGE_PROPERTIES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_SHD
12.2.2
-
APPS.HR_TAB_PAGE_PROPERTIES_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.HR_TPT_SHD
12.1.1
-
APPS.HR_TPT_UPD SQL Statements
12.2.2
-
VIEW: APPS.HR_TAB_PAGE_PROPERTIES_VL
12.2.2
-
SYNONYM: PUBLIC.HR_TAB_PAGE_PROPERTIES_TL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID,
-
APPS.HR_TPT_INS SQL Statements
12.2.2
-
VIEW: HR.HR_TAB_PAGE_PROPERTIES_TL#
12.2.2
-
TRIGGER: APPS.HR_TAB_PAGE_PROPERTIES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:HR_TAB_PAGE_PROPERTIES_TL+, status:VALID,
-
SYNONYM: APPS.HR_TAB_PAGE_PROPERTIES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID,
-
TRIGGER: APPS.HR_TAB_PAGE_PROPERTIES_TL+
12.2.2
-
APPS.HR_TAB_PAGE_PROPERTIES_PKG SQL Statements
12.2.2
-
APPS.HR_TPT_DEL SQL Statements
12.1.1
-
APPS.HR_TPT_DEL SQL Statements
12.2.2
-
APPS.HR_TPT_UPD SQL Statements
12.1.1
-
APPS.HR_TPT_INS SQL Statements
12.1.1
-
VIEW: APPS.HR_TAB_PAGE_PROPERTIES_VL
12.1.1
-
TABLE: HR.HR_TAB_PAGE_PROPERTIES_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_TL, object_name:HR_TAB_PAGE_PROPERTIES_TL, status:VALID,
-
FUNCTION: APPS.HR_TAB_PAGE_PROPERTIES_TL=
12.2.2
-
PACKAGE: APPS.HR_FORM_TAB_PAGE_INFO
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_FORM_TAB_PAGE_INFO, status:VALID,
-
APPS.HR_TEMPLATE_TAB_PAGE_INFO SQL Statements
12.2.2
-
FUNCTION: APPS.HR_TAB_PAGE_PROPERTIES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:HR_TAB_PAGE_PROPERTIES_TL=, status:VALID,
-
PACKAGE BODY: APPS.HR_FORM_TAB_PAGE_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_FORM_TAB_PAGE_INFO, status:VALID,
-
Table: HR_TAB_PAGE_PROPERTIES_B
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_B, object_name:HR_TAB_PAGE_PROPERTIES_B, status:VALID, product: PER - Human Resources , description: Properties of tab pages for configurable forms , implementation_dba_data: HR.HR_TAB_PAGE_PROPERTIES_B ,
-
PACKAGE: APPS.HR_TEMPLATE_TAB_PAGE_INFO
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_TEMPLATE_TAB_PAGE_INFO, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_DEL, status:VALID,
-
Table: HR_TAB_PAGE_PROPERTIES_B
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_B, object_name:HR_TAB_PAGE_PROPERTIES_B, status:VALID, product: PER - Human Resources , description: Properties of tab pages for configurable forms , implementation_dba_data: HR.HR_TAB_PAGE_PROPERTIES_B ,
-
PACKAGE: APPS.HR_FORM_TAB_PAGE_INFO
12.2.2
owner:APPS, object_type:PACKAGE, object_name:HR_FORM_TAB_PAGE_INFO, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_INS, status:VALID,
-
PACKAGE: APPS.HR_TEMPLATE_TAB_PAGE_INFO
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_TEMPLATE_TAB_PAGE_INFO, status:VALID,
-
PACKAGE BODY: APPS.HR_FORM_TAB_PAGE_INFO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_FORM_TAB_PAGE_INFO, status:VALID,
-
View: HR_TAB_PAGE_PROPERTIES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_TAB_PAGE_PROPERTIES_VL, object_name:HR_TAB_PAGE_PROPERTIES_VL, status:VALID, product: PER - Human Resources , implementation_dba_data: APPS.HR_TAB_PAGE_PROPERTIES_VL ,
-
PACKAGE BODY: APPS.HR_TAB_PAGE_PROPERTIES_PKG
12.2.2
-
TRIGGER: APPS.HR_TAB_PAGE_PROPERTI041420_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:HR_TAB_PAGE_PROPERTI041420_WHO, status:VALID,
-
TRIGGER: APPS.HR_TAB_PAGE_PROPERTI054838_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:HR_TAB_PAGE_PROPERTI054838_WHO, status:VALID,
-
PACKAGE BODY: APPS.HR_TAB_PAGE_PROPERTIES_BSI
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TAB_PAGE_PROPERTIES_BSI, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_UPD, status:VALID,
-
PACKAGE BODY: APPS.HR_TEMPLATE_TAB_PAGE_INFO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TEMPLATE_TAB_PAGE_INFO, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_INS, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_UPD, status:VALID,
-
PACKAGE BODY: APPS.HR_TEMPLATE_TAB_PAGE_INFO
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TEMPLATE_TAB_PAGE_INFO, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_DEL, status:VALID,
-
PACKAGE BODY: APPS.HR_TPT_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_TPT_SHD, status:VALID,