Search Results priority_description
Overview
IGS_OR_INSTITUTION_V is a reporting and integration view within the Oracle E-Business Suite Student System (IGS) product family. In the ETRM 12.2.2 documentation the product is flagged as Obsolete, and the view is explicitly noted as "Not implemented in this database." Its stated purpose is to describe institution details — the academic institutions, schools, and related educational bodies recorded in the Student System. The view projects a wide, denormalized column set from its parent entity so that downstream reports, extracts, and interfaces can resolve institution attributes without joining multiple tables manually.
The user search term "institution_priority" maps directly to the INSTITUTION_PRIORITY column exposed by this view, one of its more functionally meaningful attributes. It is accompanied by PRIORITY_DESCRIPTION, which supplies the human-readable ranking text for that priority code.
Underlying Base Objects
The view text shows a single-source definition: all columns are projected directly from the base table IGS_OR_INSTITUTION with no joins, unions, or aggregation. The view is therefore a thin wrapper over the institution entity, adding no filter predicate or derived logic in the excerpted definition. Although the ETRM metadata lists "none documented" for referenced base objects, the view text itself identifies IGS_OR_INSTITUTION as the sole source. Consumers should treat the view as a read-only presentation layer over that table.
Key Columns
- ROW_ID — Surrogate primary key of the institution record.
- PARTY_ID — Foreign key to the TCA party (HZ_PARTIES) representing the institution as a registered entity.
- INSTITUTION_CD and NAME — Institution code and display name.
- INSTITUTION_STATUS — Active/inactive state of the institution record.
- LOCAL_INSTITUTION_IND, OS_IND, GOVT_INSTITUTION_CD, INSTITUTION_TYPE — Classification flags distinguishing local, overseas, government, and type categories.
- INST_CONTROL_TYPE and CTRL_DESCRIPTION — Control/ownership classification and its description.
- PREF_INST_ID_TYPE and PREF_INST_ALT_ID — Preferred institution identifier type and alternate identifier.
- INSTITUTION_PRIORITY and PRIORITY_DESCRIPTION — Priority ranking assigned to the institution, used to order or prefer institutions during selection logic, and the description of that priority.
- INST_PHONE_COUNTRY_CODE, INST_PHONE_AREA_CODE, INST_PHONE_NUMBER — Contact telephone components.
- ADV_STUDIES_CLASSES, HONORS_CLASSES, CLASS_SIZE — Academic profile attributes.
- SEC_SCHOOL_LOCATION_ID/CODE/DESC and PERCENT_PLAN_HIGHER_EDU — Secondary school location and higher-education planning percentage.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE20 — Descriptive flexfield columns.
- LAST_UPDATED_BY, LAST_UPDATE_DATE, CREATED_BY, CREATION_DATE, LAST_UPDATE_LOGIN — Standard Who columns.
Common Use Cases and Queries
Typical scenarios include enumerating institutions by priority, extracting institution master data for external systems, and resolving party linkage for admissions or recruitment reporting. Because the view is flagged obsolete and not implemented, queries should be validated against the actual database state before deployment.
List institutions ordered by priority:
SELECT institution_cd, name, institution_priority, priority_description
FROM igs_or_institution_v
WHERE institution_status = 'A'
ORDER BY institution_priority;
Retrieve local government institutions with contact details:
SELECT name, govt_institution_cd, inst_phone_area_code, inst_phone_number
FROM igs_or_institution_v
WHERE local_institution_ind = 'Y';
-
View: IGS_OR_INSTITUTION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INSTITUTION_V, object_name:IGS_OR_INSTITUTION_V, status:VALID, product: IGS - Student System , description: Describes the Institution Details , implementation_dba_data: APPS.IGS_OR_INSTITUTION_V ,
-
View: IGS_OR_INST_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_HIST_V, object_name:IGS_OR_INST_HIST_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_OR_INST_HIST_V ,
-
View: IGS_OR_INSTITUTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INSTITUTION, object_name:IGS_OR_INSTITUTION, status:VALID, product: IGS - Student System , description: Describes the institution Details , implementation_dba_data: APPS.IGS_OR_INSTITUTION ,
-
View: IGS_OR_INST_OUTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_OR_INST_OUTER_V, object_name:IGS_OR_INST_OUTER_V, status:VALID, product: IGS - Student System , description: The entity retrieves all the records that are Institutions that are either created in the OSS subsystem or from the Oracle Receivables system. , implementation_dba_data: APPS.IGS_OR_INST_OUTER_V ,