Search Results coordinate_person_number
Overview
IGSFV_LOCATIONS is a read-only view in the Oracle E-Business Suite (EBS) Student System (IGS) product family. It presents a consolidated, denormalized picture of the physical locations that an institution maintains for academic, administrative, and operational purposes. In EBS 12.1.1 and 12.2.2, the IGS product is documented as obsolete, and the ETRM metadata explicitly notes that this object is "Not implemented in this database," meaning the view may not be deployed in every environment.
Its principal role is to support reporting and integration by resolving the many foreign keys embedded in the base location table (IGS_AD_LOCATION_ALL) into human-readable descriptions. Rather than joining multiple tables manually, consumers—such as Oracle Reports, BI Publisher data models, OBIEE repositories, or custom PL/SQL—can query a single object and obtain location data alongside the coordinate person's party number, the location type description, and the revenue account description. This makes the view particularly useful as a discovery surface for the coordinate person, exposing COORDINATE_PERSON_NUMBER and COORDINATE_PERSON_ID as first-class columns.
Underlying Base Objects
The view text, documented in the ETRM excerpt, is defined over four tables joined with outer-join semantics:
- IGS_AD_LOCATION_ALL — the driving table (aliased LOC), holding the core location attributes such as LOCATION_CD, DESCRIPTION, LOCATION_TYPE, CLOSED_IND, and the foreign keys COORD_PERSON_ID and REV_ACCOUNT_CD.
- HZ_PARTIES — aliased HP, joined on LOC.COORD_PERSON_ID = HP.PARTY_ID(+). This supplies PARTY_NUMBER, exposed as COORDINATE_PERSON_NUMBER.
- IGS_AD_LOCATION_TYPE_ALL — aliased LOT, joined on LOC.LOCATION_TYPE = LOT.LOCATION_TYPE. This supplies the location type description.
- IGS_FI_ACC_ALL — aliased ACC, joined on LOC.REV_ACCOUNT_CD = ACC.ACCOUNT_CD(+). This supplies the revenue account description.
The ETRM metadata lists no referenced base objects under "Documented view metadata," and the owner is not recorded. Nevertheless, the embedded view text makes the dependency chain unambiguous. Because the header table pivots on COORD_PERSON_ID, the HZ_PARTIES join is the mechanism by which the sought "coordinate_person_number" value is surfaced.
Key Columns
- LOCATION_CODE — the location code (LOCATION_CD), the natural business key for a location.
- DESCRIPTION — the location's descriptive name.
- LOCATION_TYPE / LOCATION_TYPE_DESC — the type code and its translated meaning.
- MAIL_DELIVERY_WORKING_DAYS — working-day calendar for mail delivery.
- CLOSED_INDICATOR — indicates whether the location is closed.
- REVENUE_ACCOUNT_CODE / REVENUE_ACCOUNT_DESC — the revenue account code and description.
- COORDINATE_PERSON_ID — the HZ_PARTIES party identifier of the coordinate person.
- COORDINATE_PERSON_NUMBER — the party number of the coordinate person, sourced from HZ_PARTIES.PARTY_NUMBER.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — standard audit columns.
Note that the view also carries two descriptor columns beginning with underscores ("_DF:" and "_LA:") that support EBS Flexfield and Lookup display semantics.
Common Use Cases and Queries
A typical use is retrieving active locations with their coordinate person and account description:
- SELECT location_code, description, location_type_desc, coordinate_person_number FROM igsfv_locations WHERE closed_indicator = 'N';
- SELECT location_code, description, revenue_account_desc FROM igsfv_locations WHERE revenue_account_code IS NOT NULL;
- SELECT COUNT(*), location_type_desc FROM igsfv_locations GROUP BY location_type_desc;
Because it is a WITH READ ONLY view, it should be used strictly for querying, not DML. Always validate availability in the target instance, since ETRM states the object may not be implemented.
-
View: IGSFV_LOCATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes available physical locations , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_VENUES
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the physical venue where an examination or graduation ceremony can be accommodated. A venue can exist within a location (eg. campus) or examination location (eg. Town Hall). , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_VENUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_VENUES, object_name:IGSFV_VENUES, status:VALID, product: IGS - Student System , description: This entity describes the physical venue where an examination or graduation ceremony can be accommodated. A venue can exist within a location (eg. campus) or examination location (eg. Town Hall). , implementation_dba_data: APPS.IGSFV_VENUES ,
-
View: IGSFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_LOCATIONS, object_name:IGSFV_LOCATIONS, status:VALID, product: IGS - Student System , description: This entity describes available physical locations , implementation_dba_data: APPS.IGSFV_LOCATIONS ,
-
VIEW: APPS.IGSFV_VENUES
12.1.1
-
VIEW: APPS.IGSFV_LOCATIONS
12.1.1
-
VIEW: APPS.IGSFV_LOCATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_LOCATIONS, object_name:IGSFV_LOCATIONS, status:VALID,
-
VIEW: APPS.IGSFV_VENUES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_VENUES, object_name:IGSFV_VENUES, status:VALID,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,