Results for “parent_proposal_id”

3 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The IGW_PROPOSALS_ALL table is the central transactional repository within the Oracle E-Business Suite Grants Proposal (IGW) module. It stores the core information about grant proposals submitted by an organization, serving as the primary anchor point for the entire proposal lifecycle — from creation and internal routing through sponsor submission and eventual award conversion. In Oracle EBS 12.1.1 and 12.2.2, the table is owned by the IGW schema and is classified as VALID in the data dictionary. Its documented physical schema under ETRM 12.1.1 comprises 83 columns.

From a dimensional modeling perspective, a heuristic Data Vault classification of this object is hub. This reflects its role as a business-key-bearing entity whose surrogate primary key (PROPOSAL_ID) is broadcast outward as a foreign key to a large family of dependent detail tables. Rather than storing descriptive context itself, the table anchors identity and state, with satellites representing abstracts, budgets, narratives, persons, and locations.

Key Information Stored

The primary key is the surrogate PROPOSAL_ID, enforced by the IGW_PROPOSALS_PK constraint. Two documented unique indexes identify business-key candidates: IGW_PROPOSALS_ALL_U1 (PROPOSAL_ID) and IGW_PROPOSALS_ALL_U2 (PROPOSAL_NUMBER), making PROPOSAL_NUMBER the natural business key most commonly exposed to end users.

Standard WHO audit columns (CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN) and the 15 ATTRIBUTE flex columns are also present.

Common Use Cases and Queries

Typical reporting retrieves active proposals by organization and deadline. For example:

  • SELECT PROPOSAL_NUMBER, PROPOSAL_TITLE, PROPOSAL_STATUS, DEADLINE_DATE FROM IGW_PROPOSALS_ALL WHERE ORG_ID = :p_org AND PROPOSAL_STATUS = 'SUBMITTED' ORDER BY DEADLINE_DATE;
  • Joining IGW_PROP_PERSONS on PROPOSAL_ID to list principal investigators, and IGW_BUDGETS on PROPOSAL_ID to reconcile TOTAL_AMOUNT against budget lines.
  • Aggregating funded totals by SUBMITTING_ORGANIZATION_ID for institutional dashboards.
  • Tracking deadline compliance via DEADLINE_DATE versus SPONSOR_ACTION_DATE.

Related Objects

The table is a hub referenced by numerous satellites, all joined on PROPOSAL_ID: