Search Results gr_item_general
Overview
The GR_ITEM_GENERAL table is a core data repository within the Oracle E-Business Suite Process Manufacturing Regulatory Management (GR) module. It serves as the primary table for storing regulatory metadata that further identifies an item beyond its basic inventory definition. Its central role is to govern the compilation and presentation of Material Safety Data Sheet (MSDS) documents by storing flags that control which specific regulatory data elements are displayed. This table is fundamental for maintaining compliance with health, safety, and environmental regulations by linking an item's physical and chemical properties to its regulatory classifications and disclosure requirements.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the table's description and foreign key relationships indicate it holds critical regulatory identifiers and control flags. The primary key is the ITEM_CODE, which links to the inventory item. Based on standard GR module design and the foreign key references, the table typically stores fields such as the PRODUCT_CLASS (linking to GR_PRODUCT_CLASSES), ITEM_GROUP_CODE (linking to GR_ITEM_GROUPS_B), and USER_ID (linking to FND_USER for auditing). Crucially, it contains numerous Boolean or list-based flags that determine the inclusion of data from related tables (like toxicity, exposure, concentrations, and disclosures) on the generated MSDS, effectively acting as a master control point for document assembly.
Common Use Cases and Queries
A primary use case is the generation of compliant MSDS reports. A system process or a regulatory analyst would query this table to determine the regulatory profile of an item and which related data sets to include. Common SQL patterns involve joining to the numerous child tables to assemble a complete regulatory dossier. For example, to retrieve the core regulatory control flags for an item, a query would be: SELECT * FROM GR.GR_ITEM_GENERAL WHERE item_code = :p_item_code;. For reporting, a more complex join retrieves all associated data: SELECT gig.*, gid.disclosure_text, gip.property_value FROM gr_item_general gig LEFT JOIN gr_item_disclosures gid ON gig.item_code = gid.item_code LEFT JOIN gr_item_properties gip ON gig.item_code = gip.item_code WHERE gig.item_code = :p_item_code;. This enables validation of item setups and troubleshooting MSDS output.
Related Objects
The GR_ITEM_GENERAL table has extensive relationships, acting as a parent to many detail tables. Key documented relationships include:
- Primary Key Reference: ITEM_CODE is referenced as a foreign key by numerous detail tables including GR_ITEM_CONCENTRATIONS, GR_ITEM_DISCLOSURES, GR_ITEM_PROPERTIES, GR_ITEM_TOXIC, GR_ITEM_RIGHT_TO_KNOW, and GR_ITEM_EXPOSURE.
- Foreign Key Dependencies: It references GR_ITEM_GROUPS_B (ITEM_GROUP_CODE), GR_PRODUCT_CLASSES (PRODUCT_CLASS), and FND_USER (USER_ID).
- Document and Transaction Links: It is linked to document generation and history tables such as GR_DOCUMENT_PRINT, GR_DISPATCH_HISTORIES, and GR_ITEM_DOC_STATUSES.
- Supporting Tables: It relates to GR_EMEA for region-specific data, GR_GENERIC_ITEMS_B, GR_MULTILINGUAL_NAME_TL, and GR_OTHER_NAMES_TL for item identification.
-
Table: GR_ITEM_GENERAL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GENERAL, object_name:GR_ITEM_GENERAL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores regulatory information that further identifies the item. It also stores flags that govern what data displays on the MSDS. , implementation_dba_data: GR.GR_ITEM_GENERAL ,
-
Table: GR_ITEM_GENERAL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_GENERAL, object_name:GR_ITEM_GENERAL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores regulatory information that further identifies the item. It also stores flags that govern what data displays on the MSDS. , implementation_dba_data: GR.GR_ITEM_GENERAL ,
-
View: GR_ITEM_CODES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_CODES_V, object_name:GR_ITEM_CODES_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Item Code Description in GR_ITEM_GENERAL & IC_ITEM_MST , implementation_dba_data: APPS.GR_ITEM_CODES_V ,
-
View: GR_ITEM_CODES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_CODES_V, object_name:GR_ITEM_CODES_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Item Code Description in GR_ITEM_GENERAL & IC_ITEM_MST , implementation_dba_data: APPS.GR_ITEM_CODES_V ,
-
View: GR_REG_ITEM_CODE_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_REG_ITEM_CODE_V, object_name:GR_REG_ITEM_CODE_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Regulatory Items with Description , implementation_dba_data: APPS.GR_REG_ITEM_CODE_V ,
-
Table: GR_ITEM_DOC_STATUSES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_DOC_STATUSES, object_name:GR_ITEM_DOC_STATUSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the last change date and Item Document Status. , implementation_dba_data: GR.GR_ITEM_DOC_STATUSES ,
-
Table: GR_EMEA
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_EMEA, object_name:GR_EMEA, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Europe and Middle East-specific regulatory information about the item. , implementation_dba_data: GR.GR_EMEA ,
-
Table: GR_DISPATCH_HISTORIES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DISPATCH_HISTORIES, object_name:GR_DISPATCH_HISTORIES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains transaction information, such as who received what and when. , implementation_dba_data: GR.GR_DISPATCH_HISTORIES ,
-
Table: GR_ITEM_DOC_STATUSES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_DOC_STATUSES, object_name:GR_ITEM_DOC_STATUSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the last change date and Item Document Status. , implementation_dba_data: GR.GR_ITEM_DOC_STATUSES ,
-
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 ,
-
View: GR_REG_ITEM_CODE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_REG_ITEM_CODE_V, object_name:GR_REG_ITEM_CODE_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View for Regulatory Items with Description , implementation_dba_data: APPS.GR_REG_ITEM_CODE_V ,
-
Table: GR_CALCULATED
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_CALCULATED, object_name:GR_CALCULATED, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the calculated values for attributes, such as heavy elements, lists, and physical properties. , implementation_dba_data: GR.GR_CALCULATED ,
-
Table: GR_ITEM_RIGHT_TO_KNOW
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_RIGHT_TO_KNOW, object_name:GR_ITEM_RIGHT_TO_KNOW, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains product composition information pertinent to each state's reporting level. , implementation_dba_data: GR.GR_ITEM_RIGHT_TO_KNOW ,
-
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 ,
-
View: GR_ITEM_REPORT_V1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_REPORT_V1, object_name:GR_ITEM_REPORT_V1, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of valid Regulatory Items which can be used for Reports. , implementation_dba_data: APPS.GR_ITEM_REPORT_V1 ,
-
Table: GR_ITEM_DISCLOSURES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_DISCLOSURES, object_name:GR_ITEM_DISCLOSURES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Disclosure information for the item. , implementation_dba_data: GR.GR_ITEM_DISCLOSURES ,
-
Table: GR_MULTILINGUAL_NAME_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL, object_name:GR_MULTILINGUAL_NAME_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Document, Shipping, Trade, and Chemical Family Names for the item, by language. , implementation_dba_data: GR.GR_MULTILINGUAL_NAME_TL ,
-
Table: GR_ITEM_DISCLOSURES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_DISCLOSURES, object_name:GR_ITEM_DISCLOSURES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Disclosure information for the item. , implementation_dba_data: GR.GR_ITEM_DISCLOSURES ,
-
View: GR_ITEM_GENERAL_MSDS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains only the rows that reflect the MSDS name for the item in the users environment language , implementation_dba_data: APPS.GR_ITEM_GENERAL_MSDS_V ,
-
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 ,
-
Table: GR_CALCULATED
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_CALCULATED, object_name:GR_CALCULATED, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the calculated values for attributes, such as heavy elements, lists, and physical properties. , implementation_dba_data: GR.GR_CALCULATED ,
-
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_RIGHT_TO_KNOW
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_RIGHT_TO_KNOW, object_name:GR_ITEM_RIGHT_TO_KNOW, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains product composition information pertinent to each state's reporting level. , implementation_dba_data: GR.GR_ITEM_RIGHT_TO_KNOW ,
-
Table: GR_EMEA
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_EMEA, object_name:GR_EMEA, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Europe and Middle East-specific regulatory information about the item. , implementation_dba_data: GR.GR_EMEA ,
-
Table: GR_PRODUCT_CLASSES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PRODUCT_CLASSES, object_name:GR_PRODUCT_CLASSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the classifications of products with similar requirements or properties, such as solids or acid-based products , implementation_dba_data: GR.GR_PRODUCT_CLASSES ,
-
Table: GR_GENERIC_ITEMS_B
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_GENERIC_ITEMS_B, object_name:GR_GENERIC_ITEMS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the generic MSDS that has been assigned for an item. , implementation_dba_data: GR.GR_GENERIC_ITEMS_B ,
-
Table: GR_GENERIC_ITEMS_B
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_GENERIC_ITEMS_B, object_name:GR_GENERIC_ITEMS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the generic MSDS that has been assigned for an item. , implementation_dba_data: GR.GR_GENERIC_ITEMS_B ,
-
Table: GR_ITEM_PROPERTIES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_PROPERTIES, object_name:GR_ITEM_PROPERTIES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the characteristics of the item such as physical properties, transport, and country-specific information. , implementation_dba_data: GR.GR_ITEM_PROPERTIES ,
-
Table: GR_MULTILINGUAL_NAME_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_MULTILINGUAL_NAME_TL, object_name:GR_MULTILINGUAL_NAME_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Document, Shipping, Trade, and Chemical Family Names for the item, by language. , implementation_dba_data: GR.GR_MULTILINGUAL_NAME_TL ,
-
Table: GR_DISPATCH_HISTORIES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DISPATCH_HISTORIES, object_name:GR_DISPATCH_HISTORIES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains transaction information, such as who received what and when. , implementation_dba_data: GR.GR_DISPATCH_HISTORIES ,
-
Table: GR_PRODUCT_CLASSES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PRODUCT_CLASSES, object_name:GR_PRODUCT_CLASSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the classifications of products with similar requirements or properties, such as solids or acid-based products , implementation_dba_data: GR.GR_PRODUCT_CLASSES ,
-
Table: GR_ITEM_TOXIC
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_TOXIC, object_name:GR_ITEM_TOXIC, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: This entity holds the toxicity information recorded for an item. There can be multiple rows of toxic information for each item. , implementation_dba_data: GR.GR_ITEM_TOXIC ,
-
Table: GR_ITEM_PROPERTIES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_PROPERTIES, object_name:GR_ITEM_PROPERTIES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the characteristics of the item such as physical properties, transport, and country-specific information. , implementation_dba_data: GR.GR_ITEM_PROPERTIES ,
-
View: GR_ITEM_GENERAL_MSDS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_GENERAL_MSDS_V, object_name:GR_ITEM_GENERAL_MSDS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains only the rows that reflect the MSDS name for the item in the users environment language , implementation_dba_data: APPS.GR_ITEM_GENERAL_MSDS_V ,
-
View: GR_ALL_ITEMS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ALL_ITEMS_V, object_name:GR_ALL_ITEMS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of ITEM CODE + DESCRIPTION , implementation_dba_data: APPS.GR_ALL_ITEMS_V ,
-
View: GR_ALL_ITEMS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ALL_ITEMS_V, object_name:GR_ALL_ITEMS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of ITEM CODE + DESCRIPTION , implementation_dba_data: APPS.GR_ALL_ITEMS_V ,
-
Table: GR_DOCUMENT_PRINT
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DOCUMENT_PRINT, object_name:GR_DOCUMENT_PRINT, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains print information for the document by Item Code, Document Code, and Date. , implementation_dba_data: GR.GR_DOCUMENT_PRINT ,
-
Table: GR_DOCUMENT_PRINT
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DOCUMENT_PRINT, object_name:GR_DOCUMENT_PRINT, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains print information for the document by Item Code, Document Code, and Date. , implementation_dba_data: GR.GR_DOCUMENT_PRINT ,
-
Table: GR_ITEM_TOXIC
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_TOXIC, object_name:GR_ITEM_TOXIC, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: This entity holds the toxicity information recorded for an item. There can be multiple rows of toxic information for each item. , implementation_dba_data: GR.GR_ITEM_TOXIC ,
-
Table: GR_OTHER_NAMES_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_OTHER_NAMES_TL, object_name:GR_OTHER_NAMES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: The synonym entity records alternative names for an item by language. They will be sequenced in one of two ways, as determined by the preference SYNONYM STORAGE SEQUENCE. The values for this are 'A' -- Alphabetically, in which case the sequ , implementation_dba_data: GR.GR_OTHER_NAMES_TL ,
-
Table: GR_OTHER_NAMES_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_OTHER_NAMES_TL, object_name:GR_OTHER_NAMES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: The synonym entity records alternative names for an item by language. They will be sequenced in one of two ways, as determined by the preference SYNONYM STORAGE SEQUENCE. The values for this are 'A' -- Alphabetically, in which case the sequ , implementation_dba_data: GR.GR_OTHER_NAMES_TL ,
-
View: GR_ITEM_REPORT_V1
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_ITEM_REPORT_V1, object_name:GR_ITEM_REPORT_V1, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: View of valid Regulatory Items which can be used for Reports. , implementation_dba_data: APPS.GR_ITEM_REPORT_V1 ,
-
Table: GR_ITEM_EXPOSURE
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_EXPOSURE, object_name:GR_ITEM_EXPOSURE, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the exposure limit information for the item listed by country and authority. The exposure limit information shown on a document is controlled in two places, at the country and document levels. At the country level, a country can , implementation_dba_data: GR.GR_ITEM_EXPOSURE ,
-
Table: GR_ITEM_EXPOSURE
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_ITEM_EXPOSURE, object_name:GR_ITEM_EXPOSURE, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the exposure limit information for the item listed by country and authority. The exposure limit information shown on a document is controlled in two places, at the country and document levels. At the country level, a country can , implementation_dba_data: GR.GR_ITEM_EXPOSURE ,