Search Results gr_item_groups_tl
Overview
The GR_ITEM_GROUPS_TL table is a core data object within Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Process Manufacturing Regulatory Management (GR) module. It functions as a translation table, storing multilingual descriptions for Item Groups. Its primary role is to support global deployments by enabling the storage of descriptive text in multiple languages, as defined in the application's language table (FND_LANGUAGES). This table works in conjunction with its base table, GR_ITEM_GROUPS_B, which holds the language-independent transactional data. The '_TL' suffix is a standard Oracle EBS convention denoting a Translation table.
Key Information Stored
The table's structure is designed to manage multilingual content through key identifier and descriptive columns. The primary key is a composite of ITEM_GROUP_CODE and LANGUAGE, ensuring a unique description for each item group per language. The ITEM_GROUP_CODE column is the foreign key linking each translated row to its corresponding master record in the GR_ITEM_GROUPS_B table. The LANGUAGE column stores the language code (e.g., 'US', 'FR') and is a foreign key to FND_LANGUAGES. A critical column is SOURCE_LANG, which indicates the original language in which the data was entered; this is also a foreign key to FND_LANGUAGES and is used by the Oracle translation utilities to identify seed data. The most significant data column is DESCRIPTION, which holds the translated textual name or description of the item group in the specified language.
Common Use Cases and Queries
The primary use case is retrieving item group descriptions in a user's session language for reports, forms, and user interfaces within the Regulatory Management module. A standard query involves joining the base and translation tables while filtering for the current language and potentially the source language for data management purposes.
- Retrieving Translated Descriptions:
SELECT b.ITEM_GROUP_CODE, tl.DESCRIPTION FROM GR_ITEM_GROUPS_B b, GR_ITEM_GROUPS_TL tl WHERE b.ITEM_GROUP_CODE = tl.ITEM_GROUP_CODE AND tl.LANGUAGE = USERENV('LANG'); - Data Audit or Translation Gap Analysis: Identifying item groups missing a translation in a specific target language by comparing against the source language records.
- Reporting: Generating regulatory or compliance reports that require item group information presented in multiple languages for different regional authorities.
Related Objects
GR_ITEM_GROUPS_TL is centrally connected to several key EBS objects, as defined by its foreign key constraints.
- GR_ITEM_GROUPS_B: This is the primary related table. The foreign key on GR_ITEM_GROUPS_TL.ITEM_GROUP_CODE references GR_ITEM_GROUPS_B.ITEM_GROUP_CODE. Every translated description must correspond to a master record in this base table.
- FND_LANGUAGES (Two Relationships): The table has two distinct foreign key relationships to the FND_LANGUAGES table.
- The first is on the LANGUAGE column, validating that the translation language is an active, installed language in the EBS instance.
- The second is on the SOURCE_LANG column, ensuring the recorded source language is also valid within the application's language setup.
-
Table: GR_ITEM_GROUPS_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GROUPS_TL, object_name:GR_ITEM_GROUPS_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Item Group Description in multiple languages. , implementation_dba_data: GR.GR_ITEM_GROUPS_TL ,
-
Table: GR_ITEM_GROUPS_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GROUPS_TL, object_name:GR_ITEM_GROUPS_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Item Group Description in multiple languages. , implementation_dba_data: GR.GR_ITEM_GROUPS_TL ,
-
Table: GR_ITEM_GROUPS_B
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GROUPS_B, object_name:GR_ITEM_GROUPS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the item Group Code and Description and Consolidated Toxicity and Exposure Data. , implementation_dba_data: GR.GR_ITEM_GROUPS_B ,
-
Table: GR_ITEM_GROUPS_B
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GROUPS_B, object_name:GR_ITEM_GROUPS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the item Group Code and Description and Consolidated Toxicity and Exposure Data. , implementation_dba_data: GR.GR_ITEM_GROUPS_B ,
-
View: GR_ITEM_GROUPS_TL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GROUPS_TL_V, object_name:GR_ITEM_GROUPS_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent item group description. , implementation_dba_data: APPS.GR_ITEM_GROUPS_TL_V ,
-
View: GR_ITEM_GROUPS_TL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GROUPS_TL_V, object_name:GR_ITEM_GROUPS_TL_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent item group description. , implementation_dba_data: APPS.GR_ITEM_GROUPS_TL_V ,
-
View: GR_ITEM_GROUPS_VL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GROUPS_VL, object_name:GR_ITEM_GROUPS_VL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent description for the item group code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_ITEM_GROUPS_VL ,
-
View: GR_ITEM_GROUPS_VL
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GROUPS_VL, object_name:GR_ITEM_GROUPS_VL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows that have a language dependent description for the item group code where the language is equal to the user environment variable LANG. , implementation_dba_data: APPS.GR_ITEM_GROUPS_VL ,