Search Results ota_certifications_tl
Overview
OTA_CERTIFICATIONS_TL is the translation (TL) table for certification definitions within the Oracle E-Business Suite Learning Management module (OTA). In the Oracle EBS multilanguage architecture, every translatable entity is split into a base table that stores language-independent attributes and one or more TL tables that store the language-dependent descriptive text. OTA_CERTIFICATIONS_TL holds the translated certification text for each installed language, allowing the same certification to present localized names, descriptions, and structured content to users whose session language differs.
The table resides in the OTA schema and is documented as VALID in ETRM 12.2.2, containing 16 columns. Its primary key, OTA_CERTIFICATIONS_TL_PK, is composed of CERTIFICATION_ID and LANGUAGE, and the table carries a foreign key from CERTIFICATION_ID to OTA_CERTIFICATIONS_B, the base table. Based on the foreign-key structure, the heuristic Data Vault classification for this object is satellite-leaning: it behaves as a descriptive satellite attached to the certification hub/link represented by the base table, capturing context (language-specific text) that changes independently of the core certification identity.
Key Information Stored
The most significant columns are:
- CERTIFICATION_ID — Surrogate identifier of the parent certification; part of the composite primary key and the FK to OTA_CERTIFICATIONS_B.
- LANGUAGE — Installed language code; the second component of the primary key and the discriminator that makes each row a translation.
- SOURCE_LANG — The language from which the row was originally created, used by the translation framework to determine whether content is a base or a translated record.
- NAME — Localized certification name.
- DESCRIPTION — Localized certification description.
- OBJECTIVES — Localized learning objectives associated with the certification.
- PURPOSE — Localized statement of the certification's purpose.
- KEYWORDS — Localized searchable keywords.
- END_DATE_COMMENTS — Localized comments about certification expiration.
- INITIAL_PERIOD_COMMENTS — Localized comments about the initial validity period.
- RENEWAL_PERIOD_COMMENTS — Localized comments about the renewal period.
- CREATED_BY, CREATION_DATE, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — Standard EBS WHO columns for audit and concurrency tracking.
The business-key candidate is the unique index over (CERTIFICATION_ID, LANGUAGE), which coincides with the primary key; the surrogate key proper is CERTIFICATION_ID, inherited from the base table and not independently generated in this table.
Common Use Cases and Queries
Typical usage centers on multilingual reporting, translation completeness audits, and certification catalog extracts. A join to the base table is almost always required to combine language-independent attributes with translated text.
- Retrieve the translated certification for a specific language:
SELECT t.name, t.description FROM ota_certifications_tl t WHERE t.certification_id = :id AND t.language = USERENV('LANG'); - Audit for missing translations: compare distinct LANGUAGE values against FND_LANGUAGES for a given certification_id.
- Find rows still held in the source language: query where LANGUAGE = SOURCE_LANG.
- Report on certifications by keyword in a given language using the KEYWORDS column.
Related Objects
- OTA_CERTIFICATIONS_B — Base table; joined on OTA_CERTIFICATIONS_TL.CERTIFICATION_ID = OTA_CERTIFICATIONS_B.CERTIFICATION_ID (the documented FK).
- OTA_CERTIFICATIONS_VL — The translated view typically defined over the _B and _TL pair for DML and reporting.
- FND_LANGUAGES — Reference for the LANGUAGE column values.
- FND_APPLICATION / FND_TERRITORIES — Supporting lookups for localization context.
- HR_API / OTA translation APIs — PL/SQL packages that insert and update TL rows via the base-table translation flow.
-
Table: OTA_CERTIFICATIONS_TL
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_TL, object_name:OTA_CERTIFICATIONS_TL, status:VALID, product: OTA - Learning Management , description: This table is used for storing the translation definition of certification , implementation_dba_data: OTA.OTA_CERTIFICATIONS_TL ,
-
Table: OTA_CERTIFICATIONS_TL
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_TL, object_name:OTA_CERTIFICATIONS_TL, status:VALID, product: OTA - Learning Management , description: This table is used for storing the translation definition of certification , implementation_dba_data: OTA.OTA_CERTIFICATIONS_TL ,
-
APPS.OTA_CTL_SHD SQL Statements
12.1.1
-
APPS.OTA_CTL_SHD SQL Statements
12.2.2
-
VIEW: OTA.OTA_CERTIFICATIONS_TL#
12.2.2
owner:OTA, object_type:VIEW, object_name:OTA_CERTIFICATIONS_TL#, status:VALID,
-
VIEW: OTA.OTA_CERTIFICATIONS_TL#
12.2.2
-
SYNONYM: APPS.OTA_CERTIFICATIONS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OTA_CERTIFICATIONS_TL, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_SHD
12.1.1
-
SYNONYM: APPS.OTA_CERTIFICATIONS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OTA_CERTIFICATIONS_TL, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_SHD
12.2.2
-
APPS.OTA_CTL_DEL SQL Statements
12.2.2
-
VIEW: APPS.OTA_CERTIFICATIONS_VL
12.2.2
-
APPS.OTA_CTL_DEL SQL Statements
12.1.1
-
VIEW: APPS.OTA_CERTIFICATIONS_VL
12.1.1
-
APPS.OTA_CTL_INS SQL Statements
12.1.1
-
APPS.OTA_CTL_INS SQL Statements
12.2.2
-
APPS.OTA_CTL_UPD SQL Statements
12.1.1
-
APPS.OTA_CTL_UPD SQL Statements
12.2.2
-
APPS.OTA_CERT_APPROVAL_SS SQL Statements
12.1.1
-
APPS.OTA_CERT_APPROVAL_SS SQL Statements
12.2.2
-
PACKAGE: APPS.OTA_TRAINING_RECORD
12.1.1
owner:APPS, object_type:PACKAGE, object_name:OTA_TRAINING_RECORD, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_SHD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_SHD, status:VALID,
-
PACKAGE BODY: APPS.OTA_CERT_XMLP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CERT_XMLP_PKG, status:VALID,
-
PACKAGE: APPS.OTA_TRAINING_RECORD
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OTA_TRAINING_RECORD, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_DEL
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_DEL, status:VALID,
-
Table: OTA_CERTIFICATIONS_B
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_B, object_name:OTA_CERTIFICATIONS_B, status:VALID, product: OTA - Learning Management , description: Certification is an object that belong to a category. Certification can consist of one or more courses. Certification can be categorized as one time or renewable. Certifications usually need to be completed by learner in a specific time per , implementation_dba_data: OTA.OTA_CERTIFICATIONS_B ,
-
Table: OTA_CERTIFICATIONS_B
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_B, object_name:OTA_CERTIFICATIONS_B, status:VALID, product: OTA - Learning Management , description: Certification is an object that belong to a category. Certification can consist of one or more courses. Certification can be categorized as one time or renewable. Certifications usually need to be completed by learner in a specific time per , implementation_dba_data: OTA.OTA_CERTIFICATIONS_B ,
-
PACKAGE BODY: APPS.OTA_CTL_INS
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_INS, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_UPD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_UPD, status:VALID,
-
PACKAGE: APPS.OTA_MANDATORY_ENROLL_UTIL
12.2.2
owner:APPS, object_type:PACKAGE, object_name:OTA_MANDATORY_ENROLL_UTIL, status:VALID,
-
TABLE: OTA.OTA_CERTIFICATIONS_TL
12.1.1
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_TL, object_name:OTA_CERTIFICATIONS_TL, status:VALID,
-
TABLE: OTA.OTA_CERTIFICATIONS_TL
12.2.2
owner:OTA, object_type:TABLE, fnd_design_data:OTA.OTA_CERTIFICATIONS_TL, object_name:OTA_CERTIFICATIONS_TL, status:VALID,
-
TRIGGER: APPS.OTA_CERTIFICATIONS_T054742_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:OTA_CERTIFICATIONS_T054742_WHO, status:VALID,
-
TRIGGER: APPS.OTA_CERTIFICATIONS_T034611_WHO
12.2.2
owner:APPS, object_type:TRIGGER, object_name:OTA_CERTIFICATIONS_T034611_WHO, status:VALID,
-
PACKAGE BODY: APPS.OTA_CERT_XMLP_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CERT_XMLP_PKG, status:VALID,
-
PACKAGE BODY: APPS.OTA_LRNR_ENROLL_UNENROLL_WF
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_LRNR_ENROLL_UNENROLL_WF, status:VALID,
-
PACKAGE BODY: APPS.OTA_AME_ATTRIBUTES
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_AME_ATTRIBUTES, status:VALID,
-
TRIGGER: APPS.OTA_CERTIFICATIONS_T041252_WHO
12.1.1
owner:APPS, object_type:TRIGGER, object_name:OTA_CERTIFICATIONS_T041252_WHO, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_UPD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_UPD, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_SHD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_SHD, status:VALID,
-
PACKAGE BODY: APPS.PER_ZA_WSP_ARCHIVE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:PER_ZA_WSP_ARCHIVE_PKG, status:VALID,
-
PACKAGE BODY: APPS.OTA_CERT_APPROVAL_SS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CERT_APPROVAL_SS, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_DEL
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_DEL, status:VALID,
-
PACKAGE BODY: APPS.OTA_CTL_INS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_CTL_INS, status:VALID,
-
PACKAGE BODY: APPS.PER_ZA_WSP_LOOKUP
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:PER_ZA_WSP_LOOKUP, status:VALID,
-
PACKAGE BODY: APPS.OTA_TRAINING_RECORD
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_TRAINING_RECORD, status:VALID,
-
PACKAGE BODY: APPS.OTA_LRNR_ENROLL_UNENROLL_WF
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OTA_LRNR_ENROLL_UNENROLL_WF, status:VALID,
-
View: OTA_CERTIFICATIONS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CERTIFICATIONS_VL, object_name:OTA_CERTIFICATIONS_VL, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_CERTIFICATIONS_VL ,
-
View: OTA_CERTIFICATIONS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:OTA.OTA_CERTIFICATIONS_VL, object_name:OTA_CERTIFICATIONS_VL, status:VALID, product: OTA - Learning Management , implementation_dba_data: APPS.OTA_CERTIFICATIONS_VL ,
-
TRIGGER: APPS.OTA_CERTIFICATIONS_T034611_WHO
12.2.2