Search Results pref_inst_id_type




Overview

APPS.IGS_OR_INSTITUTION_V is a reporting and integration view in the Oracle E-Business Suite (EBS) 12.1.1 / 12.2.2 environment, owned by the APPS schema. It exposes institution-level records maintained within the Oracle Student System (formerly Oracle Student Systems / OSS, delivered under the IGS product family). The view presents a denormalized, read-only projection of the IGS_OR_INSTITUTION table and is intended for use by reports, concurrent programs, interfaces, and external integrations that require descriptive information about external institutions — such as secondary schools, colleges, and other organizations with which the enterprise interacts. Because the view is a simple single-table projection with no joins, it serves as a stable, presentation-oriented access layer that shields consumers from direct dependencies on the base table structure.

Underlying Base Objects

The view is defined over a single base table, as confirmed by its view text:

  • IGS_OR_INSTITUTION — the sole referenced base object. The view performs a SELECT ... FROM IGS_OR_INSTITUTION with no WHERE clause, joins, or aggregations, returning all columns in a fixed order.

No other base objects, synonyms, or auxiliary tables are documented as contributors to this view. Semantically, the view is a one-to-one passthrough: each row in IGS_OR_INSTITUTION corresponds to exactly one row in the view, and no row filtering or transformation logic is applied. This makes the view appropriate for queries where completeness of institution data is required, though consumers should apply their own predicates (for example, on INSTITUTION_STATUS or INSTITUTION_TYPE) to constrain the result set.

Key Columns

The view exposes the full column list of IGS_OR_INSTITUTION. The most significant columns, given the interests reflected in typical searches, include:

Common Use Cases and Queries

Typical usage includes institution lookups for admissions and recruitment reporting, secondary school data validation, and integration extracts. A representative query returning honors-class institutions is:

  • SELECT institution_cd, name, honors_classes, class_size, percent_plan_higher_edu FROM apps.igs_or_institution_v WHERE honors_classes = 'Y' AND institution_status = 'A';

Other common patterns include joining to HZ_PARTIES on PARTY_ID for address and contact enrichment, filtering by INSTITUTION_TYPE for school-level reporting, and extracting SEC_SCHOOL_LOCATION_CODE for feeder-school analysis. Because the view has no built-in filtering, queries should always apply predicates to avoid full scans of the underlying table in high-volume reporting scenarios.