Search Results sitting_desc




Overview

The IGS_UC_QUAL_DETS_V view is a reporting object within the Oracle E-Business Suite (EBS) IGS Student System product. It exposes the qualifications that have been awarded to applicants, presenting a denormalized, human-readable representation of qualification data that would otherwise require complex joins across several base tables in the student records and trading community schemas. The view is owned by the APPS schema and carries a status of VALID. Because it consolidates applicant qualification records with descriptive translations — for example, converting coded values into their corresponding award titles, lookup meanings, and party names — the view is well suited to operational reporting, data extracts, and integration interfaces where qualification information must be delivered in a consumable form. A user searching for the SITTING_DESC column will find it exposed directly by this view, meaning the qualification sitting (such as a specific examination session) is resolved to its descriptive meaning without the caller needing to join to the lookup table manually.

Underlying Base Objects

The view is defined over a set of base tables joined through both inner and outer (outer-join) relationships. The principal driving table is IGS_UC_QUAL_DETS (aliased QD), which stores the applicant qualification detail records. Descriptive and reference data are sourced from several supporting objects:

The joins are predominantly outer joins, ensuring that qualification detail rows are retained even where descriptive reference data is absent.

Key Columns

Common Use Cases and Queries

Typical uses include applicant qualification reporting, UCAS tariff extraction, and data migration or interface validation. The following query retrieves qualification details for a given applicant, resolving the sitting description:

  • SELECT person_id, exam_level_desc, subject_code_desc, year, sitting_desc, approved_result, awarding_body_desc, ucas_tariff
  • FROM apps.igs_uc_qual_dets_v
  • WHERE person_id = :p_person_id
  • ORDER BY year DESC, exam_level_desc;

Because the view already performs the joins to lookup values and award titles, report authors and integration developers can consume SITTING_DESC and its companion descriptive columns directly, avoiding the need to reconstruct those joins against IGS_LOOKUP_VALUES or IGS_PS_AWD at query time.