Search Results gr_phrase_group_assoc
Overview
The GR_PHRASE_GROUP_ASSOC table is a core data object within the Oracle E-Business Suite (EBS) Process Manufacturing Regulatory Management (GR) module. It functions as a junction or association table, establishing a many-to-many relationship between phrase groups and the individual regulatory phrases that constitute them. Its primary role is to manage the membership and sequence ordering of phrases within predefined groups, which are essential for constructing compliant regulatory documents, labels, and reports in regulated manufacturing environments such as chemicals, pharmaceuticals, and food.
Key Information Stored
The table's structure is intentionally minimal, designed solely for managing associations. The primary key is a composite of two columns, which also serve as foreign keys to related master tables. The key columns are:
- PHRASE_GROUP_CODE: A foreign key referencing the GR_PHRASE_GROUP_CODES table. This identifies the specific regulatory phrase group to which a phrase belongs.
- PHRASE_CODE: A foreign key referencing the GR_PHRASES_TL table. This identifies the specific regulatory phrase that is a member of the group.
- SEQUENCE_NUMBER: As indicated in the description, this column stores the ordinal position of the phrase within its group. This sequence is critical for ensuring phrases appear in the correct, often legally mandated, order in generated documentation.
Common Use Cases and Queries
This table is central to queries that retrieve all phrases for a given group in the proper sequence for report generation or UI display. A typical use case involves generating a regulatory substance label where hazard statements (PHRASE_CODEs) must be listed in a specific order under a standard heading (PHRASE_GROUP_CODE). A common SQL pattern would be:
SELECT pgc.PHRASE_GROUP_CODE, ptl.PHRASE_TEXT, assoc.SEQUENCE_NUMBER
FROM GR_PHRASE_GROUP_ASSOC assoc,
GR_PHRASE_GROUP_CODES pgc,
GR_PHRASES_TL ptl
WHERE assoc.PHRASE_GROUP_CODE = pgc.PHRASE_GROUP_CODE
AND assoc.PHRASE_CODE = ptl.PHRASE_CODE
AND ptl.LANGUAGE = USERENV('LANG')
AND assoc.PHRASE_GROUP_CODE = :1
ORDER BY assoc.SEQUENCE_NUMBER;
Administrative use cases include maintaining phrase groups through custom interfaces or data loads, where operations involve inserting, updating sequence numbers, or deleting records from this association table.
Related Objects
The GR_PHRASE_GROUP_ASSOC table is a dependent object that sits between two key master tables, enforcing referential integrity through documented foreign key constraints.
- GR_PHRASE_GROUP_CODES: This table defines the valid phrase groups. The association table references it via the foreign key on
GR_PHRASE_GROUP_ASSOC.PHRASE_GROUP_CODE. - GR_PHRASES_TL: This is the translated phrases table containing the actual regulatory text in multiple languages. The association table references it via the foreign key on the composite columns
GR_PHRASE_GROUP_ASSOC.PHRASE_CODEandGR_PHRASE_GROUP_ASSOC.LANGUAGE_CODE.
The primary key constraint GR_PHRASE_GROUP_ASSOC_PK on (PHRASE_GROUP_CODE, PHRASE_CODE) ensures that a single phrase cannot be added to the same group more than once.
-
Table: GR_PHRASE_GROUP_ASSOC
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_ASSOC, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Phrase Group Sequence Number. , implementation_dba_data: GR.GR_PHRASE_GROUP_ASSOC ,
-
Table: GR_PHRASE_GROUP_ASSOC
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_ASSOC, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Phrase Group Sequence Number. , implementation_dba_data: GR.GR_PHRASE_GROUP_ASSOC ,
-
APPS.GR_PHRASE_GROUP_CODES_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.1.1
-
APPS.GR_PHRASE_GROUP_CODES_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.2.2
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.1.1
-
APPS.GR_PHRASES_B_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.1.1
-
APPS.GR_PHRASES_B_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.2.2
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG dependencies on GR_PHRASE_GROUP_ASSOC
12.2.2
-
VIEW: GR.GR_PHRASE_GROUP_ASSOC#
12.2.2
owner:GR, object_type:VIEW, object_name:GR_PHRASE_GROUP_ASSOC#, status:VALID,
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.GR_PHRASE_GROUP_ASSOC
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID,
-
VIEW: GR.GR_PHRASE_GROUP_ASSOC#
12.2.2
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.GR_PHRASE_GROUP_ASSOC
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID,
-
VIEW: APPS.GR_PHRASE_GROUPS_V
12.1.1
-
VIEW: APPS.GR_PHRASE_GROUPS_V
12.2.2
-
TABLE: GR.GR_PHRASE_GROUP_ASSOC
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_ASSOC, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID,
-
TABLE: GR.GR_PHRASE_GROUP_ASSOC
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_ASSOC, object_name:GR_PHRASE_GROUP_ASSOC, status:VALID,
-
Table: GR_PHRASES_TL
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASES_TL, object_name:GR_PHRASES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains information for indexing and the print image. , implementation_dba_data: GR.GR_PHRASES_TL ,
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_CODES_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASE_GROUP_CODES_PKG, status:VALID,
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_CODES_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASE_GROUP_CODES_PKG, status:VALID,
-
Table: GR_PHRASE_GROUP_CODES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_CODES, object_name:GR_PHRASE_GROUP_CODES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Phrase Group Code and Description. , implementation_dba_data: GR.GR_PHRASE_GROUP_CODES ,
-
Table: GR_PHRASE_GROUP_CODES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASE_GROUP_CODES, object_name:GR_PHRASE_GROUP_CODES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the Phrase Group Code and Description. , implementation_dba_data: GR.GR_PHRASE_GROUP_CODES ,
-
Table: GR_PHRASES_TL
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_PHRASES_TL, object_name:GR_PHRASES_TL, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains information for indexing and the print image. , implementation_dba_data: GR.GR_PHRASES_TL ,
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_ASSOC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASE_GROUP_ASSOC_PKG, status:VALID,
-
View: GR_PHRASE_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHRASE_GROUPS_V, object_name:GR_PHRASE_GROUPS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the phrase group code , implementation_dba_data: APPS.GR_PHRASE_GROUPS_V ,
-
View: GR_PHRASE_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHRASE_GROUPS_V, object_name:GR_PHRASE_GROUPS_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the phrase group code , implementation_dba_data: APPS.GR_PHRASE_GROUPS_V ,
-
PACKAGE BODY: APPS.GR_PHRASES_B_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASES_B_PKG, status:VALID,
-
PACKAGE BODY: APPS.GR_PHRASES_B_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASES_B_PKG, status:VALID,
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_ASSOC_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GR_PHRASE_GROUP_ASSOC_PKG, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
VIEW: APPS.GR_PHRASE_GROUPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHRASE_GROUPS_V, object_name:GR_PHRASE_GROUPS_V, status:VALID,
-
12.2.2 DBA Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
VIEW: APPS.GR_PHRASE_GROUPS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_PHRASE_GROUPS_V, object_name:GR_PHRASE_GROUPS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_ASSOC_PKG
12.2.2
-
PACKAGE BODY: APPS.GR_PHRASE_GROUP_ASSOC_PKG
12.1.1
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG dependencies on FND_API
12.1.1
-
APPS.GR_PHRASE_GROUP_ASSOC_PKG dependencies on FND_API
12.2.2
-
APPS.GR_PHRASE_GROUP_CODES_PKG SQL Statements
12.1.1
-
APPS.GR_PHRASE_GROUP_CODES_PKG SQL Statements
12.2.2
-
APPS.GR_PHRASES_B_PKG SQL Statements
12.2.2
-
APPS.GR_PHRASES_B_PKG SQL Statements
12.1.1