Search Results igw_prop_locations
Overview
IGW_PROP_LOCATIONS is a table within the Oracle E-Business Suite Grants Proposal (IGW) module, a component historically associated with Oracle Grants Management and the pursuit of sponsored research funding. The table is documented as obsolete in Oracle EBS 12.1.1 and 12.2.2, and the ETRM metadata explicitly records "Not implemented in this database." Its documented business description is "Sites where proposal activity is conducted," meaning it was intended to record the physical or organizational locations tied to a given grant proposal — for example, the performing organization's facility, field site, or geographic point at which sponsored activity would take place.
From a data modeling perspective, the ETRM metadata supplies a heuristic Data Vault classification of link. This is a modeling suggestion rather than an Oracle-imposed designation: the table sits at the intersection of two parent entities, connecting proposals to organizations, and therefore behaves like a relationship (link) structure rather than a descriptive hub or satellite. The classification is mined from the foreign key topology, in which IGW_PROP_LOCATIONS.PROPOSAL_ID references IGW_PROPOSALS_ALL and IGW_PROP_LOCATIONS.PERFORMING_ORGANIZATION_ID references HR_ALL_ORGANIZATION_UNITS.
Key Information Stored
The documented physical schema (ETRM 12.1.1) lists the table owner as IGW with 19 columns. The composite primary key, IGW_PROP_LOCATIONS_PK, is defined on two columns:
- PROPOSAL_ID — the proposal to which the location record belongs; foreign key to IGW_PROPOSALS_ALL.
- PERFORMING_ORGANIZATION_ID — the organization performing the proposed work at that site; foreign key to HR_ALL_ORGANIZATION_UNITS.
In addition to the composite key, the table carries a surrogate attribute, PROP_LOCATION_ID, which is backed by the unique index IGW_PROP_LOCATIONS_U1 and is therefore a documented business-key candidate. Other attributes of interest include PARTY_ID and LOCATION_TYPE_CODE, which classify and identify the site; GEOGRAPHIC_LOCATION, LATITUDE, LONGITUDE, and CONGRESSIONAL_DISTRICT, which capture the geography of the site; and MILEAGE_MARKER_BEGIN, MILEAGE_MARKER_END, and RAILWAY_OWNER, which suggest a linear-referencing model typical of transportation or right-of-way project sites. ADDITIONAL_INFORMATION provides a free-text extension, while the standard WHO columns — CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — supply audit lineage, and RECORD_VERSION_NUMBER supports optimistic locking.
Common Use Cases and Queries
Because the object is obsolete and not implemented in current databases, its practical relevance is mainly historical reporting, data migration, and schema archaeology during upgrades from earlier IGW releases. A typical query joins the table to its two parents to reconstruct the site list for a proposal:
- Enumerating all sites for a proposal:
SELECT l.PROP_LOCATION_ID, l.LOCATION_TYPE_CODE, l.LATITUDE, l.LONGITUDE FROM IGW_PROP_LOCATIONS l WHERE l.PROPOSAL_ID = :proposal_id; - Resolving the performing organization name: join PERFORMING_ORGANIZATION_ID to HR_ALL_ORGANIZATION_UNITS to obtain the organization name for reporting.
- Geographic reporting: aggregate sites by CONGRESSIONAL_DISTRICT or plot LATITUDE/LONGITUDE for mapping.
- Migration extraction: select by PROP_LOCATION_ID, the unique business-key candidate, to reconcile records against a replacement structure.
Reports should expect no rows in 12.1.1 or 12.2.2 production instances and should treat any data as legacy.
Related Objects
- IGW_PROPOSALS_ALL — parent entity; joined on IGW_PROP_LOCATIONS.PROPOSAL_ID = IGW_PROPOSALS_ALL.PROPOSAL_ID.
- HR_ALL_ORGANIZATION_UNITS — parent entity for the performing organization; joined on IGW_PROP_LOCATIONS.PERFORMING_ORGANIZATION_ID = HR_ALL_ORGANIZATION_UNITS.ORGANIZATION_ID.
- IGW_PROP_LOCATIONS_PK — composite primary key constraint (PROPOSAL_ID, PERFORMING_ORGANIZATION_ID).
- IGW_PROP_LOCATIONS_U1 — unique index on PROP_LOCATION_ID, the business-key candidate for record identification.
- Other IGW proposal child tables (for example, proposal personnel and budget objects) share the PROPOSAL_ID lineage and are commonly queried alongside this table in legacy Grants Proposal extractions.
-
Table: IGW_PROP_LOCATIONS
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Sites where proposal activity is conducted , implementation_dba_data: Not implemented in this database ,
-
Table: IGW_PROP_LOCATIONS
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_PROP_LOCATIONS, object_name:IGW_PROP_LOCATIONS, status:VALID, product: IGW - Grants Proposal , description: Sites where proposal activity is conducted , implementation_dba_data: IGW.IGW_PROP_LOCATIONS ,
-
APPS.IGW_PROP_LOCATIONS_TBH SQL Statements
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGW_PRPO_PERF_SITES_V
12.1.1
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_PKG
12.1.1
-
VIEW: APPS.IGW_PROP_LOCATIONS_V
12.1.1
-
TABLE: IGW.IGW_PROP_LOCATIONS
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_PROP_LOCATIONS, object_name:IGW_PROP_LOCATIONS, status:VALID,
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_TBH
12.1.1
-
SYNONYM: APPS.IGW_PROP_LOCATIONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGW_PROP_LOCATIONS, status:VALID,
-
APPS.IGW_PARTY_MERGE_PUB SQL Statements
12.1.1
-
View: IGW_PRPO_PERF_SITES_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View displays performing sites where the proposal activity is conducted , implementation_dba_data: Not implemented in this database ,
-
View: IGW_PRPO_PERF_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_PERF_SITES_V, object_name:IGW_PRPO_PERF_SITES_V, status:VALID, product: IGW - Grants Proposal , description: View displays performing sites where the proposal activity is conducted , implementation_dba_data: APPS.IGW_PRPO_PERF_SITES_V ,
-
View: IGW_PROP_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PROP_LOCATIONS_V, object_name:IGW_PROP_LOCATIONS_V, status:VALID, product: IGW - Grants Proposal , description: 10SC Only , implementation_dba_data: APPS.IGW_PROP_LOCATIONS_V ,
-
View: IGW_PROP_LOCATIONS_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: 10SC Only , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_TBH
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_PROP_LOCATIONS_TBH, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
PACKAGE BODY: APPS.IGW_VIEW_PARAMETERS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_VIEW_PARAMETERS, status:VALID,
-
Table: IGW_PROPOSALS_ALL
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: Core information about proposals , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_PROP_LOCATIONS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGW_PROP
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_PROP, status:VALID,
-
12.2.2 FND Design Data
12.2.2
-
Table: IGW_PROPOSALS_ALL
12.1.1
owner:IGW, object_type:TABLE, fnd_design_data:IGW.IGW_PROPOSALS_ALL, object_name:IGW_PROPOSALS_ALL, status:VALID, product: IGW - Grants Proposal , description: Core information about proposals , implementation_dba_data: IGW.IGW_PROPOSALS_ALL ,
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
PACKAGE BODY: APPS.IGW_PARTY_MERGE_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGW_PARTY_MERGE_PUB, status:VALID,
-
VIEW: APPS.IGW_PROP_LOCATIONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PROP_LOCATIONS_V, object_name:IGW_PROP_LOCATIONS_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
VIEW: APPS.IGW_PRPO_PERF_SITES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PRPO_PERF_SITES_V, object_name:IGW_PRPO_PERF_SITES_V, status:VALID,
-
PACKAGE BODY: APPS.HZ_PURGE_GEN
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:HZ_PURGE_GEN, status:VALID,
-
APPS.IGW_VIEW_PARAMETERS SQL Statements
12.1.1
-
APPS.IGW_PROP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGW_PARTY_MERGE_PUB
12.1.1
-
PACKAGE BODY: APPS.IGW_VIEW_PARAMETERS
12.1.1
-
APPS.IGW_PROP dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_VIEW_PARAMETERS dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PARTY_MERGE_PUB dependencies on IGW_PROP_LOCATIONS
12.1.1
-
PACKAGE BODY: APPS.IGW_PROP
12.1.1
-
Table: HR_ALL_ORGANIZATION_UNITS
12.1.1
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
Table: HR_ALL_ORGANIZATION_UNITS
12.2.2
owner:HR, object_type:TABLE, fnd_design_data:AS.HR_ALL_ORGANIZATION_UNITS PER.HR_ALL_ORGANIZATION_UNITS, object_name:HR_ALL_ORGANIZATION_UNITS, status:VALID, product: PER - Human Resources , description: Organization unit definitions. , implementation_dba_data: HR.HR_ALL_ORGANIZATION_UNITS ,
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on IGW_PROP_LOCATIONS_S
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on FND_MESSAGE
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.HZ_PURGE_GEN dependencies on IGW_PERSON_DEGREES
12.1.1