Search Results performing_organization_id
Overview
IGW_PROP_LOCATIONS_V is a seeded Oracle E-Business Suite view owned by the APPS schema, defined under the FND design data product IGW (Grants Management). It carries a VALID status in both 12.1.1 and 12.2.2 and is documented in the ETRM repository as an inquiry-only reporting and integration object. The view presents the performing-location details recorded against a grant or proposal, joining proposal location rows to human-resources organization and location definitions.
Its practical role is to expose the performing organization of a proposal — the institution, department, or unit that carries out the funded work — alongside its descriptive name and formatted address. Because the view resolves the organization identifier through HR organization units and HR locations, report writers and interface developers can obtain presentation-ready organization names and addresses without writing the multi-table HR joins themselves. The performing_organization_id column is the primary key through which downstream objects, concurrent programs, and custom reports link a proposal to its performing organization.
Underlying Base Objects
The documented dependency list identifies the following base objects:
- APPS.IGW_PROP_LOCATIONS — the transactional table holding proposal location rows; supplies PROPOSAL_ID, PERFORMING_ORGANIZATION_ID, and the WHO columns.
- APPS.HR_ORGANIZATION_UNITS — supplies the organization unit definition that PERFORMING_ORGANIZATION_ID references.
- APPS.HR_LOCATIONS — supplies the location record used to build the formatted address.
- APPS.HR_GENERAL — the HR general utility package used to derive the concatenated organization name and address.
- APPS.HR_SECURITY — the HR security package, referenced for the organization security predicate so that only organizations visible to the querying responsibility are returned.
IGW_PROP_LOCATIONS_V is a read-only view and, per the metadata, is not referenced by any other database object. It therefore functions strictly as a reporting and integration surface over the IGW and HR base tables.
Key Columns
- ROW_ID (ROWID) — pseudo-column identifying the underlying IGW_PROP_LOCATIONS row.
- PROPOSAL_ID (NUMBER 15) — the proposal or award to which the performing location belongs.
- PERFORMING_ORGANIZATION_ID (NUMBER 15) — the organization unit identifier of the performing organization; the column most often used in report parameters and joins.
- PERFORMING_ORG_NAME (VARCHAR2 240) — the resolved, display-ready organization name.
- PERFORMING_ORG_ADDRESS (VARCHAR2 905) — the formatted address assembled from HR locations.
- LAST_UPDATE_DATE, LAST_UPDATED_BY, CREATION_DATE, CREATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns inherited from the base table.
Common Use Cases and Queries
The view supports proposal and award listings that must show where work will be performed, grants reporting by organization, and extracts that feed downstream systems with organization identifiers and addresses. Because HR security is applied, results are automatically filtered to the organizations accessible to the current responsibility.
SELECT p.proposal_id
, p.performing_organization_id
, p.performing_org_name
, p.performing_org_address
FROM apps.igw_prop_locations_v p
WHERE p.proposal_id = :p_proposal_id;
A second common pattern retrieves all performing locations associated with a given organization, typically for roll-up reporting by department:
SELECT proposal_id
, performing_org_name
FROM apps.igw_prop_locations_v
WHERE performing_organization_id = :p_org_id
ORDER BY proposal_id;
Note that PERFORMING_ORG_NAME and PERFORMING_ORG_ADDRESS depend on HR organization and location data being correctly maintained; missing or end-dated HR records produce null descriptions. Queries should always qualify the view with APPS and rely on the view rather than the base table when display values are required.
-
APPS.IGW_PROP_LOCATIONS_TBH SQL Statements
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG SQL Statements
12.1.1
-
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,
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGW_PROP_LOCATIONS_TBH
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,
-
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 ,
-
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,
-
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 ,
-
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 ,
-
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 ,
-
APPS.IGW_VIEW_PARAMETERS SQL Statements
12.1.1
-
APPS.IGW_PROP SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGW_VIEW_PARAMETERS
12.1.1
-
PACKAGE BODY: APPS.IGW_PROP
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP dependencies on IGW_PROP_LOCATIONS_S
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGW_VIEW_PARAMETERS dependencies on IGW_PROP_LOCATIONS
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on APP_EXCEPTION
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on FND_API
12.1.1
-
APPS.IGW_PROP_LOCATIONS_TBH dependencies on IGW_PROP_LOCATIONS_S
12.1.1
-
APPS.IGW_PROP_LOCATIONS_PKG dependencies on FND_MESSAGE
12.1.1
-
APPS.IGW_PROP dependencies on IGW_PROP
12.1.1
-
APPS.IGW_PROP dependencies on FND_GLOBAL
12.1.1
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,
-
eTRM - IGW Tables and Views
12.1.1
description: Information on proposal subjects ,