Search Results inst_eps_code




Overview

IGS_PE_HZ_PARTIES_V is a PL/SQL view owned by the APPS schema in the Oracle E-Business Suite IGS (Student System) product family. It is documented as valid in both EBS 12.1.1 and 12.2.2. As its description states, the view is based on the person extension table, exposing party-level person data maintained by the Student System alongside a descriptive territory name for the recorded birth country.

The view belongs to the person extension layer of the Oracle Student System, which augments the base HZ_PARTIES registry with institution-specific attributes. Because it joins party extension records to FND_TERRITORIES_VL, it allows users to resolve the BIRTH_COUNTRY code into a human-readable meaning without an additional lookup. It is typically consumed for reporting and integration purposes, where a denormalized, read-only projection of student and person data is preferable to querying the base table directly. The inclusion of INST_EPS_CODE — the identifier referenced in the user's search — makes the view relevant for external payment or electronic disbursement integration scenarios involving institutions.

Underlying Base Objects

The documented view definition selects from two objects:

The join is an outer join, so parties with a null or unmatched BIRTH_COUNTRY are still returned, with a null territory description. No additional base objects are documented for this view in the ETRM metadata, and the referenced base objects list is recorded as none documented; the authoritative source for lineage is therefore the view text itself.

Key Columns

The view exposes the following categories of columns:

INST_EPS_CODE is the institution-level EPS code carried from the person extension table and is commonly used to associate a party with a payment or electronic processing system record.

Common Use Cases and Queries

Typical use cases include reporting on student institution and demographic attributes, extracting party records for downstream integration, and resolving birth country descriptions for display. A representative query filtering on the searched attribute follows:

  • Retrieve parties for a specific institution EPS code:
    SELECT party_id, institution_cd, inst_eps_code, birth_country_desc
    FROM   apps.igs_pe_hz_parties_v
    WHERE  inst_eps_code = :p_eps_code;
  • List institution contact details for active parties:
    SELECT party_id, institution_cd, inst_phone_country_code,
           inst_phone_area_code, inst_phone_number
    FROM   apps.igs_pe_hz_parties_v;
  • Report deceased or purge-excluded persons:
    SELECT party_id, deceased_ind, purge_exclusion_ind
    FROM   apps.igs_pe_hz_parties_v
    WHERE  deceased_ind = 'Y';

Because the view is read-only and owned by APPS, queries should be issued from an APPS or reporting responsibility with appropriate grants. No DML should be directed at the view; updates to the underlying IGS_PE_HZ_PARTIES table should be performed through the supported Student System APIs.