Search Results full_grade_name
Overview
IGSFV_UC_QUAL_DETAILS is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, residing in the Oracle Student System / Enterprise Talent Management (ETRM) product family. It exposes University and College Admissions Service (UCAS) qualification detail records — the individual examination results, predicted grades, approved grades, and claimed grades that an applicant holds — joined to their descriptive grade names, person names, awarding body names, award titles, and subject descriptions. Rather than forcing report authors and integrators to resolve multiple lookup joins manually, the view presents a denormalized, human-readable projection of the UCAS qualification data. Search terms such as full_grade_name map directly to the view's exposed columns, where the grade code stored in the base table is replaced by the descriptive grade name drawn from the grading schema grade table. This makes the view particularly valuable for applicant-facing reports, admissions extracts, and interfaces feeding UCAS return files, where grade codes alone would be insufficient.
Underlying Base Objects
The view is defined over eight base objects. The driving table is IGS_UC_QUAL_DETS (aliased QU), which holds the raw UCAS qualification detail rows keyed by QUAL_DETS_ID. Four of the joins are outer joins to grading schema grades: IGS_AS_GRD_SCH_GRADE is aliased three times — FT4 for the approved result, FT5 for the predicted result, and FT6 for the claimed result — each joined on GRADING_SCHEMA_CD, VERSION_NUMBER, and the respective grade value. HZ_PARTIES is joined twice: FT1 supplies the person or party details (PARTY_NUMBER, PARTY_NAME) via PERSON_ID, and FT7 supplies the awarding body name via IGS_PE_HZ_PARTIES and OSS_ORG_UNIT_CD. IGS_PS_AWD (FT2) resolves the EXAM_LEVEL code to an AWARD_TITLE, while IGS_PS_FLD_OF_STUDY_ALL (FT3) resolves SUBJECT_CODE to a field-of-study DESCRIPTION. All joins except the driving table are marked with the (+) outer-join operator, ensuring qualification rows are retained even when descriptive reference data is missing.
Key Columns
- QUAL_DETAILS_IDENTIFIER / OSS_PERSON_IDENTIFIER: Surrogate key of the qualification detail row and the person identifier.
- EXAM_LEVEL_CODE / EXAM_LEVEL_TITLE: The examination level code and its resolved award title.
- SUBJECT_CODE / SUBJECT_CODE_DESC: Subject code and the resolved field-of-study description.
- APPROVED_RESULT / APPROVED_RESULT_DESCRIPTION / APPROVED_RESULT_SCORE: The approved grade code, its FULL_GRADE_NAME, and RANK.
- PREDICTED_RESULT / PREDICTED_RESULT_DESCRIPTION / PREDICTED_RESULT_SCORE: Predicted grade code, descriptive name, and rank.
- CLAIMED_RESULT / CLAIMED_RESULT_DESCRIPTION / CLAIMED_RESULT_SCORE: Claimed grade code, descriptive name, and rank.
- UCAS_TARIFF, YEAR, SITTING: Tariff points, examination year, and sitting identifier.
- GRADING_SCHEMA_CODE, VERSION_NUMBER: The grading schema and version used to resolve grade names.
- OSS_PERSON_NUMBER / OSS_PERSON_NAME: Party number and name of the applicant.
- AWARDING_BODY_CODE / AWARDING_BODY_NAME: Awarding body code and resolved party name.
- IMPORTED_FLAG / IMPORTED_DATE, CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY: Audit and import control columns.
Common Use Cases and Queries
Typical scenarios include extracting applicant qualifications for admissions review, validating grade values against the grading schema, and producing UCAS tariff summaries. A representative query selecting the descriptive grade names is:
SELECT oss_person_number, oss_person_name, exam_level_title, subject_code_desc, year, sitting, approved_result_description, approved_result_score, predicted_result_description, claimed_result_description, ucas_tariff FROM apps.igsfv_uc_qual_details WHERE oss_person_number = :p_party_number ORDER BY year, sitting;
To list all qualifications for a grading schema, filter on grading_schema_code. Because the underlying joins are outer joins, reports should anticipate null values in description columns where reference data has not yet been defined; use NVL or COALESCE to fall back to the raw code columns such as approved_result or predicted_result.
-
VIEW: APPS.IGSFV_UC_QUAL_DETAILS
12.1.1
-
View: IGSFV_AS_GRD_SCH_TRANSLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRD_SCH_TRANSLATIONS, object_name:IGSFV_AS_GRD_SCH_TRANSLATIONS, status:VALID, product: IGS - Student System , description: Grading Schema Translations , implementation_dba_data: APPS.IGSFV_AS_GRD_SCH_TRANSLATIONS ,
-
VIEW: APPS.IGSBV_AS_GRD_SCH_TRANSLATIONS
12.1.1
-
VIEW: APPS.IGSFV_AS_GRD_SCH_TRANSLATIONS
12.1.1
-
View: IGSBV_AS_GRD_SCH_TRANSLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRD_SCH_TRANSLATIONS, object_name:IGSBV_AS_GRD_SCH_TRANSLATIONS, status:VALID, product: IGS - Student System , description: Grading Schema Translations , implementation_dba_data: APPS.IGSBV_AS_GRD_SCH_TRANSLATIONS ,
-
View: IGSFV_AS_GRD_SCH_TRANSLATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Translations , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_AS_GRD_SCH_TRANSLATIONS
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Translations , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_PRV_GRAD_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_AS_CHNG_GRD_REQUESTS
12.1.1
-
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 ,
-
VIEW: APPS.IGS_PS_UNT_PRV_GRADE_V
12.1.1
-
View: IGS_PS_UNT_PRV_GRADE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_GRD_SCH_GRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GRD_SCH_GRADE_V, object_name:IGS_AS_GRD_SCH_GRADE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_GRD_SCH_GRADE_V ,
-
VIEW: APPS.IGS_PS_USEC_PRV_GRAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_PRV_GRAD_V, object_name:IGS_PS_USEC_PRV_GRAD_V, status:VALID,
-
View: IGS_AD_ADM_UT_STA_GD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the grading schema code grades applicable to an administrative unit status. This caters for versions of the grading schema code. At any point in time, there should be only one grading schema code grade applicable. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNT_PRV_GRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNT_PRV_GRADE_V, object_name:IGS_PS_UNT_PRV_GRADE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNT_PRV_GRADE_V ,
-
View: IGS_PS_USEC_PRV_GRAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_PRV_GRAD_V, object_name:IGS_PS_USEC_PRV_GRAD_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_PRV_GRAD_V ,
-
VIEW: APPS.IGS_PS_USEC_PRV_GRAD_V
12.1.1
-
View: IGS_AD_ADM_UT_STA_GD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADM_UT_STA_GD_V, object_name:IGS_AD_ADM_UT_STA_GD_V, status:VALID, product: IGS - Student System , description: Describes the grading schema code grades applicable to an administrative unit status. This caters for versions of the grading schema code. At any point in time, there should be only one grading schema code grade applicable. , implementation_dba_data: APPS.IGS_AD_ADM_UT_STA_GD_V ,
-
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_AS_CHNG_GRD_REQUESTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_CHNG_GRD_REQUESTS, object_name:IGSFV_AS_CHNG_GRD_REQUESTS, status:VALID, product: IGS - Student System , description: Request details for grade changes , implementation_dba_data: APPS.IGSFV_AS_CHNG_GRD_REQUESTS ,
-
VIEW: APPS.IGS_AD_ADM_UT_STA_GD_V
12.1.1
-
View: IGS_AS_GRD_SCH_GRADE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNT_PRV_GRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNT_PRV_GRADE_V, object_name:IGS_PS_UNT_PRV_GRADE_V, status:VALID,
-
VIEW: APPS.IGS_AS_GRD_SCH_GRADE_V
12.1.1
-
VIEW: APPS.IGSBV_UC_QUAL_DETAILS
12.1.1
-
VIEW: APPS.IGSBV_AS_GRD_SCH_TRANSLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRD_SCH_TRANSLATIONS, object_name:IGSBV_AS_GRD_SCH_TRANSLATIONS, status:VALID,
-
View: IGSFV_AS_CHNG_GRD_REQUESTS
12.2.2
product: IGS - Student System (Obsolete) , description: Request details for grade changes , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PRG_AWARD_AIMS, object_name:IGSFV_STUDENT_PRG_AWARD_AIMS, status:VALID,
-
View: IGSFV_AS_GRADING_SCHEMA_GRADES
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Grades , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_AS_GRD_SCH_TRANSLATIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRD_SCH_TRANSLATIONS, object_name:IGSFV_AS_GRD_SCH_TRANSLATIONS, status:VALID,
-
View: IGSFV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMA_GRADES, object_name:IGSFV_AS_GRADING_SCHEMA_GRADES, status:VALID, product: IGS - Student System , description: Grading Schema Grades , implementation_dba_data: APPS.IGSFV_AS_GRADING_SCHEMA_GRADES ,
-
View: IGSBV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMA_GRADES, object_name:IGSBV_AS_GRADING_SCHEMA_GRADES, status:VALID, product: IGS - Student System , description: Grading Schema Grades , implementation_dba_data: APPS.IGSBV_AS_GRADING_SCHEMA_GRADES ,
-
View: IGSBV_AS_GRADING_SCHEMA_GRADES
12.2.2
product: IGS - Student System (Obsolete) , description: Grading Schema Grades , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_ADM_UT_STA_GD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ADM_UT_STA_GD_V, object_name:IGS_AD_ADM_UT_STA_GD_V, status:VALID,
-
View: IGSFV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STUDENT_PRG_AWARD_AIMS, object_name:IGSFV_STUDENT_PRG_AWARD_AIMS, status:VALID, product: IGS - Student System , description: This view provides the information about the targeted awards for each student program attempt. , implementation_dba_data: APPS.IGSFV_STUDENT_PRG_AWARD_AIMS ,
-
View: IGSFV_STUDENT_PRG_AWARD_AIMS
12.2.2
product: IGS - Student System (Obsolete) , description: This view provides the information about the targeted awards for each student program attempt. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_UC_QUAL_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UC_QUAL_DETAILS, object_name:IGSBV_UC_QUAL_DETAILS, status:VALID, product: IGS - Student System , description: Base View for the qualifications awarded to an applicant , implementation_dba_data: APPS.IGSBV_UC_QUAL_DETAILS ,
-
View: IGSBV_UC_QUAL_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for the qualifications awarded to an applicant , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_GRD_SCH_GRADE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_GRD_SCH_GRADE_V, object_name:IGS_AS_GRD_SCH_GRADE_V, status:VALID,
-
VIEW: APPS.IGSFV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_AS_GRADING_SCHEMA_GRADES, object_name:IGSFV_AS_GRADING_SCHEMA_GRADES, status:VALID,
-
VIEW: APPS.IGSBV_AS_GRADING_SCHEMA_GRADES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AS_GRADING_SCHEMA_GRADES, object_name:IGSBV_AS_GRADING_SCHEMA_GRADES, status:VALID,
-
APPS.IGS_AS_GRD_SCH_GRADE_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_AS_GRD_SCH_GRADE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_GRD_SCH_GRADE, object_name:IGS_AS_GRD_SCH_GRADE, status:VALID,
-
VIEW: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
-
View: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_HESA_DETAILS, object_name:IGSFV_ST_PROG_ATT_HESA_DETAILS, status:VALID, product: IGS - Student System , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS ,
-
PACKAGE BODY: APPS.IGS_AS_GRD_SCH_GRADE_PKG
12.1.1
-
APPS.IGS_AS_GRD_SCH_GRADE_PKG dependencies on IGS_AS_GRD_SCH_GRADE
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'. ,