Search Results award_grade
Overview
The IGS_EN_SPAA_HIST table is a core data repository within the Oracle E-Business Suite's Student Administration (Oracle EBS 12.1.1 / 12.2.2) module, specifically under the IGS (iGrants) schema. Its primary function is to maintain a historical record of awards associated with a student's program attempt. This table acts as an audit trail, capturing the lifecycle of an award—such as a degree or certificate—for a specific student and course combination over time. It is essential for tracking academic progression, final outcomes, and compliance reporting, serving as the system of record for conferred academic honors and qualifications.
Key Information Stored
The table's structure is centered on identifying the student, the program, and the award details. The mandatory key columns (PERSON_ID, COURSE_CD, AWARD_CD, CREATION_DATE) form a unique composite primary key (IGS_EN_SPAA_HIST_PK). Critical data points include temporal markers (START_DATE, END_DATE, CONFERRAL_DATE) and the definitive academic results. Notably, the AWARD_MARK column, as indicated by the user's search, stores the numerical mark or score achieved for the award. The AWARD_GRADE column stores the corresponding letter or descriptive grade, which is linked to a specific GRADING_SCHEMA_CD and GS_VERSION_NUMBER. The COMPLETE_FLAG indicates the final status of the award process.
Common Use Cases and Queries
This table is pivotal for generating official academic transcripts, degree audit reports, and award verification. A common reporting requirement is to retrieve the final awarded mark and grade for a student in a completed program. The following query pattern exemplifies this, filtering for completed awards and including the key result columns:
- Retrieve Award History for a Specific Student and Course:
SELECT person_id, course_cd, award_cd, conferral_date, award_mark, award_grade FROM igs.igs_en_spaa_hist WHERE person_id = :p_student_id AND course_cd = :p_course_code AND complete_flag = 'Y' ORDER BY conferral_date DESC; - Analyze Award Marks for a Cohort:
SELECT course_cd, award_cd, AVG(award_mark) as avg_mark, COUNT(*) as num_awards FROM igs.igs_en_spaa_hist WHERE complete_flag = 'Y' AND award_mark IS NOT NULL GROUP BY course_cd, award_cd;
Related Objects
While the provided dependency information states this table does not reference other objects, it is inherently linked to core student and academic structures. It is logically related to tables storing person details (e.g., PER_ALL_PEOPLE_F), course definitions, and grading schema master data (IGS_AS_GRADING_SCH_VER). The table's primary key suggests it is a child entity of a student's program attempt record. Its data is likely populated and maintained by processes and APIs within the Student Administration module, particularly those handling award conferral and grade processing. The non-unique index IGS_EN_SPAA_HIST_N1 on grade-related columns supports efficient queries for grading analysis and reporting.
-
APPS.IGS_EN_SPAA_LGCY_PUB dependencies on IGS_EN_LGY_SPAA_INT
12.1.1
-
TABLE: IGS.IGS_EN_SPAA_HIST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPAA_HIST, object_name:IGS_EN_SPAA_HIST, status:VALID,
-
View: IGS_EN_SPA_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPA_AWD_AIM_V, object_name:IGS_EN_SPA_AWD_AIM_V, status:VALID, product: IGS - Student System , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: APPS.IGS_EN_SPA_AWD_AIM_V ,
-
APPS.IGS_EN_SPAA_LGCY_PUB dependencies on IGS_AS_GRD_SCH_GRADE_PKG
12.1.1
-
VIEW: APPS.IGS_EN_SPA_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPA_AWD_AIM_V, object_name:IGS_EN_SPA_AWD_AIM_V, status:VALID,
-
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: APPS.IGS_GR_GRADUAND_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUAND_DTL_V, object_name:IGS_GR_GRADUAND_DTL_V, status:VALID,
-
VIEW: APPS.IGS_EN_SPAA_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPAA_HIST_V, object_name:IGS_EN_SPAA_HIST_V, status:VALID,
-
View: IGSBV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PRG_AWARD_AIMS, object_name:IGSBV_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.IGSBV_STUDENT_PRG_AWARD_AIMS ,
-
View: IGS_EN_SPAA_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SPAA_HIST_V, object_name:IGS_EN_SPAA_HIST_V, status:VALID, product: IGS - Student System , description: View to display the student program attempt award history. , implementation_dba_data: APPS.IGS_EN_SPAA_HIST_V ,
-
View: IGSBV_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: APPS.IGS_PR_STD_PRG_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STD_PRG_AWD_AIM_V, object_name:IGS_PR_STD_PRG_AWD_AIM_V, status:VALID,
-
TABLE: IGS.IGS_EN_SPA_AWD_AIM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SPA_AWD_AIM, object_name:IGS_EN_SPA_AWD_AIM, status:VALID,
-
VIEW: APPS.IGSBV_STUDENT_PRG_AWARD_AIMS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STUDENT_PRG_AWARD_AIMS, object_name:IGSBV_STUDENT_PRG_AWARD_AIMS, status:VALID,
-
View: IGS_EN_SPAA_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: View to display the student program attempt award history. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PR_STD_PRG_AWD_AIM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STD_PRG_AWD_AIM_V, object_name:IGS_PR_STD_PRG_AWD_AIM_V, status:VALID, product: IGS - Student System , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: APPS.IGS_PR_STD_PRG_AWD_AIM_V ,
-
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: IGS_PR_STD_PRG_AWD_AIM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SPA_AWD_AIM_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the information about maintenance of a student's targeted awards for each student program attempt, including start/end dates and completion flag. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_EN_LGY_SPAA_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_LGY_SPAA_INT, object_name:IGS_EN_LGY_SPAA_INT, status:VALID,
-
View: IGS_GR_GRADUAND_DTL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_GRADUAND_DTL_V, object_name:IGS_GR_GRADUAND_DTL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_GR_GRADUAND_DTL_V ,
-
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: IGS_GR_GRADUAND_DTL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_SPAA_HIST_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_SPAA_LGCY_PUB SQL Statements
12.1.1
-
APPS.IGS_EN_SPAA_HIST_PKG dependencies on IGS_EN_SPAA_HIST
12.1.1
-
PACKAGE: APPS.IGS_EN_SPAA_LGCY_PUB
12.1.1
-
APPS.IGS_EN_SPAA_LGCY_PUB dependencies on FND_API
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SPAA_HIST_PKG
12.1.1
-
APPS.IGS_EN_SPA_AWD_AIM_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SPAA_LGCY_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SPA_AWD_AIM_PKG
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'. ,