Search Results igs_as_su_stmptout
Overview
IGS_AS_SU_STMPTOUT is a multi-organization view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product. It presents student unit attempt outcome records — the graded results a student receives for a specific unit attempt within a teaching period. The view exposes the outcome data in a security-enabled, operating-unit-aware form, making it the standard reference object for reporting and integration when outcome information must be filtered by organization.
Within the EBS architecture, multi-org views are defined over a base table and include the ORG_ID column so that the application can apply operating unit security through the Multi-Org Access Control (MOAC) mechanism. In ETRM 12.2.2 the view is registered as VALID with the APPS owner. The view's role is to serve as the query surface for student unit attempt outcome data in forms, concurrent programs, and custom reports, preserving the full attribute set of the underlying record while enabling client-level (operating unit) partitioning. Version applicability spans 12.1.1 and 12.2.2, where its definition and column set remain consistent with the IGS data model.
Underlying Base Objects
The ETRM metadata for this view lists no separately documented referenced base objects, and the available documentation excerpt does not retain the FROM clause of the view definition. The view text captured in the implementation/DBA data is an explicit column projection: every column is selected from an alias named TAB, with the first column exposed as TAB.ROWID ROW_ID. This pattern is characteristic of a view defined over a single base table, aliased TAB, rather than a join.
By the naming convention and column set, the base object is the student unit attempt outcome table in the IGS Student System schema, from which the view carries forward the outcome key, grade, mark, grading schema, and audit columns. Because only the base table's ORG_ID column is surfaced, the view functions as the multi-org projection of that table; any row visible through the view satisfies the operating unit predicate applied by MOAC at runtime. The ROW_ID column derived from ROWID allows the view to support updatable, row-addressable operations in the associated maintenance form.
Key Columns
The view exposes the complete outcome record. The principal columns include:
- PERSON_ID, COURSE_CD, UNIT_CD, CAL_TYPE, CI_SEQUENCE_NUMBER, CI_START_DT, CI_END_DT — the student and the calendar/unit attempt context identifying which teaching instance the outcome belongs to.
- GRADE, MARK, GRADING_SCHEMA_CD, VERSION_NUMBER — the awarded grade, numeric mark, and the grading schema and version under which it was assigned.
- FINALISED_OUTCOME_IND, NUMBER_TIMES_KEYED, S_GRADE_CREATION_METHOD_TYPE — outcome status and the method by which the grade was created or captured.
- TRANSLATED_GRADING_SCHEMA_CD, TRANSLATED_VERSION_NUMBER, TRANSLATED_GRADE, TRANSLATED_DT — the translated (external or alternate-schema) representation of the grade and its translation date.
- INCOMP_DEADLINE_DATE, INCOMP_GRADING_SCHEMA_CD, INCOMP_VERSION_NUMBER, INCOMP_DEFAULT_GRADE, INCOMP_DEFAULT_MARK — incomplete-grade tracking, including the default grade and mark applied if the incomplete is not resolved by the deadline.
- GRADING_PERIOD_CD, OUTCOME_DT, COMMENTS, MARK_CAPPED_FLAG, SHOW_ON_ACADEMIC_HISTRY_FLAG, UOO_ID — grading period, outcome date, free-text comments, capping indicator, academic history display flag, and the unit offering option identifier.
- ORG_ID — the operating unit that owns the outcome record; this column drives MOAC security.
- Audit columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, and the concurrent request set REQUEST_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, PROGRAM_UPDATE_DATE.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1–ATTRIBUTE20 — the standard EBS descriptive flexfield columns.
Common Use Cases and Queries
The view is typically used to report or extract finalized and provisional outcomes for students within an operating unit, to feed academic history and transcript processes, and to drive interfaces that export marks to external systems. A representative query retrieves finalized outcomes for a unit attempt:
SELECT person_id, course_cd, unit_cd, ci_sequence_number, grade, mark, grading_schema_cd, outcome_dt FROM igs_as_su_stmptout WHERE org_id = :p_org_id AND finalised_outcome_ind = 'Y' AND grading_period_cd = :p_period;SELECT person_id, unit_cd, translated_grade, translated_dt FROM igs_as_su_stmptout WHERE org_id = :p_org_id AND translated_grading_schema_ccd IS NOT NULL ORDER BY translated_dt;SELECT person_id, unit_cd, incom_default_grade FROM igs_as_su_stmptout WHERE incom_deadline_date < SYSDATE AND incom_default_grade IS NOT NULL;
Because the view is a MOAC-enabled projection of the base outcome table, customers should always constrain queries by ORG_ID (or rely on the active organization context) to avoid returning data across operating units. Additional filtering on FINALISED_OUTCOME_IND, GRADING_PERIOD_CD, and the calendar context columns is recommended for performance and correctness.
-
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: 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: APPS.IGS_PR_SUA_FINAL_OUTCOME_V
12.1.1
-
View: IGS_PR_SUA_FINAL_OUTCOME_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SUA_FINAL_OUTCOME_V, object_name:IGS_PR_SUA_FINAL_OUTCOME_V, status:VALID, product: IGS - Student System , description: This view describes the outcome to a student unit attempt, in theform of a mark and possibly a grade (if the default grade for themark is overridden).It also descibes a student's attempt at studying a particularunit offered by the universit , implementation_dba_data: APPS.IGS_PR_SUA_FINAL_OUTCOME_V ,
-
VIEW: APPS.IGS_AS_SUAO_V
12.1.1
-
View: IGS_PR_SUA_FINAL_OUTCOME_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the outcome to a student unit attempt, in theform of a mark and possibly a grade (if the default grade for themark is overridden).It also descibes a student's attempt at studying a particularunit offered by the universit , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SUAOA_V
12.1.1
-
APPS.IGS_AS_VAL_SUAO SQL Statements
12.1.1
-
View: IGS_AS_SUAO_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAO_V, object_name:IGS_AS_SUAO_V, status:VALID, product: IGS - Student System , description: Describes the outcome to a student unit attempt, in the form of a mark and possibly a grade. , implementation_dba_data: APPS.IGS_AS_SUAO_V ,
-
View: IGS_AS_SUAO_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the outcome to a student unit attempt, in the form of a mark and possibly a grade. , implementation_dba_data: Not implemented in this database ,
-
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_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 ,
-
PACKAGE: APPS.IGS_AS_VAL_SUAO
12.1.1
-
APPS.IGS_SS_FACULTY_PKG SQL Statements
12.1.1
-
PACKAGE: APPS.IGS_AS_GRD_ATT_BE_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_AS_GRD_ATT_BE_PKG, status:VALID,
-
PACKAGE: APPS.IGS_PR_ACAD_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PR_ACAD_DETAILS, status:VALID,
-
PACKAGE: APPS.IGS_AS_CALC_AWARD_MARK
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_AS_CALC_AWARD_MARK, status:VALID,
-
VIEW: APPS.IGS_AS_SU_ATTEMPT_LKUP_V
12.1.1
-
SYNONYM: APPS.IGS_AS_GAA_SUB_HIST
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AS_GAA_SUB_HIST, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_SUAO
12.1.1
-
APPS.IGS_AS_VAL_GSGT SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_VAL_SUT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SUT, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GRD_ATT_BE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GRD_ATT_BE_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_SUAO
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_SUAO, status:VALID,
-
PACKAGE: APPS.IGS_DA_XML_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_DA_XML_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_FINALIZE_GRADE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_FINALIZE_GRADE, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_CGR_WF_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_CGR_WF_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_VAL_GSGT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_VAL_GSGT, status:VALID,
-
PACKAGE BODY: APPS.IGS_SS_FACULTY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SS_FACULTY_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_007
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_007, status:VALID,
-
PACKAGE BODY: APPS.IGS_PR_ACAD_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_ACAD_DETAILS, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_002, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_013
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_013, status:VALID,
-
PACKAGE BODY: APPS.IGS_PR_GEN_002
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_GEN_002, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_VAL_SCT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_SCT, status:VALID,
-
PACKAGE BODY: APPS.IGS_SS_FACULTY_PKG
12.1.1
-
SYNONYM: APPS.IGS_AS_SU_STMPTOUT_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AS_SU_STMPTOUT_ALL, status:VALID,
-
VIEW: APPS.IGS_AS_SU_STMPTOUT_MID
12.1.1
-
PACKAGE BODY: APPS.IGS_IN_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_IN_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_PR_CP_GPA
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_CP_GPA, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_005
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_005, status:VALID,
-
VIEW: APPS.IGS_AS_SU_STMPTOUT_V
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VAL_UV
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VAL_UV, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_DA_XML_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_DA_XML_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_GEN_003, status:VALID,
-
PACKAGE BODY: APPS.IGS_PR_GEN_005
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PR_GEN_005, status:VALID,
-
PACKAGE BODY: APPS.IGS_AS_CALC_AWARD_MARK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AS_CALC_AWARD_MARK, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_008, status:VALID,
-
VIEW: APPS.IGS_AS_STD_UNT_ATMPT_OTCM_H_V
12.1.1