Search Results igw_pi_v
Overview
IGW_PI_V is a reporting view within the Oracle E-Business Suite Grants Proposal (IGW) module, a product designation now marked Obsolete in the ETRM repository. The view presents the details of the Principal Investigator (PI) associated with a proposal — that is, the Proposal Manager or lead investigator recorded on a grant or contract proposal. The view name reflects this purpose: "IGW" denotes the Grants Proposal application, and "PI" denotes Principal Investigator.
Its role is purely presentational: it consolidates person, proposal, assignment, location, and lookup data into a single denormalized row per PI/proposal combination, allowing Grants Proposal reports and concurrent programs to retrieve formatted investigator information — including composite name strings, job title, academic degrees, and contact details — without embedding complex joins in each report.
The ETRM entry records that the view is not implemented in the reference database and that no base objects are documented in the 12.2.2 metadata, although the view text itself fully describes the underlying tables. The view applies to Oracle EBS releases 12.1.1 and 12.2.2, in which the IGW product family remains present but deprecated.
Underlying Base Objects
The view text identifies the following base objects:
- IGW_PROPOSALS_ALL — the core proposal entity, supplying PROPOSAL_ID, PROPOSAL_NUMBER, LEAD_ORGANIZATION_ID, PROPOSAL_TYPE_CODE, ORIGINAL_PROPOSAL_NUMBER, and AWARD_NUMBER.
- IGW_PROP_PERSONS — the association table linking persons to proposals; the PI_FLAG = 'Y' predicate restricts rows to the principal investigator.
- PER_PEOPLE_X — the HR person denormalized view supplying name components, demographic fields, email, and person identifiers.
- PER_ASSIGNMENTS_X — outer-joined via PERSON_ID with PRIMARY_FLAG = 'Y' to obtain the person's primary assignment and its location.
- HR_LOCATIONS — outer-joined through ASG.LOCATION_ID to supply address, region, and postal information.
- HR_LOOKUPS — outer-joined on LOOKUP_TYPE = 'US_ETHNIC_GROUP' and LOOKUP_CODE matching PER_INFORMATION1 to resolve the ethnic group meaning.
The joins are structured so that proposal and PI data are mandatory, while assignment, location, and lookup data are optional (outer joins). This design ensures the PI record is returned even when assignment or address data is missing.
Key Columns
The view exposes the following significant columns:
- PROPOSAL_ID, PROPOSAL_NUMBER, ORIGINAL_PROPOSAL_NUMBER, AWARD_NUMBER — proposal identity and linkage fields.
- PERSON_ID, FULL_NAME, LAST_NAME, FIRST_NAME, MIDDLE_NAMES, TITLE, SUFFIX — the raw name components, including the MIDDLE_NAMES column matched by the user's search term.
- LAST_FIRST_MIDDLE_NAME — concatenated as last name, first name, and middle names separated by commas and spaces, with DECODE handling nulls gracefully.
- FIRST_MIDDLE_LAST_NAME — an alternate composite ordering of first name, middle names, and last name with suffix.
- DATE_OF_BIRTH, NATIONAL_IDENTIFIER, SEX, ETHNIC_GROUP — demographic attributes, with ETHNIC_GROUP resolved through HR_LOOKUPS.
- JOB_NAME, DEGREES — derived by calling IGW_REPORT_PROCESSING.GET_JOB_NAME and GET_PERSON_DEGREES.
- ADDRESS_LINE1 through TOWN_OR_CITY — location details from HR_LOCATIONS.
- WORK_PHONE, WORK_FAX, EMAIL_ADDRESS — contact data, with phone and fax resolved through IGW_REPORT_PROCESSING.GET_PHONE_NUMBER.
Common Use Cases and Queries
Typical uses include producing PI rosters for proposal packages, generating investigator contact sheets for sponsored research offices, and feeding downstream grant reports. A representative query retrieving the PI name and contact details for a proposal is:
SELECT proposal_number, last_first_middle_name, middle_names, job_name, degrees, work_phone, email_address FROM igw_pi_v WHERE proposal_id = :p_proposal_id;
To locate PIs by middle name, a report may use:
SELECT proposal_number, full_name, middle_names FROM igw_pi_v WHERE UPPER(middle_names) LIKE UPPER('%' || :search_term || '%');
Because the view is obsolete and not implemented in current reference databases, organizations on 12.1.1 and 12.2.2 should confirm its presence before relying on it, and plan migration toward supported proposal-management reporting alternatives.
-
View: IGW_PI_V
12.2.2
product: IGW - Grants Proposal (Obsolete) , description: View displays details of Proposal Manager , implementation_dba_data: Not implemented in this database ,
-
View: IGW_PI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PI_V, object_name:IGW_PI_V, status:VALID, product: IGW - Grants Proposal , description: View displays details of Proposal Manager , implementation_dba_data: APPS.IGW_PI_V ,
-
SYNONYM: APPS.IGW_PROP_PERSONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGW_PROP_PERSONS, status:VALID,
-
PACKAGE: APPS.IGW_REPORT_PROCESSING
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGW_REPORT_PROCESSING, status:VALID,
-
VIEW: APPS.IGW_PI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGW.IGW_PI_V, object_name:IGW_PI_V, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
SYNONYM: APPS.IGW_PROPOSALS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGW_PROPOSALS_ALL, status:VALID,
-
VIEW: APPS.PER_ASSIGNMENTS_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_ASSIGNMENTS_X, object_name:PER_ASSIGNMENTS_X, status:VALID,
-
PACKAGE: APPS.HR_PERSON_NAME
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_PERSON_NAME, status:VALID,
-
VIEW: APPS.PER_PEOPLE_X
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.PER_PEOPLE_X, object_name:PER_PEOPLE_X, status:VALID,
-
PACKAGE: APPS.HR_SECURITY
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_SECURITY, status:VALID,
-
VIEW: APPS.HR_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOCATIONS, object_name:HR_LOCATIONS, status:VALID,
-
VIEW: APPS.HR_LOOKUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:PER.HR_LOOKUPS, object_name:HR_LOOKUPS, status:VALID,
-
PACKAGE: APPS.HR_GENERAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_GENERAL, status:VALID,
-
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 ,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,
-
12.1.1 DBA Data
12.1.1
-
PACKAGE: APPS.HR_API
12.1.1
owner:APPS, object_type:PACKAGE, object_name:HR_API, status:VALID,
-
PACKAGE: APPS.FND_GLOBAL
12.1.1
owner:APPS, object_type:PACKAGE, object_name:FND_GLOBAL, status:VALID,
-
eTRM - PER Tables and Views
12.1.1
description: Table to store NQF Training info for a person ,