Search Results igs_uc_com_ebl_subj
Overview
The table IGS_UC_COM_EBL_SUBJ is a data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically belonging to the now-obsolete IGS (Student System) product family. Its primary role is to serve as a master repository for examination board subjects, facilitating integration with the UK's Universities and Colleges Admissions Service (UCAS). The table is designed to synchronize with the external UCAS view named 'cvEBLSubject', acting as a local mirror within the EBS environment to support admissions-related processes for institutions using the UCAS integration. It is a core reference table for maintaining standardized subject codes and descriptions as defined by awarding bodies.
Key Information Stored
While the provided metadata does not list individual column names beyond key fields, the table's structure is defined by its primary and foreign key relationships. The central identifier is the SUBJECT_ID, which uniquely defines each examination board subject record. The table also stores attributes that link a subject to its specific context, including an AWARDING_BODY identifier, a SITTING period, and a YEAR. These fields collectively ensure that a subject record is correctly associated with the specific awarding body, examination sitting, and academic year for which it is valid, which is critical for accurate academic record-keeping and UCAS reporting.
Common Use Cases and Queries
A primary use case is the batch synchronization process between the EBS system and the UCAS 'cvEBLSubject' view to ensure subject code consistency. Administrators would query this table to validate or report on the available subjects for a given awarding body and year. Common SQL patterns involve joining to the awarding body reference table for descriptive information. For instance, a query to list all active subjects for a particular year might resemble: SELECT subj.subject_id, subj.sitting, awrd.body_name FROM igs_uc_com_ebl_subj subj, igs_uc_ref_awrdbdy awrd WHERE subj.awarding_body = awrd.awarding_body AND subj.year = '2023';. Furthermore, this table is essential for downstream processes that populate or validate applicant result data linked to these standardized subjects.
Related Objects
The table IGS_UC_COM_EBL_SUBJ is centrally connected to other UCAS-related entities within the EBS schema through documented foreign key relationships.
- Referenced Table (Parent): IGS_UC_REF_AWRDBDY. The column IGS_UC_COM_EBL_SUBJ.AWARDING_BODY is a foreign key to this table, which holds reference data for the awarding bodies or examination boards themselves.
- Referencing Table (Child): IGS_UC_APP_RESULTS. This table, which stores applicant examination results, contains a foreign key column SUBJECT_ID that references IGS_UC_COM_EBL_SUBJ.SUBJECT_ID. This ensures that every result recorded is linked to a valid, synchronized subject definition.
These relationships enforce data integrity, ensuring that subjects are linked to valid awarding bodies and that applicant results cannot reference invalid subject codes.
-
Table: IGS_UC_COM_EBL_SUBJ
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the list of subjects of an examining board. It synchronizes with UCAS view 'cvEBLSubject' , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_UC_REF_AWRDBDY
12.2.2
product: IGS - Student System (Obsolete) , description: Holds the list of examining boards that are associated with subjects. It is used to link exam boards to results. It synchronizes with UCAS view 'cvRefAwardBody'. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_UC_APP_RESULTS
12.2.2
product: IGS - Student System (Obsolete) , description: Holds applicant examination results . It synchronizes with UCAS view 'ivStarPQR'. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UC_APPLICANT_RESULTS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Applicant Examination Results , implementation_dba_data: Not implemented in this database ,