Search Results oe_pc_vtmplts_tl
Overview
The OE_PC_VTMPLTS_TL table is a core translation table within the Oracle E-Business Suite (EBS) Order Management (ONT) module, specifically for versions 12.1.1 and 12.2.2. It serves as the multilingual repository for user-facing text associated with validation templates for constraints. In Oracle EBS, validation templates are used to define and enforce business rules or constraints on order lines, such as checking for product compatibility or required configurations. This table enables the system to store and serve the descriptive names and other textual attributes of these templates in multiple languages, supporting global deployments. Its existence is critical for maintaining a single source of truth for template metadata while presenting locale-specific information to users based on their session language.
Key Information Stored
The table's structure is designed to hold translated text linked to a base validation template. The primary key, consisting of VALIDATION_TMPLT_ID and LANGUAGE, ensures a unique translation record per template per language. While the exact column list is not fully detailed in the provided metadata, standard translation table patterns in Oracle EBS indicate it likely contains, at minimum, the following key columns: VALIDATION_TMPLT_ID (the foreign key to the base table), LANGUAGE (the language code, e.g., 'US' for American English), SOURCE_LANG (the original language of the source data), a column for the translated template name (potentially named TEMPLATE_NAME or DESCRIPTION), and possibly a column for translated help text. The SOURCE_LANG column is a standard EBS design that tracks the original language in which the data was entered, facilitating synchronization.
Common Use Cases and Queries
This table is primarily accessed by the application's multilingual architecture to display template descriptions in the user's preferred language. Common operational and reporting scenarios include generating lists of available validation templates for a specific language locale or auditing translation completeness. A typical query would join this table with its base table, OE_PC_VTMPLTS, to retrieve a comprehensive, translated list.
Sample SQL Pattern:
SELECT b.TEMPLATE_CODE,
t.TEMPLATE_NAME,
t.LANGUAGE
FROM OE_PC_VTMPLTS b,
OE_PC_VTMPLTS_TL t
WHERE b.VALIDATION_TMPLT_ID = t.VALIDATION_TMPLT_ID
AND t.LANGUAGE = USERENV('LANG')
ORDER BY b.TEMPLATE_CODE;
This query fetches the template code from the base table and the language-specific name from the translation table for the current user session's language.
Related Objects
OE_PC_VTMPLTS_TL has a direct and essential relationship with its parent base table. The documented foreign key defines this dependency.
- Primary Key Constraint: OE_PC_VTMPLTS_TL_PK on columns (VALIDATION_TMPLT_ID, LANGUAGE).
- Foreign Key Relationship: The table OE_PC_VTMPLTS_TL references the table OE_PC_VTMPLTS. The join is made on the column OE_PC_VTMPLTS_TL.VALIDATION_TMPLT_ID, which corresponds to the primary key column(s) in OE_PC_VTMPLTS. This relationship ensures that every translation record is associated with a valid, existing validation template in the base table.
-
Table: OE_PC_VTMPLTS_TL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS_TL, object_name:OE_PC_VTMPLTS_TL, status:VALID, product: ONT - Order Management , description: OE_PC_VTMPLTS_TL stores the translated columns for validation templates for constraints. , implementation_dba_data: ONT.OE_PC_VTMPLTS_TL ,
-
Table: OE_PC_VTMPLTS_TL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS_TL, object_name:OE_PC_VTMPLTS_TL, status:VALID, product: ONT - Order Management , description: OE_PC_VTMPLTS_TL stores the translated columns for validation templates for constraints. , implementation_dba_data: ONT.OE_PC_VTMPLTS_TL ,
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VTMPLTS_TL
12.1.1
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VTMPLTS_TL
12.2.2
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VTMPLTS
12.1.1
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VTMPLTS
12.2.2
-
APPS.OE_PC_VTMPLTS_PKG dependencies on FND_LANGUAGES
12.1.1
-
VIEW: ONT.OE_PC_VTMPLTS_TL#
12.2.2
owner:ONT, object_type:VIEW, object_name:OE_PC_VTMPLTS_TL#, status:VALID,
-
APPS.OE_PC_VTMPLTS_PKG dependencies on FND_LANGUAGES
12.2.2
-
APPS.OE_PC_VTMPLTS_PKG SQL Statements
12.1.1
-
APPS.OE_PC_VTMPLTS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.OE_PC_VTMPLTS_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:OE_PC_VTMPLTS_TL, status:VALID,
-
SYNONYM: APPS.OE_PC_VTMPLTS_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:OE_PC_VTMPLTS_TL, status:VALID,
-
TRIGGER: APPS.OE_PC_VTMPLTS_TL+
12.2.2
owner:APPS, object_type:TRIGGER, object_name:OE_PC_VTMPLTS_TL+, status:VALID,
-
TABLE: ONT.OE_PC_VTMPLTS_TL
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS_TL, object_name:OE_PC_VTMPLTS_TL, status:VALID,
-
TABLE: ONT.OE_PC_VTMPLTS_TL
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS_TL, object_name:OE_PC_VTMPLTS_TL, status:VALID,
-
VIEW: ONT.OE_PC_VTMPLTS_TL#
12.2.2
-
TRIGGER: APPS.OE_PC_VTMPLTS_TL+
12.2.2
-
VIEW: APPS.OE_PC_VTMPLTS_VL
12.2.2
-
VIEW: APPS.OE_PC_VTMPLTS_VL
12.1.1
-
VIEW: APPS.OE_PC_VTMPLTS_V
12.2.2
-
VIEW: APPS.OE_PC_VTMPLTS_V
12.1.1
-
PACKAGE BODY: APPS.OE_PC_VTMPLTS_PKG
12.1.1
-
FUNCTION: APPS.OE_PC_VTMPLTS_TL=
12.2.2
-
PACKAGE BODY: APPS.OE_PC_VTMPLTS_PKG
12.2.2
-
Table: OE_PC_VTMPLTS
12.2.2
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS, object_name:OE_PC_VTMPLTS, status:VALID, product: ONT - Order Management , description: This table stores the constraint validation templates that are used in constraint conditions. , implementation_dba_data: ONT.OE_PC_VTMPLTS ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
FUNCTION: APPS.OE_PC_VTMPLTS_TL=
12.2.2
owner:APPS, object_type:FUNCTION, object_name:OE_PC_VTMPLTS_TL=, status:VALID,
-
Table: OE_PC_VTMPLTS
12.1.1
owner:ONT, object_type:TABLE, fnd_design_data:ONT.OE_PC_VTMPLTS, object_name:OE_PC_VTMPLTS, status:VALID, product: ONT - Order Management , description: This table stores the constraint validation templates that are used in constraint conditions. , implementation_dba_data: ONT.OE_PC_VTMPLTS ,
-
PACKAGE BODY: APPS.OE_PC_VTMPLTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:OE_PC_VTMPLTS_PKG, status:VALID,
-
APPS.OE_PC_VTMPLTS_PKG dependencies on FND_LOAD_UTIL
12.2.2
-
APPS.OE_PC_VTMPLTS_PKG dependencies on FND_LOAD_UTIL
12.1.1
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VALIDATION_PKGS
12.1.1
-
PACKAGE BODY: APPS.OE_PC_VTMPLTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:OE_PC_VTMPLTS_PKG, status:VALID,
-
APPS.OE_PC_VTMPLTS_PKG dependencies on OE_PC_VALIDATION_PKGS
12.2.2
-
View: OE_PC_VTMPLTS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PC_VTMPLTS_VL, object_name:OE_PC_VTMPLTS_VL, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PC_VTMPLTS_VL ,
-
View: OE_PC_VTMPLTS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PC_VTMPLTS_VL, object_name:OE_PC_VTMPLTS_VL, status:VALID, product: ONT - Order Management , implementation_dba_data: APPS.OE_PC_VTMPLTS_VL ,
-
View: OE_PC_VTMPLTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PC_VTMPLTS_V, object_name:OE_PC_VTMPLTS_V, status:VALID, product: ONT - Order Management , description: This view stores the processing constraint validation templates. , implementation_dba_data: APPS.OE_PC_VTMPLTS_V ,
-
View: OE_PC_VTMPLTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:ONT.OE_PC_VTMPLTS_V, object_name:OE_PC_VTMPLTS_V, status:VALID, product: ONT - Order Management , description: This view stores the processing constraint validation templates. , implementation_dba_data: APPS.OE_PC_VTMPLTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2