Search Results incomp_grading_schema_cd
Overview
IGS_AS_SUAOA_V is an APPS-owned database view within the Oracle E-Business Suite Student System (IGS) product family. Its name reflects its function: a "student unit attempt outcome aggregate" view that exposes the most recent outcome recorded against a student unit attempt, expressed as either a grade or a mark, across differing grading periods. In Oracle EBS 12.1.1 and 12.2.2, this view serves as a reporting and integration surface for academic outcome data, insulating downstream consumers from the row-proliferation that occurs in the underlying stamp/outcome table when multiple outcomes are recorded over time for the same unit attempt.
The view is particularly relevant to users reconciling grade history, academic transcript extraction, and outcome finalisation reporting, and it is the object queried by the manual_override_flag search term — a column used to distinguish outcomes that were entered manually by a user from those generated by standard grading or processing logic.
Underlying Base Objects
The view is defined over a single documented base table, IGS_AS_SU_STMPTOUT (aliased SUAO). Rather than a simple projection, the view applies a correlated subquery filter that restricts returned rows to those whose OUTCOME_DT equals the maximum OUTCOME_DT for the matching combination of PERSON_ID, COURSE_CD, UOO_ID, and GRADING_PERIOD_CD. This effectively returns the latest outcome per student, per unit offering option, per grading period.
The ETRM metadata for 12.2.2 documents no additional referenced base objects beyond this table, so all columns in the view originate from IGS_AS_SU_STMPTOUT. Because the view is a pure selection and projection with a correlated aggregate filter, no materialisation occurs; query cost is therefore governed by the indexing and volume of the base table.
Key Columns
PERSON_ID,COURSE_CD,UNIT_CD,UOO_ID— identify the student, course, unit, and unit offering option to which the outcome belongs.OUTCOME_DT— the outcome date; the view returns only the most recent value per grading period grouping.GRADE,MARK— the recorded outcome value in grade or numeric mark form.GRADING_SCHEMA_CD,VERSION_NUMBER— identify the grading scheme and version applied.FINALISED_OUTCOME_IND— indicates whether the outcome has been finalised.MANUAL_OVERRIDE_FLAG— flags outcomes that were manually overridden rather than system-derived; central to audit and data-quality reporting.MARK_CAPPED_FLAG— indicates whether the mark was capped by grading rules.SHOW_ON_ACADEMIC_HISTRY_FLAG— controls visibility of the outcome on academic history.TRANSLATED_GRADE,TRANSLATED_GRADING_SCHEMA_CD,TRANSLATED_DT— hold translated or converted grade equivalents.S_GRADE_CREATION_METHOD_TYPE— the method by which the grade was created.- Incomplete-grading columns (
INCOMP_DEADLINE_DATE,INCOMP_DEFAULT_GRADE,INCOMP_DEFAULT_MARK) and audit columns (CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE).
Common Use Cases and Queries
Typical uses include identifying students whose latest outcome was manually overridden, validating finalised outcomes for transcript generation, and extracting current grade/mark data for a person, unit, and grading period.
SELECT person_id, unit_cd, grading_period_cd, grade, mark, manual_override_flag FROM apps.igs_as_suaoa_v WHERE manual_override_flag = 'Y' AND outcome_dt >= SYSDATE - 365;
A second common pattern retrieves the latest outcome for a specific student and unit offering:
SELECT person_id, course_cd, unit_cd, grade, mark, finalised_outcome_ind FROM apps.igs_as_suaoa_v WHERE person_id = :p_person_id AND uoo_id = :p_uoo_id;
Because the view already resolves to the latest outcome per grading period, these queries avoid duplicate rows that the base table would otherwise produce, making it suitable for concurrent-program extracts and integration interfaces.
-
View: IGS_AS_SUAOA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAOA_V, object_name:IGS_AS_SUAOA_V, status:VALID, product: IGS - Student System , description: Describes the most recent outcome of student unit attempt as grade or mark for different grading periods , implementation_dba_data: APPS.IGS_AS_SUAOA_V ,
-
View: IGS_AS_UG_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UG_ADI_V, object_name:IGS_AS_UG_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Unit Grading WebADI View , implementation_dba_data: APPS.IGS_AS_UG_ADI_V ,
-
View: IGS_AS_SUAOA_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the most recent outcome of student unit attempt as grade or mark for different grading periods , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SUAOA_V
12.1.1
-
View: IGS_AS_UG_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Unit Grading WebADI View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_UGAI_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Unit Grading / Assessment Item WebADI View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_UGAI_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UGAI_ADI_V, object_name:IGS_AS_UGAI_ADI_V, status:VALID, product: IGS - Student System , description: Unit Grading / Assessment Item WebADI View , implementation_dba_data: APPS.IGS_AS_UGAI_ADI_V ,
-
View: IGS_AS_SU_STMPTOUT
12.2.2
product: IGS - Student System (Obsolete) , description: Multi org View for student unit attempt outcome records. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_STMPTOUT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_STMPTOUT, object_name:IGS_AS_SU_STMPTOUT, status:VALID, product: IGS - Student System , description: Multi org View for student unit attempt outcome records. , implementation_dba_data: APPS.IGS_AS_SU_STMPTOUT ,
-
VIEW: APPS.IGS_AS_UGAI_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_UG_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_UG_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UG_ADI_V, object_name:IGS_AS_UG_ADI_V, status:VALID,
-
VIEW: APPS.IGS_AS_SU_STMPTOUT
12.1.1
-
VIEW: APPS.IGS_AS_SUAOA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAOA_V, object_name:IGS_AS_SUAOA_V, status:VALID,
-
VIEW: APPS.IGS_AS_UGAI_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UGAI_ADI_V, object_name:IGS_AS_UGAI_ADI_V, status:VALID,
-
TABLE: IGS.IGS_AS_LGCY_SUO_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_LGCY_SUO_INT, object_name:IGS_AS_LGCY_SUO_INT, status:VALID,
-
VIEW: APPS.IGS_AS_SU_STMPTOUT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_STMPTOUT, object_name:IGS_AS_SU_STMPTOUT, status:VALID,
-
TABLE: IGS.IGS_AS_SU_STMPTOUT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SU_STMPTOUT_ALL, object_name:IGS_AS_SU_STMPTOUT_ALL, status:VALID,
-
APPS.IGS_AS_SUAO_LGCY_PUB SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_AS_SUAO_LGCY_PUB
12.1.1
-
APPS.IGS_AS_SU_STMPTOUT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SU_STMPTOUT_PKG
12.1.1
-
APPS.IGS_AS_SUAO_LGCY_PUB dependencies on IGS_AS_LGCY_SUO_INT
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SUAO_LGCY_PUB
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'. ,