Search Results gmp_parameter_values_tl
Overview
The GMP_PARAMETER_VALUES_TL table is a translation table within the Oracle E-Business Suite Process Manufacturing (GMP) module. Specifically, it supports the Process Planning sub-module in both releases 12.1.1 and 12.2.2. Its primary role is to store translated descriptions for process parameter values, enabling the application to present user-facing text in multiple languages. This table is a critical component for the internationalization (i18n) of the manufacturing process definitions, ensuring that parameter value descriptions are displayed correctly based on a user's session language. It operates in conjunction with its base table, GMP_PARAMETER_VALUES_B, which holds the core, language-independent data.
Key Information Stored
The table stores multilingual descriptions for specific values assigned to process parameters. Its structure is defined by a composite primary key that uniquely identifies each translation row. The most significant columns include:
- PARAMETER_ID: A foreign key linking the translation to a specific process parameter defined in the base table (GMP_PARAMETER_VALUES_B).
- PARAMETER_VALUE: The specific code or value for the parameter, forming part of the key with PARAMETER_ID.
- LANGUAGE: The language code (e.g., 'US' for American English) for the translated text, completing the primary key.
- DESCRIPTION (implied by translation table convention): While not explicitly listed in the provided metadata, translation tables in Oracle EBS universally contain a DESCRIPTION or similar column to hold the actual translated text. This is the user-friendly name for the parameter value in the specified language.
Common Use Cases and Queries
The primary use case is retrieving a parameter value's description in the user's current session language for display in forms, reports, and UIs within Process Planning. A typical query joins the translation table to its base table using the LANGUAGE column filtered by the user's session context. For example, to fetch all translated values for a specific parameter, one might use:
SELECT pvb.PARAMETER_ID, pvb.PARAMETER_VALUE, pvtl.DESCRIPTION
FROM GMP_PARAMETER_VALUES_B pvb,
GMP_PARAMETER_VALUES_TL pvtl
WHERE pvb.PARAMETER_ID = pvtl.PARAMETER_ID
AND pvb.PARAMETER_VALUE = pvtl.PARAMETER_VALUE
AND pvtl.LANGUAGE = USERENV('LANG')
AND pvb.PARAMETER_ID = :specific_parameter_id;
This table is also essential for generating multilingual process documentation, quality reports, and batch records where parameter specifications must be presented in a locale-specific manner.
Related Objects
The table has a direct and fundamental relationship with its base table, as documented in the provided metadata. The key related object is:
- GMP_PARAMETER_VALUES_B: This is the base ("_B") table that stores the core, language-insensitive data for process parameter values. The foreign key relationship is defined on the composite columns (PARAMETER_ID, PARAMETER_VALUE). Every record in GMP_PARAMETER_VALUES_TL must correspond to a valid record in GMP_PARAMETER_VALUES_B. The translation table does not store standalone data; it exists solely to provide multilingual descriptions for the entities defined in the base table.
-
Table: GMP_PARAMETER_VALUES_TL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_TL, object_name:GMP_PARAMETER_VALUES_TL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Process Parameter values Translation table , implementation_dba_data: GMP.GMP_PARAMETER_VALUES_TL ,
-
Table: GMP_PARAMETER_VALUES_TL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_TL, object_name:GMP_PARAMETER_VALUES_TL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Process Parameter values Translation table , implementation_dba_data: GMP.GMP_PARAMETER_VALUES_TL ,
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on GMP_PARAMETER_VALUES_TL
12.1.1
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on GMP_PARAMETER_VALUES_TL
12.2.2
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on FND_LANGUAGES
12.2.2
-
PACKAGE BODY: APPS.GMP_PARAMETER_VALUES_PKG
12.2.2
-
APPS.GMP_PARAMETER_VALUES_PKG SQL Statements
12.1.1
-
APPS.GMP_PARAMETER_VALUES_PKG SQL Statements
12.2.2
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on FND_LANGUAGES
12.1.1
-
VIEW: GMP.GMP_PARAMETER_VALUES_TL#
12.2.2
owner:GMP, object_type:VIEW, object_name:GMP_PARAMETER_VALUES_TL#, status:VALID,
-
PACKAGE BODY: APPS.GMP_PARAMETER_VALUES_PKG
12.1.1
-
SYNONYM: APPS.GMP_PARAMETER_VALUES_TL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMP_PARAMETER_VALUES_TL, status:VALID,
-
VIEW: APPS.GMP_PARAMETER_VALUES_VL
12.1.1
-
SYNONYM: APPS.GMP_PARAMETER_VALUES_TL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMP_PARAMETER_VALUES_TL, status:VALID,
-
TABLE: GMP.GMP_PARAMETER_VALUES_TL
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_TL, object_name:GMP_PARAMETER_VALUES_TL, status:VALID,
-
VIEW: APPS.GMP_PARAMETER_VALUES_VL
12.2.2
-
VIEW: GMP.GMP_PARAMETER_VALUES_TL#
12.2.2
-
Table: GMP_PARAMETER_VALUES_B
12.1.1
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_B, object_name:GMP_PARAMETER_VALUES_B, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Process Parameter values , implementation_dba_data: GMP.GMP_PARAMETER_VALUES_B ,
-
TABLE: GMP.GMP_PARAMETER_VALUES_TL
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_TL, object_name:GMP_PARAMETER_VALUES_TL, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
Table: GMP_PARAMETER_VALUES_B
12.2.2
owner:GMP, object_type:TABLE, fnd_design_data:GMP.GMP_PARAMETER_VALUES_B, object_name:GMP_PARAMETER_VALUES_B, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Process Parameter values , implementation_dba_data: GMP.GMP_PARAMETER_VALUES_B ,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: GMP_PARAMETER_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PARAMETER_VALUES_VL, object_name:GMP_PARAMETER_VALUES_VL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Parameter value view , implementation_dba_data: APPS.GMP_PARAMETER_VALUES_VL ,
-
View: GMP_PARAMETER_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PARAMETER_VALUES_VL, object_name:GMP_PARAMETER_VALUES_VL, status:VALID, product: GMP - Process Manufacturing Process Planning , description: Parameter value view , implementation_dba_data: APPS.GMP_PARAMETER_VALUES_VL ,
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMP_PARAMETER_VALUES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_PARAMETER_VALUES_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMP_PARAMETER_VALUES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMP_PARAMETER_VALUES_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.GMP_PARAMETER_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PARAMETER_VALUES_VL, object_name:GMP_PARAMETER_VALUES_VL, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
VIEW: APPS.GMP_PARAMETER_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMP.GMP_PARAMETER_VALUES_VL, object_name:GMP_PARAMETER_VALUES_VL, status:VALID,
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on GMP_PARAMETER_VALUES_B
12.1.1
-
APPS.GMP_PARAMETER_VALUES_PKG dependencies on GMP_PARAMETER_VALUES_B
12.2.2
-
eTRM - GMP Tables and Views
12.2.2
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.1.1
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.1.1
description: * NOT USED * ,
-
eTRM - GMP Tables and Views
12.2.2
description: * NOT USED * ,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1