Search Results igsfv_ad_adm_ps_appl




Overview

IGSFV_AD_ADM_PS_APPL is a read-only Oracle E-Business Suite view owned by the APPS schema within the IGS (Student System) product family. It consolidates admission application program data for prospective students, joining the core application record to party, person profile, and lookup tables so that a single query returns a fully described row per application. The "FV" prefix follows the Oracle convention for a user-facing "form/view" object intended for inquiry and reporting rather than transactional maintenance, and the view text terminates with the WITH READ ONLY clause, confirming that it cannot be used for DML.

In an EBS 12.1.1 or 12.2.2 environment, this view serves as a reporting and integration access point over the Student System admission tables. Because IGS admission data is normalized across several base tables, the view spares report authors and downstream interface developers from reconstructing the joins between application, person, and lookup data. The view is documented as VALID in the ETRM repository, meaning its underlying dependencies resolved successfully at the time of extraction.

Underlying Base Objects

The view is defined over five documented base objects:

Both the basis-for-admission and admission-code joins are outer joins, so applications missing a matching lookup value are still returned, with the corresponding description columns null. The party and person-profile joins are inner joins, meaning an application row is only visible when a matching party and a current user-entered person profile exist.

Key Columns

Common Use Cases and Queries

Typical uses include admission office reporting, applicant tracking extracts, and integration feeds into external student systems or data warehouses. Because the view is read-only and already resolves the descriptive lookups, it is well suited to ad hoc querying by functional users with report responsibilities.

A representative query listing applications for a nominated program:

  • SELECT admission_application_number, person_number, person_name, nominated_program_code, basis_for_admission_type_desc, basis_for_admission_code_desc FROM igsfv_ad_adm_ps_appl WHERE nominated_program_code = :program_code ORDER BY person_name;

To identify applicants requesting reconsideration or advanced standing, query the derived indicator columns directly:

  • SELECT admission_application_number, person_name, "_LA:REQ_FOR_RECO_IND_FLAG", "_LA:REQ_FOR_ADV_ST_IND_FLAG" FROM igsfv_ad_adm_ps_appl WHERE "_LA:REQ_FOR_RECO_IND_FLAG" = 'Yes';

Because the indicator column names contain a colon and start with a quote-delimited prefix, they must be referenced with double quotes exactly as defined. Note also that the effective-dating filter on HZ_PERSON_PROFILES is evaluated at query time against SYSDATE, so results reflect the applicant's currently effective person profile record.