Search Results ingredient_item_code
Overview
The GR_ITEM_CONC_DETAILS table is a temporary data structure within the Oracle E-Business Suite Process Manufacturing Regulatory Management (GR) module. Its primary role is to support the document build process, which is central to generating regulatory and compliance documentation for manufactured items. As a temporary table, it is designed to hold intermediate or staging data during complex calculations or report generation, specifically pertaining to item concentration details, before the final output is assembled or persisted elsewhere. This object is critical for ensuring accurate regulatory reporting by facilitating the management and temporary storage of ingredient concentration relationships during processing.
Key Information Stored
The table's structure is defined by a composite primary key, indicating its core data entities. The key columns are ITEM_CODE, INGREDIENT_ITEM_CODE, and SOURCE_ITEM_CODE. While the specific non-key columns are not detailed in the provided metadata, the primary key implies the table uniquely identifies concentration detail records based on a specific item, a particular ingredient of that item, and the source item for that ingredient. This suggests the table is used to track the lineage and specific concentration contributions of ingredients within a product's formulation during the document build workflow.
Common Use Cases and Queries
The principal use case for GR_ITEM_CONC_DETAILS is the generation of regulatory documents that require detailed breakdowns of item compositions and ingredient concentrations. A typical process involves populating this table with calculated or sourced data, which is then read by the document build engine to create the final report. Common queries would involve selecting records for a specific parent item to compile its complete ingredient profile. For example, a reporting query might follow this pattern to retrieve all concentration details for a given item as part of the build process:
- SELECT * FROM GR.GR_ITEM_CONC_DETAILS WHERE ITEM_CODE = :p_item_code ORDER BY INGREDIENT_ITEM_CODE;
As a temporary table, it is typically truncated and repopulated during each execution of the document build process, and direct reporting or ad-hoc querying by end-users is uncommon.
Related Objects
GR_ITEM_CONC_DETAILS has a direct and integral relationship with the GR_ITEM_CONCENTRATIONS table, as documented by its foreign key. The relationship is defined as follows:
- Foreign Key Reference: The columns GR_ITEM_CONC_DETAILS.ITEM_CODE and GR_ITEM_CONC_DETAILS.INGREDIENT_ITEM_CODE reference the GR_ITEM_CONCENTRATIONS table. This enforces referential integrity, ensuring that the concentration details are linked to a valid master concentration record. A typical join for data validation or extended reporting would be:
- SELECT det.*, conc.* FROM GR.GR_ITEM_CONC_DETAILS det, GR.GR_ITEM_CONCENTRATIONS conc WHERE det.ITEM_CODE = conc.ITEM_CODE AND det.INGREDIENT_ITEM_CODE = conc.INGREDIENT_ITEM_CODE;
This relationship underscores that GR_ITEM_CONC_DETAILS is a child or supporting table to the more permanent GR_ITEM_CONCENTRATIONS master data table within the regulatory management schema.
-
Table: GR_ITEM_CONC_DETAILS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_CONC_DETAILS, object_name:GR_ITEM_CONC_DETAILS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: A temporary table used during the document build process. , implementation_dba_data: GR.GR_ITEM_CONC_DETAILS ,
-
Table: GR_ITEM_CONCENTRATIONS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_CONCENTRATIONS, object_name:GR_ITEM_CONCENTRATIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: A temporary table used during the document build process. , implementation_dba_data: GR.GR_ITEM_CONCENTRATIONS ,
-
Table: GR_ITEM_CONC_DETAILS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_CONC_DETAILS, object_name:GR_ITEM_CONC_DETAILS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: A temporary table used during the document build process. , implementation_dba_data: GR.GR_ITEM_CONC_DETAILS ,
-
Table: GR_ITEM_CONCENTRATIONS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_CONCENTRATIONS, object_name:GR_ITEM_CONCENTRATIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: A temporary table used during the document build process. , implementation_dba_data: GR.GR_ITEM_CONCENTRATIONS ,