Search Results gr_risk_calculations
Overview
The GR_RISK_CALCULATIONS table is a core data structure within the Process Manufacturing Regulatory Management (GR) module of Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2. It functions as a critical junction table, establishing and maintaining the logical associations between regulatory Risk Phrases and specific hazard calculation methodologies. Its primary role is to support the automated determination of a material's regulatory classification by flagging which carcinogenic, health, and toxicity calculations are relevant to a given risk phrase. This enables the system to apply complex regulatory rules for compliance reporting and safety data sheet (SDS) generation.
Key Information Stored
The table's structure is defined by a composite primary key, ensuring a unique link between a risk phrase and a calculation. The key columns are RISK_PHRASE_CODE, which stores the identifier for a specific regulatory risk statement (e.g., R45, "May cause cancer"), and CALCULATION_NAME_ID, which stores the identifier for a defined hazard calculation algorithm. While the provided metadata emphasizes these relationship keys, the table's description indicates it contains "flags" that associate classifications. This implies the presence of additional attribute columns (not detailed in the excerpt) that likely act as Boolean indicators or modifiers to specify the exact nature of the association between the calculation and the risk phrase, such as for carcinogenic, acute toxicity, or chronic health hazard classifications.
Common Use Cases and Queries
This table is central to regulatory compliance workflows. A primary use case is the batch evaluation of product formulations, where the system queries this table to identify all applicable risk calculations for the ingredients present, thereby aggregating the total product hazard profile. For reporting and troubleshooting, common queries involve joining to related master tables. For example, to list all calculation methods linked to a specific risk phrase, one might use:
SELECT rp.RISK_PHRASE_CODE, cn.CALCULATION_NAME
Conversely, to find all risk phrases triggered by a particular calculation, the join conditions would be reversed. Data maintenance typically occurs through the application's dedicated screens, not via direct SQL manipulation.
FROM GR_RISK_CALCULATIONS rc
JOIN GR_RISK_PHRASES_B rp ON rc.RISK_PHRASE_CODE = rp.RISK_PHRASE_CODE
JOIN GR_CALCULATION_NAMES cn ON rc.CALCULATION_NAME_ID = cn.CALCULATION_NAME_ID
WHERE rc.RISK_PHRASE_CODE = 'R45';
Related Objects
The GR_RISK_CALCULATIONS table sits at the intersection of several key regulatory entities, as defined by its foreign key relationships:
- References To (Parent Tables):
- GR_RISK_PHRASES_B: Via the RISK_PHRASE_CODE column. This is the master table for standard regulatory risk phrases.
- GR_CALCULATION_NAMES: Via the CALCULATION_NAME_ID column. This table defines the available hazard calculation algorithms.
- Referenced By (Child Table):
- GR_LINKED_RISKS: This table references both the RISK_PHRASE_CODE and CALCULATION_NAME_ID columns of GR_RISK_CALCULATIONS, forming a deeper hierarchy for managing complex, linked risk assessments.
-
Table: GR_RISK_CALCULATIONS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RISK_CALCULATIONS, object_name:GR_RISK_CALCULATIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the flags that associate carcinogenic, health, and toxicity classifications with Risk Phrases. , implementation_dba_data: GR.GR_RISK_CALCULATIONS ,
-
Table: GR_RISK_CALCULATIONS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RISK_CALCULATIONS, object_name:GR_RISK_CALCULATIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the flags that associate carcinogenic, health, and toxicity classifications with Risk Phrases. , implementation_dba_data: GR.GR_RISK_CALCULATIONS ,
-
Table: GR_CALCULATION_NAMES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_CALCULATION_NAMES, object_name:GR_CALCULATION_NAMES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Calculation Names that control the calculation routines for Risk Phrases. , implementation_dba_data: GR.GR_CALCULATION_NAMES ,
-
Table: GR_LINKED_RISKS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_LINKED_RISKS, object_name:GR_LINKED_RISKS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains additional Risk Phrase Codes for European environmental class hazards that are linked to the first Risk Phrase Code. , implementation_dba_data: GR.GR_LINKED_RISKS ,
-
Table: GR_LINKED_RISKS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_LINKED_RISKS, object_name:GR_LINKED_RISKS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains additional Risk Phrase Codes for European environmental class hazards that are linked to the first Risk Phrase Code. , implementation_dba_data: GR.GR_LINKED_RISKS ,
-
Table: GR_CALCULATION_NAMES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_CALCULATION_NAMES, object_name:GR_CALCULATION_NAMES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Calculation Names that control the calculation routines for Risk Phrases. , implementation_dba_data: GR.GR_CALCULATION_NAMES ,
-
Table: GR_RISK_PHRASES_B
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RISK_PHRASES_B, object_name:GR_RISK_PHRASES_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the code and name of acceptable phrases in multiple languages. , implementation_dba_data: GR.GR_RISK_PHRASES_B ,
-
Table: GR_RISK_PHRASES_B
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RISK_PHRASES_B, object_name:GR_RISK_PHRASES_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the code and name of acceptable phrases in multiple languages. , implementation_dba_data: GR.GR_RISK_PHRASES_B ,