Results for “igs_ad_ps_appl_aplcntx_v”

19 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

IGS_AD_PS_APPL_APLCNTX_V is a database view owned by the APPS schema within the IGS (Student System) product family of Oracle E-Business Suite. Its documented purpose is to present a de-normalized projection of the IGS_AD_PS_APPL admissions application table so that Oracle Forms-based screens can treat it as a context block. In ETRM the object is explicitly flagged as Obsolete, meaning Oracle no longer supports or certifies its use for new development. The view remains VALID in the data dictionary for the 12.1.1 and 12.2.2 releases but should be regarded as legacy. Technically it is a join view rather than a simple projection: it merges the application header record with person, admissions-map, and course-version data to expose a single flat row suitable for a Form's context block region, where the block displays read-only descriptive fields for a selected application.

Underlying Base Objects

The ETRM metadata records "none documented" for referenced base objects, but the published view text shows four source objects, three of which are themselves views:

The relationship is therefore one application row to one person, one map row, and the current course version, giving a single flat result set per application.

Key Columns

Common Use Cases and Queries

Because the view is obsolete, it should be used only for enquiry or retro-fit reporting against existing Forms customizations, never for new interfaces. A typical lookup retrieves a person's application context with the current course title:

SELECT person_number, admission_appl_number, full_name, nominated_course_cd, title, commencement_period, admission_process_cat FROM igs_ad_ps_appl_aplcntx_v WHERE person_id = :p_person_id;

A second pattern supports applicant-list reporting filtered by intake:

SELECT admission_appl_number, surname, given_names, nominated_course_cd, title FROM igs_ad_ps_appl_aplcntx_v WHERE commencement_period = :p_period AND admission_process_cat = :p_category ORDER BY surname, given_names;

For any new requirement, replace this view with a direct join across IGS_AD_PS_APPL, IGS_PE_PERSON_V, IGS_AD_APPL_ADMAPPL_V and IGS_PS_VER to avoid dependency on an obsolete, unsupported object whose definition may change without notice across patch levels.