Search Results gms_awards_contacts
Overview
GMS_AWARDS_CONTACTS is a table in the GMS (Grants Accounting) schema within Oracle E-Business Suite, holding the association between awards and the contacts (individuals or parties) tied to them. In the EBS 12.1.1 and 12.2.2 data models, the GMS schema underpins the Grants Accounting module, and this table serves as the junction that records which contacts are attached to a sponsored award and in what capacity. Its metadata description is "Contacts of award," confirming its role as a subordinate child of the award entity.
The mined Data Vault classification for this object is standalone. In data-vault modeling terms, this suggests the table is neither a pure hub nor a conventional satellite in the mined graph; it behaves as a self-contained association table anchored to the award. Rather than treating it as an independent hub, modelers should view it as a dependent link-like construct that resolves the many-to-many relationship between awards and contacts, carrying descriptive attributes (such as the primary flag and usage code) directly on the relationship.
Key Information Stored
The table contains 10 documented columns. The most significant are:
- AWARD_ID — foreign key to IGF_AW_AWARD_ALL, identifying the parent award. This is the required FK anchor for the relationship.
- CONTACT_ID — identifies the person or party acting as the award contact.
- CUSTOMER_ID — references the customer/party record associated with the contact for the award.
- USAGE_CODE — categorizes how the contact is used for the award (the role or capacity of the contact).
- PRIMARY_FLAG — indicates whether the contact is the primary contact for that award and usage.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard EBS WHO columns providing audit and concurrency context.
The unique index GMS_AWARDS_CONTACTS_U1 is defined on (AWARD_ID, CONTACT_ID, CUSTOMER_ID, USAGE_CODE), which serves as the business-key candidate. This composite key enforces that a given contact-party pair can appear only once per usage code for an award. There is no separate standalone surrogate primary key documented beyond the uniqueness constraint on this composite.
Common Use Cases and Queries
The most common reporting need is to list contacts for a given award, often filtered by usage code or primary flag. A straightforward join pattern is:
SELECT c.contact_id, c.customer_id, c.usage_code, c.primary_flag FROM gms_awards_contacts c WHERE c.award_id = :award_id;- To retrieve only the primary contact per award usage:
... WHERE c.primary_flag = 'Y' AND c.usage_code = :usage; - To resolve the parent award details, join to IGF_AW_AWARD_ALL on
c.award_id = a.award_id.
Typical scenarios include generating award contact lists for correspondence, validating that each award has at least one primary contact per usage, and feeding downstream notifications or workflow routing. Because the unique key is on the composite of award, contact, customer, and usage, integrity checks that detect duplicate or missing contacts are naturally expressed with GROUP BY over those columns.
Related Objects
The FK relationship from GMS_AWARDS_CONTACTS.AWARD_ID to IGF_AW_AWARD_ALL is the central dependency. The award header in IGF_AW_AWARD_ALL is the master entity against which all contact rows are validated. Contact and customer identifiers typically resolve against the Trading Community Architecture (TCA) party/customer model, so joins to HZ_PARTIES or HZ_CUST_ACCOUNTS are common when contact names and addresses are required. The usage code is usually validated against a GMS lookup, and the primary flag drives presentation logic in the Grants Accounting award forms and concurrent programs. Reporting views and DBI (Daily Business Intelligence) extracts for Grants Accounting frequently read this table alongside award, funding, and budget tables to produce sponsor and contact summaries.
-
Table: GMS_AWARDS_CONTACTS
12.1.1
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_AWARDS_CONTACTS, object_name:GMS_AWARDS_CONTACTS, status:VALID, product: GMS - Grants Accounting , description: Contacts of award , implementation_dba_data: GMS.GMS_AWARDS_CONTACTS ,
-
Table: GMS_AWARDS_CONTACTS
12.2.2
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_AWARDS_CONTACTS, object_name:GMS_AWARDS_CONTACTS, status:VALID, product: GMS - Grants Accounting , description: Contacts of award , implementation_dba_data: GMS.GMS_AWARDS_CONTACTS ,
-
APPS.GMS_AWARDS_CONTACTS_PKG SQL Statements
12.1.1
-
VIEW: GMS.GMS_AWARDS_CONTACTS#
12.2.2
owner:GMS, object_type:VIEW, object_name:GMS_AWARDS_CONTACTS#, status:VALID,
-
APPS.GMS_AWARDS_CONTACTS_PKG SQL Statements
12.2.2
-
SYNONYM: APPS.GMS_AWARDS_CONTACTS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:GMS_AWARDS_CONTACTS, status:VALID,
-
TABLE: GMS.GMS_AWARDS_CONTACTS
12.2.2
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_AWARDS_CONTACTS, object_name:GMS_AWARDS_CONTACTS, status:VALID,
-
PACKAGE BODY: APPS.GMS_AWARDS_CONTACTS_PKG
12.2.2
-
VIEW: GMS.GMS_AWARDS_CONTACTS#
12.2.2
-
TABLE: GMS.GMS_AWARDS_CONTACTS
12.1.1
owner:GMS, object_type:TABLE, fnd_design_data:GMS.GMS_AWARDS_CONTACTS, object_name:GMS_AWARDS_CONTACTS, status:VALID,
-
SYNONYM: APPS.GMS_AWARDS_CONTACTS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:GMS_AWARDS_CONTACTS, status:VALID,
-
VIEW: APPS.GMS_CONTACTS_V
12.1.1
-
PACKAGE BODY: APPS.GMS_AWARDS_CONTACTS_PKG
12.1.1
-
APPS.GMS_CMERGE SQL Statements
12.1.1
-
PACKAGE: APPS.GMS_AWARD_PVT
12.2.2
owner:APPS, object_type:PACKAGE, object_name:GMS_AWARD_PVT, status:VALID,
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.1.1
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.2.2
-
PACKAGE BODY: APPS.GMS_AWARDS_CONTACTS_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARDS_CONTACTS_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMS_AWARDS_CONTACTS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARDS_CONTACTS_PKG, status:VALID,
-
APPS.GMS_CMERGE SQL Statements
12.2.2
-
VIEW: APPS.GMS_CONTACTS_V
12.2.2
-
PACKAGE: APPS.GMS_AWARD_PVT
12.1.1
owner:APPS, object_type:PACKAGE, object_name:GMS_AWARD_PVT, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
PACKAGE BODY: APPS.GMS_AWARD_DELETE_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_DELETE_PKG, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.GMS_CMERGE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_CMERGE, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
12.2.2 DBA Data
12.2.2
-
View: GMS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_CONTACTS_V ,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.GMS_CMERGE
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_CMERGE, status:VALID,
-
PACKAGE BODY: APPS.GMS_AWARD_DELETE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_DELETE_PKG, status:VALID,
-
PACKAGE BODY: APPS.GMS_MULTI_FUNDING
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_MULTI_FUNDING, status:VALID,
-
View: GMS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_CONTACTS_V ,
-
View: GMS_LOC_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_LOC_CONTACTS_V ,
-
View: GMS_LOC_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID, product: GMS - Grants Accounting , implementation_dba_data: APPS.GMS_LOC_CONTACTS_V ,
-
PACKAGE BODY: APPS.GMS_MULTI_FUNDING
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_MULTI_FUNDING, status:VALID,
-
PACKAGE BODY: APPS.GMS_AWARD_PVT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_PVT, status:VALID,
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID,
-
VIEW: APPS.GMS_LOC_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_LOC_CONTACTS_V, object_name:GMS_LOC_CONTACTS_V, status:VALID,
-
VIEW: APPS.GMS_CONTACTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID,
-
VIEW: APPS.GMS_CONTACTS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:GMS.GMS_CONTACTS_V, object_name:GMS_CONTACTS_V, status:VALID,
-
PACKAGE BODY: APPS.GMS_AWARD_PVT
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:GMS_AWARD_PVT, status:VALID,
-
PACKAGE BODY: APPS.GMS_CMERGE
12.2.2
-
PACKAGE BODY: APPS.GMS_CMERGE
12.1.1