Search Results igsfv_uc_qual_details
Overview
IGSFV_UC_QUAL_DETAILS is an APPS-owned, VALID database view within the IGS (Student System) product of Oracle E-Business Suite, available in both 12.1.1 and 12.2.2. It is described by Oracle ETRM as the "Full View for the qualifications awarded to an applicant." The view consolidates applicant qualification data captured through the UCAS admissions interface (the IGS_UC_* tables) and enriches it with descriptive information joined from person, award, field-of-study, and grading-schema entities. Its primary role is to provide a denormalized reporting and integration surface for admissions users, allowing qualification records to be queried with human-readable names instead of raw coded values.
The object is especially relevant to searches for awarding_body_name because the view exposes the column AWARDING_BODY_NAME, which resolves the underlying code AWARDING_BODY_CODE (stored in IGS_UC_QUAL_DETS.AWARDING_BODY) against the party name held in HZ_PARTIES. This makes the view a convenient source for reporting on awarding bodies without requiring the caller to perform the lookup join manually.
Underlying Base Objects
The view is defined over eight referenced objects. The driving table is IGS_UC_QUAL_DETS (aliased QU), which holds the qualification detail rows for each applicant. It is left-outer-joined to the following supporting objects on the join conditions shown in the view text:
- HZ_PARTIES FT1 — joined on QU.PERSON_ID = FT1.PARTY_ID (+), supplying the applicant's party number and party name.
- IGS_PS_AWD FT2 — joined on QU.EXAM_LEVEL = FT2.AWARD_CD (+), supplying the exam-level award title.
- IGS_PS_FLD_OF_STUDY_ALL FT3 — joined on QU.SUBJECT_CODE = FT3.FIELD_OF_STUDY (+), supplying the subject description.
- IGS_AS_GRD_SCH_GRADE FT4, FT5, FT6 — each joined on GRADING_SCHEMA_CD and VERSION_NUMBER, and respectively on APPROVED_RESULT, PREDICTED_RESULT, and CLAIMED_RESULT, supplying grade names and ranks.
- HZ_PARTIES FT7 — supplying the awarding body party name.
- IGS_PE_HZ_PARTIES IHP — listed in the FROM clause as an additional person-to-party mapping source.
All links to the descriptive tables are outer joins, ensuring qualification rows are returned even when matching reference data is absent.
Key Columns
- QUAL_DETAILS_IDENTIFIER — primary identifier from QU.QUAL_DETS_ID.
- OSS_PERSON_IDENTIFIER / OSS_PERSON_NUMBER / OSS_PERSON_NAME — applicant identifiers and name derived from HZ_PARTIES.
- EXAM_LEVEL_CODE / EXAM_LEVEL_TITLE — qualification level code and its award title.
- SUBJECT_CODE / SUBJECT_CODE_DESC — subject code and field-of-study description.
- YEAR, SITTING, SITTING_DESC — examination year and sitting, with a descriptive lookup via IGS_LOOKUP_VALUES.
- AWARDING_BODY_CODE / AWARDING_BODY_NAME — the code stored on the qualification and the resolved party name of the awarding body.
- APPROVED_RESULT, PREDICTED_RESULT, CLAIMED_RESULT with corresponding _DESCRIPTION and _SCORE columns from IGS_AS_GRD_SCH_GRADE.
- UCAS_TARIFF, IMPORTED_FLAG, IMPORTED_DATE — tariff points and import tracking.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard auditing columns.
Common Use Cases and Queries
The view is typically used for admissions reporting, UCAS import verification, and applicant qualification extracts where descriptive naming is required. A representative query retrieving awarding body names for an applicant is:
SELECT person_id, awarding_body_code, awarding_body_name FROM igsfv_uc_qual_details WHERE person_id = :p_person_id;SELECT awarding_body_name, COUNT(*) FROM igsfv_uc_qual_details GROUP BY awarding_body_name ORDER BY 2 DESC;— to analyze qualification volumes by awarding body.SELECT person_id, exam_level_title, subject_code_desc, approved_result_description FROM igsfv_uc_qual_details WHERE year = :p_year;— for annual admissions analysis.
Because the view is a simple join-based projection with no documented base-object list in the 12.2.2 ETRM metadata, consumers should treat it as read-only and avoid DML. Query performance may benefit from indexes on IGS_UC_QUAL_DETS.PERSON_ID and the grading-schema join columns.
-
View: IGSFV_UC_QUAL_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for the qualifications awarded to an applicant , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UC_QUAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_QUAL_DETAILS, object_name:IGSFV_UC_QUAL_DETAILS, status:VALID, product: IGS - Student System , description: Full View for the qualifications awarded to an applicant , implementation_dba_data: APPS.IGSFV_UC_QUAL_DETAILS ,
-
SYNONYM: APPS.IGS_PS_FLD_OF_STUDY_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_FLD_OF_STUDY_ALL, status:VALID,
-
SYNONYM: APPS.IGS_UC_QUAL_DETS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_UC_QUAL_DETS, status:VALID,
-
SYNONYM: APPS.IGS_PS_AWD
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_AWD, status:VALID,
-
SYNONYM: APPS.IGS_AS_GRD_SCH_GRADE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AS_GRD_SCH_GRADE, status:VALID,
-
VIEW: APPS.IGSFV_UC_QUAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_QUAL_DETAILS, object_name:IGSFV_UC_QUAL_DETAILS, status:VALID,
-
SYNONYM: APPS.IGS_PE_HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PE_HZ_PARTIES, status:VALID,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
SYNONYM: APPS.HZ_PARTIES
12.1.1
owner:APPS, object_type:SYNONYM, object_name:HZ_PARTIES, status:VALID,
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,