Search Results igs_uc_form_quals_pk
Overview
The table IGS_UC_FORM_QUALS is a core data structure within the Oracle E-Business Suite (EBS) Student System (IGS) module, specifically for versions 12.1.1 and 12.2.2. Its primary function is to store detailed qualification records imported from the Universities and Colleges Admissions Service (UCAS) for the United Kingdom. The table acts as a staging and persistent repository for individual academic qualifications associated with a student's UCAS application form. By holding this granular data, it enables institutions to process, evaluate, and report on applicant qualifications within the integrated Oracle EBS environment, supporting critical admissions workflows.
Key Information Stored
The table's structure is designed to capture the relationship between an application and its constituent qualifications. As defined by its primary key, the table uniquely identifies each record through a composite of two columns: APP_NO and QUAL_ID. The APP_NO column stores the unique identifier for the UCAS application form, linking all qualifications for a single application. The QUAL_ID column is a sequential identifier that distinguishes each individual qualification (e.g., A-Levels, GCSEs, BTECs) listed within that specific application. While the provided metadata does not list all columns, typical data stored would include details such as qualification type, subject, awarding body, grade or score achieved, and date of attainment, all tied to the specific application and qualification instance.
Common Use Cases and Queries
The primary use case involves reporting and decision-making during the admissions cycle. Administrators can query this table to assess an applicant's academic profile, verify entry requirements, and generate summary reports. A common SQL pattern retrieves all qualifications for a specific application to review an applicant's complete academic history. Another frequent query aggregates qualification types or grades across a cohort of applicants for statistical analysis. The table is also crucial for data validation processes, ensuring imported UCAS data aligns with institutional course prerequisites before an offer is made.
- Retrieving all qualifications for a specific UCAS application:
SELECT * FROM igs.igs_uc_form_quals WHERE app_no = <application_number> ORDER BY qual_id; - Counting the number of distinct qualifications per application for reporting:
SELECT app_no, COUNT(qual_id) FROM igs.igs_uc_form_quals GROUP BY app_no;
Related Objects
IGS_UC_FORM_QUALS is intrinsically linked to other UCAS-related tables within the IGS schema. It is logically a child table of a central UCAS application header table (which would store the APP_NO and general applicant details), though the specific table name is not provided in the metadata. The table is enforced by the primary key constraint IGS_UC_FORM_QUALS_PK. It is highly probable that this table feeds or is referenced by various student system APIs, admission decision engines, and key reports within the Oracle EBS Student System. Views may exist to present a denormalized or cleansed version of this raw qualification data for end-user consumption.
-
Table: IGS_UC_FORM_QUALS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_UC_FORM_QUALS, object_name:IGS_UC_FORM_QUALS, status:VALID, product: IGS - Student System , description: Holds individual Form Qualifications imported from UCAS , implementation_dba_data: IGS.IGS_UC_FORM_QUALS ,