Search Results igs_uc_app_clearing




Overview

The table IGS_UC_APP_CLEARING is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS), specifically versions 12.1.1 and 12.2.2. It is designed to store detailed information related to the clearing process for university applicants. Clearing is a UK-specific admissions service managed by UCAS (Universities and Colleges Admissions Service) that matches applicants without university places to institutions with available course vacancies. The table's primary role is to act as the system of record for this process within EBS, synchronizing data with the external UCAS view named 'ivStarZ1'. This ensures that applicant clearing statuses and actions are consistently maintained between the institution's internal Oracle system and the central UCAS service.

Key Information Stored

While the provided metadata does not list specific columns beyond key identifiers, the table's description and relationships indicate it holds applicant-centric clearing details. The primary key, CLEARING_APP_ID, uniquely identifies each clearing record. A critical foreign key column is APP_ID, which links the clearing information to a master applicant record in the IGS_UC_APPLICANTS table. This establishes the fundamental relationship between an applicant and their clearing activities. Other data points likely stored in this table include the clearing application status, relevant dates (such as entry into clearing), the specific clearing note or code associated with the applicant, and any other attributes required for the bi-directional synchronization with the UCAS 'ivStarZ1' view.

Common Use Cases and Queries

This table is central to managing and reporting on the clearing phase of the admissions cycle. Common operational use cases include tracking the pool of applicants in clearing, updating an applicant's clearing status based on UCAS communications, and identifying applicants eligible for institutional offers. For reporting, the table supports queries to analyze clearing conversion rates and applicant demographics during this period. A typical SQL pattern involves joining to the applicant master table to retrieve comprehensive profiles:

  • Identifying Applicants in Clearing: SELECT a.* FROM igs_uc_app_clearing c, igs_uc_applicants a WHERE c.app_id = a.app_id;
  • Reporting on Clearing Status: Reports would join IGS_UC_APP_CLEARING with IGS_UC_APP_CLR_RND (Clearing Round) and other person/application tables to generate management summaries of clearing activity and outcomes.

Related Objects

The IGS_UC_APP_CLEARING table sits within a defined hierarchy of UCAS-related tables in the IGS schema, as evidenced by its documented foreign key relationships.

  • Referenced Parent Table: The table holds a foreign key (APP_ID) referencing IGS_UC_APPLICANTS. This is the master table for UCAS applicant data, ensuring every clearing record is associated with a valid applicant.
  • Referencing Child Table: The table is referenced by the child table IGS_UC_APP_CLR_RND via its foreign key column CLEARING_APP_ID. This indicates that multiple clearing rounds or actions (stored in IGS_UC_APP_CLR_RND) can be associated with a single clearing application record, detailing the procedural history.

These relationships are critical for maintaining data integrity and constructing complete applicant clearing timelines within the Oracle EBS Student System.