Search Results gr_recipient_info
Overview
The GR_RECIPIENT_INFO table is a core data object within the Process Manufacturing Regulatory Management (GR) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It functions as a master repository for storing supplementary, customer-specific information pertaining to recipients of regulatory documents. Its primary role is to centralize recipient details beyond basic address data, enabling comprehensive tracking and management of entities that receive critical compliance communications, such as cover letters, disclosures, and other regulated materials. The table's extensive network of foreign key relationships underscores its integral position in the GR module's data model, linking recipients to specific documents, regions, and dispatch histories.
Key Information Stored
While the specific column list is not detailed in the provided metadata, the foreign key constraints and primary key definition reveal the table's critical data elements. The primary key is RECIPIENT_CODE, which serves as the unique identifier for each recipient record. Essential foreign key columns, which define the recipient's context and associations, include: COVER_LETTER_ID (linking to GR_COVER_LETTERS_B), DOCUMENT_CODE (linking to GR_DOCUMENT_CODES), DISCLOSURE_CODE (linking to GR_DISCLOSURES), REGION_CODE (linking to GR_REGIONS), and TERRITORY_CODE (linking to GR_COUNTRY_PROFILES). These columns indicate that the table stores recipient information specific to document types, regulatory disclosures, and geographical jurisdictions, fulfilling its purpose of holding "additional customer specific information."
Common Use Cases and Queries
This table is pivotal for regulatory reporting, audit trails, and ensuring accurate document distribution. Common operational scenarios include generating recipient lists for a specific regulatory disclosure, auditing all documents sent to a particular recipient, and managing region-specific recipient profiles. A typical query might involve joining with related tables to retrieve a comprehensive recipient profile. For example:
- Identifying all recipients for a specific document code:
SELECT ri.* FROM gr_recipient_info ri WHERE ri.document_code = :p_doc_code; - Generating a dispatch history report for a recipient:
SELECT ri.recipient_code, dh.* FROM gr_recipient_info ri, gr_dispatch_histories dh WHERE ri.recipient_code = dh.recipient_code; - Linking recipient details with their associated addresses:
SELECT ri.recipient_code, ra.address FROM gr_recipient_info ri, gr_recipient_addresses ra WHERE ri.recipient_code = ra.recipient_code;
Related Objects
The GR_RECIPIENT_INFO table is a central hub with numerous dependencies, as evidenced by its foreign key relationships. Key related objects include:
- Parent/Reference Tables: GR_COVER_LETTERS_B, GR_DOCUMENT_CODES, GR_DISCLOSURES, GR_REGIONS, GR_COUNTRY_PROFILES. These tables provide valid codes and master data for the foreign key columns in GR_RECIPIENT_INFO.
- Child/Dependent Tables: GR_DISPATCH_HISTORIES, GR_RECIPIENT_ADDRESSES, GR_RECIPIENT_DOCUMENTS. These tables use the RECIPIENT_CODE as a foreign key to log dispatch events, store physical addresses, and track document associations for each recipient.
- The primary key constraint GR_RECIPIENT_INFO_PK enforces uniqueness on the RECIPIENT_CODE column, ensuring data integrity across these relationships.
-
Table: GR_RECIPIENT_INFO
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_INFO, object_name:GR_RECIPIENT_INFO, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains additional customer specific information. , implementation_dba_data: GR.GR_RECIPIENT_INFO ,
-
Table: GR_RECIPIENT_INFO
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_INFO, object_name:GR_RECIPIENT_INFO, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains additional customer specific information. , implementation_dba_data: GR.GR_RECIPIENT_INFO ,
-
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_RECIPIENT_ADDRESSES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_ADDRESSES, object_name:GR_RECIPIENT_ADDRESSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains multiple address information for the customer. , implementation_dba_data: GR.GR_RECIPIENT_ADDRESSES ,
-
Table: GR_COVER_LETTERS_B
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_COVER_LETTERS_B, object_name:GR_COVER_LETTERS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: The base table for the cover letter for the recipient and the default cover letter for the Organization table. , implementation_dba_data: GR.GR_COVER_LETTERS_B ,
-
Table: GR_RECIPIENT_ADDRESSES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_ADDRESSES, object_name:GR_RECIPIENT_ADDRESSES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains multiple address information for the customer. , implementation_dba_data: GR.GR_RECIPIENT_ADDRESSES ,
-
Table: GR_REGIONS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_REGIONS, object_name:GR_REGIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the region code and its description. Each record represents a geographic region. , implementation_dba_data: GR.GR_REGIONS ,
-
Table: GR_REGIONS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_REGIONS, object_name:GR_REGIONS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Stores the region code and its description. Each record represents a geographic region. , implementation_dba_data: GR.GR_REGIONS ,
-
Table: GR_DISCLOSURES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DISCLOSURES, object_name:GR_DISCLOSURES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Disclosure information and Minimum, Text, Label, Exposure, and Toxicity Reporting Levels for an ingredient. , implementation_dba_data: GR.GR_DISCLOSURES ,
-
Table: GR_COUNTRY_PROFILES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_COUNTRY_PROFILES, object_name:GR_COUNTRY_PROFILES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Country Codes and Descriptions that can be linked to a customer so that documents display or print in the appropriate country's format. , implementation_dba_data: GR.GR_COUNTRY_PROFILES ,
-
Table: GR_COUNTRY_PROFILES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_COUNTRY_PROFILES, object_name:GR_COUNTRY_PROFILES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Country Codes and Descriptions that can be linked to a customer so that documents display or print in the appropriate country's format. , implementation_dba_data: GR.GR_COUNTRY_PROFILES ,
-
Table: GR_COVER_LETTERS_B
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_COVER_LETTERS_B, object_name:GR_COVER_LETTERS_B, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: The base table for the cover letter for the recipient and the default cover letter for the Organization table. , implementation_dba_data: GR.GR_COVER_LETTERS_B ,
-
Table: GR_RECIPIENT_DOCUMENTS
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_DOCUMENTS, object_name:GR_RECIPIENT_DOCUMENTS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: This entity will only be populated if the ADDITIONAL DOCUMENTFLAG on the customer entity is set to 'Y'. It allows the user to specifythe printing of additional documents with the primary document. Anexample of this might be the primary doc , implementation_dba_data: GR.GR_RECIPIENT_DOCUMENTS ,
-
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_DOCUMENT_CODES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DOCUMENT_CODES, object_name:GR_DOCUMENT_CODES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the date format and determines whether detailed ingredient, toxic, and exposure information displays or prints on the document. Also allows customization of the appearance of the detailed elements. , implementation_dba_data: GR.GR_DOCUMENT_CODES ,
-
Table: GR_DISCLOSURES
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DISCLOSURES, object_name:GR_DISCLOSURES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains Disclosure information and Minimum, Text, Label, Exposure, and Toxicity Reporting Levels for an ingredient. , implementation_dba_data: GR.GR_DISCLOSURES ,
-
Table: GR_DOCUMENT_CODES
12.1.1
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_DOCUMENT_CODES, object_name:GR_DOCUMENT_CODES, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the date format and determines whether detailed ingredient, toxic, and exposure information displays or prints on the document. Also allows customization of the appearance of the detailed elements. , implementation_dba_data: GR.GR_DOCUMENT_CODES ,
-
Table: GR_RECIPIENT_DOCUMENTS
12.2.2
owner:GR, object_type:TABLE, fnd_design_data:GR.GR_RECIPIENT_DOCUMENTS, object_name:GR_RECIPIENT_DOCUMENTS, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: This entity will only be populated if the ADDITIONAL DOCUMENTFLAG on the customer entity is set to 'Y'. It allows the user to specifythe printing of additional documents with the primary document. Anexample of this might be the primary doc , implementation_dba_data: GR.GR_RECIPIENT_DOCUMENTS ,
-
View: GR_RECIPIENT_INFO_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_RECIPIENT_INFO_V, object_name:GR_RECIPIENT_INFO_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the recipients information table , implementation_dba_data: APPS.GR_RECIPIENT_INFO_V ,
-
View: GR_RECIPIENT_INFO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GR.GR_RECIPIENT_INFO_V, object_name:GR_RECIPIENT_INFO_V, status:VALID, product: GR - Process Manufacturing Regulatory Management , description: Contains the rows for the recipients information table , implementation_dba_data: APPS.GR_RECIPIENT_INFO_V ,