Search Results hr_document_types_tl
Overview
HR_DOCUMENT_TYPES_TL is the translated (language-specific) child table of the Human Resources module in Oracle E-Business Suite, holding the displayable text for Document Types of Record. In Oracle EBS, "Documents of Record" are the HR-required pieces of documentation tracked against a person or assignment, such as identification, eligibility, or certification records. The base (non-translated) definition of each document type lives in HR_DOCUMENT_TYPES_B, while HR_DOCUMENT_TYPES_TL stores the translated values for the translatable columns (DOCUMENT_TYPE and DESCRIPTION) for every installed language, enabling multi-language end-user presentation. The table resides in the HR schema under the PER (Human Resources) product and is documented as VALID in both 12.1.1 and 12.2.2.
From a modeling perspective, the heuristic Data Vault classification mined from the FK structure is standalone. Because it carries no outbound foreign-key relationships in the documented graph, it does not function as a link; it behaves conceptually like a descriptive satellite hanging off the base entity keyed by DOCUMENT_TYPE_ID and LANGUAGE, and it should be modeled as a reference/translation lookup rather than a hub.
Key Information Stored
The documented physical schema of the 12.2.2 ETRM record contains 11 columns. The most important are:
- DOCUMENT_TYPE_ID — the surrogate/business identifier of the parent document type; the first component of the primary key and the join key back to HR_DOCUMENT_TYPES_B.
- LANGUAGE — the language code of the translation row; combined with DOCUMENT_TYPE_ID it forms the PK component. Distinguishes one translated row from another for the same document type.
- SOURCE_LANGUAGE — the language from which the translated text was derived, used in the standard EBS multi-language (TL) pattern to indicate translation origin.
- DOCUMENT_TYPE — the translated short name/display name of the document type; this is the user-facing label.
- DESCRIPTION — the translated longer description of the document type.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN, CREATED_BY, CREATION_DATE — standard EBS audit/who columns recording who created or last modified the row and when.
- ZD_EDITION_NAME — the edition-name column used in the Oracle 12.2.x editioning/online-patching scheme; it appears in both unique indexes.
Two unique indexes are documented: HR_DOCUMENT_TYPES_TL_PK (business-key candidate on DOCUMENT_TYPE_ID, LANGUAGE, ZD_EDITION_NAME) and HR_DOCUMENT_TYPES_TL_U1 (LANGUAGE, DOCUMENT_TYPE, ZD_EDITION_NAME). The primary key formally declared is HR_DOUMENT_TYPES_TL_PK on (DOCUMENT_TYPE_ID, LANGUAGE). The uniqueness of LANGUAGE + DOCUMENT_TYPE in U1 ensures a given translated name is not duplicated within a language.
Common Use Cases and Queries
HR_DOCUMENT_TYPES_TL is typically joined to the base table and filtered by the session language to return the correctly localized label. A representative query:
SELECT b.document_type_id, t.document_type, t.description FROM hr.hr_document_types_b b, hr.hr_document_types_tl t WHERE b.document_type_id = t.document_type_id AND t.language = USERENV('LANG') ORDER BY t.document_type;- Localization QA: comparing a translation row against SOURCE_LANGUAGE to confirm which languages are translated.
- Reporting: listing all translated document-type names for a DFF/quickcode-style lookup, or feeding a document-of-record checklist report.
- Data migration/extract: pulling DOCUMENT_TYPE_ID plus translated DOCUMENT_TYPE to map legacy codes to EBS document types.
Related Objects
- HR_DOCUMENT_TYPES_B — base table; join on DOCUMENT_TYPE_ID.
- HR_DOCUMENT_TYPES_VL — the translated view combining B and TL rows; commonly used in forms and reports.
- HR_DOCUMENT_TYPES / HR_DOCUMENTS_OF_RECORD — parent/child tables referencing the document-type definition.
- PER_DOCUMENT_TYPES — reference by DOCUMENT_TYPE_ID in dependent HR entities.
- FND_LANGUAGES — join on LANGUAGE for language names.
- HR_LOOKUPS — related HR reference data for document-type classification.
-
Table: HR_DOCUMENT_TYPES_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DOCUMENT_TYPES_TL, object_name:HR_DOCUMENT_TYPES_TL, status:VALID, product: PER - Human Resources , description: Translated Document Types for Documents of Record , implementation_dba_data: HR.HR_DOCUMENT_TYPES_TL ,
-
Table: HR_DOCUMENT_TYPES_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DOCUMENT_TYPES_TL, object_name:HR_DOCUMENT_TYPES_TL, status:VALID, product: PER - Human Resources , description: Translated Document Types for Documents of Record , implementation_dba_data: HR.HR_DOCUMENT_TYPES_TL ,
-
APPS.HR_DTT_SHD SQL Statements
12.1.1
-
APPS.HR_DTT_SHD SQL Statements
12.2.2
-
APPS.HR_DOCUMENT_TYPES_PKG SQL Statements
12.1.1
-
APPS.HR_DOCUMENT_TYPES_PKG SQL Statements
12.2.2
-
PACKAGE BODY: APPS.HR_DTT_SHD
12.1.1
-
PACKAGE BODY: APPS.HR_DTT_SHD
12.2.2
-
VIEW: HR.HR_DOCUMENT_TYPES_TL#
12.2.2
owner:HR, object_type:VIEW, object_name:HR_DOCUMENT_TYPES_TL#, status:VALID,
-
PACKAGE BODY: APPS.HR_DOCUMENT_TYPES_PKG
12.2.2
-
PACKAGE BODY: APPS.HR_DOCUMENT_TYPES_PKG
12.1.1
-
SYNONYM: PUBLIC.HR_DOCUMENT_TYPES_TL
12.1.1
owner:PUBLIC, object_type:SYNONYM, object_name:HR_DOCUMENT_TYPES_TL, status:VALID,
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:HR_DOCUMENT_TYPES_TL+, status:VALID,
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL+
12.2.2
-
SYNONYM: APPS.HR_DOCUMENT_TYPES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HR_DOCUMENT_TYPES_TL, status:VALID,
-
TABLE: HR.HR_DOCUMENT_TYPES_TL
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DOCUMENT_TYPES_TL, object_name:HR_DOCUMENT_TYPES_TL, status:VALID,
-
SYNONYM: APPS.HR_DOCUMENT_TYPES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:HR_DOCUMENT_TYPES_TL, status:VALID,
-
VIEW: HR.HR_DOCUMENT_TYPES_TL#
12.2.2
-
APPS.HR_DTT_DEL SQL Statements
12.2.2
-
VIEW: APPS.HR_DOCUMENT_TYPES_V
12.1.1
-
VIEW: APPS.HR_DOCUMENT_TYPES_V
12.2.2
-
APPS.HR_DTT_UPD SQL Statements
12.1.1
-
APPS.HR_DTT_UPD SQL Statements
12.2.2
-
APPS.HR_DTT_INS SQL Statements
12.2.2
-
APPS.HR_DTT_DEL SQL Statements
12.1.1
-
APPS.HR_DTT_INS SQL Statements
12.1.1
-
TABLE: HR.HR_DOCUMENT_TYPES_TL
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:PER.HR_DOCUMENT_TYPES_TL, object_name:HR_DOCUMENT_TYPES_TL, status:VALID,
-
FUNCTION: APPS.HR_DOCUMENT_TYPES_TL=
12.2.2
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL041447_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:HR_DOCUMENT_TYPES_TL041447_WHO, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_UPD, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_DEL, status:VALID,
-
PACKAGE BODY: APPS.HR_DOCUMENT_TYPES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DOCUMENT_TYPES_PKG, status:VALID,
-
FUNCTION: APPS.HR_DOCUMENT_TYPES_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:HR_DOCUMENT_TYPES_TL=, status:VALID,
-
PACKAGE BODY: APPS.HR_DOCUMENT_TYPES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DOCUMENT_TYPES_PKG, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_SHD, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_DEL, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_INS, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_UPD, status:VALID,
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL054849_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:HR_DOCUMENT_TYPES_TL054849_WHO, status:VALID,
-
PACKAGE BODY: APPS.PER_AE_XDO_REPORT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_AE_XDO_REPORT, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_SHD, status:VALID,
-
PACKAGE BODY: APPS.HR_DTT_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HR_DTT_INS, status:VALID,
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL054849_WHO
12.2.2
-
View: HR_DOCUMENT_TYPES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DOCUMENT_TYPES_V, object_name:HR_DOCUMENT_TYPES_V, status:VALID, product: PER - Human Resources , description: Translated view of Document Types. , implementation_dba_data: APPS.HR_DOCUMENT_TYPES_V ,
-
TRIGGER: APPS.HR_DOCUMENT_TYPES_TL041447_WHO
12.1.1
-
PACKAGE BODY: APPS.PER_AE_XDO_REPORT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_AE_XDO_REPORT, status:VALID,
-
View: HR_DOCUMENT_TYPES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_DOCUMENT_TYPES_V, object_name:HR_DOCUMENT_TYPES_V, status:VALID, product: PER - Human Resources , description: Translated view of Document Types. , implementation_dba_data: APPS.HR_DOCUMENT_TYPES_V ,
-
PACKAGE BODY: APPS.HR_DTT_DEL
12.2.2
-
PACKAGE BODY: APPS.HR_DTT_DEL
12.1.1
-
PACKAGE BODY: APPS.HR_DTT_INS
12.2.2