Search Results qcassy_val_id
Overview
The GMD_TEST_VALUES_TL table is a core data object within the Oracle E-Business Suite (EBS) Process Manufacturing Product Development module (GMD). It functions as a translation table, storing multilingual textual descriptions for predefined test values used in quality specifications and assays. Its primary role is to support global deployments by enabling the display of test value names and descriptions in the user's preferred language, as defined by the application's language settings. The table is integral to the quality management and product development processes, ensuring that critical testing criteria are communicated accurately across different locales.
Key Information Stored
The table's structure is designed to hold language-specific translations linked to a base test value identifier. Based on the provided metadata, the key columns include:
- QCASSY_VAL_ID: A foreign key that uniquely identifies a test value in the base table (commonly GMD_TEST_VALUES_B). This is the primary link to the non-translatable attributes of the test value.
- LANGUAGE: The standard Oracle language code (e.g., 'US' for American English, 'D' for German) for which the translation is provided.
- TEST_VALUE_DESC (implied by standard TL table conventions): This column, while not explicitly listed in the brief excerpt, is standard for Translation (TL) tables. It holds the actual translated text for the test value's description or name in the specified language.
The primary key constraint, GMD_TEST_VALUES_TL_PK, is defined on the combination of QCASSY_VAL_ID and LANGUAGE, enforcing uniqueness of a translation per language for each test value.
Common Use Cases and Queries
This table is primarily accessed by the application's user interface (UI) to render localized content. A common operational query retrieves the translated description for a specific test value in the current session language. For reporting and data extraction, analysts often join this table with its base table to create language-specific quality reports.
Sample Query: Retrieving English descriptions for a set of test values.
SELECT b.qcassy_val_id, tl.test_value_desc
FROM gmd_test_values_b b,
gmd_test_values_tl tl
WHERE b.qcassy_val_id = tl.qcassy_val_id
AND tl.language = 'US'
AND b.qcassy_val_id IN (1001, 1002, 1003);
Another critical use case is during the implementation of new languages, where data is loaded or translated into this table via standard EBS localization tools to support new locales.
Related Objects
GMD_TEST_VALUES_TL has direct dependencies within the GMD schema. The primary related objects include:
- GMD_TEST_VALUES_B: The base table that contains the invariant, non-translatable data for test values. The QCASSY_VAL_ID column in the TL table is a foreign key referencing this table.
- GMD_QCASSY_VALS (or similarly named base entity): Given the column name QCASSY_VAL_ID, it is closely related to the core assay value entities within the Quality Management structure.
- FND_LANGUAGES: A central Application Object Library (FND) table that contains the valid languages available in the instance, which constrain the values populating the LANGUAGE column.
- Various GMD forms, reports, and APIs (e.g., quality specification APIs) will internally join to this table to present or process translated data.
-
Table: GMD_TEST_VALUES_TL
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_VALUES_TL, object_name:GMD_TEST_VALUES_TL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: GMD.GMD_TEST_VALUES_TL ,
-
Table: GMD_TEST_VALUES_B
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_VALUES_B, object_name:GMD_TEST_VALUES_B, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: GMD.GMD_TEST_VALUES_B ,
-
Table: GMD_TEST_VALUES_TL
12.1.1
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_VALUES_TL, object_name:GMD_TEST_VALUES_TL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: GMD.GMD_TEST_VALUES_TL ,
-
Table: QC_ASSY_VAL
12.2.2
product: GMD - Process Manufacturing Product Development , description: Valid QC assay values. , implementation_dba_data: Not implemented in this database ,
-
Table: GMD_TEST_VALUES_B
12.2.2
owner:GMD, object_type:TABLE, fnd_design_data:GMD.GMD_TEST_VALUES_B, object_name:GMD_TEST_VALUES_B, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: GMD.GMD_TEST_VALUES_B ,
-
Table: QC_ASSY_VAL
12.1.1
product: GMD - Process Manufacturing Product Development , description: Valid QC assay values. , implementation_dba_data: Not implemented in this database ,
-
View: GMD_TEST_VALUES_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_VALUES_VL, object_name:GMD_TEST_VALUES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_TEST_VALUES_VL ,
-
View: GMD_TEST_VALUES_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMD.GMD_TEST_VALUES_VL, object_name:GMD_TEST_VALUES_VL, status:VALID, product: GMD - Process Manufacturing Product Development , implementation_dba_data: APPS.GMD_TEST_VALUES_VL ,