Search Results override_title
Overview
IGS_AS_SUSAH_V is a view in the Oracle EBS Student System (IGS) product family, owned by the APPS schema. It exposes the history records of Student Unit Set Attempt (SUSAH) data, providing a denormalized, history-aware presentation of unit set attempt information for each student. The view's underlying select combines an alias susah1 (the history table) with susa1 (the current/base record), resolving values from the history row first and falling back to the current row where the history value is null. Because it surfaces both the current and historical state of an attempt in a single row, the view is well suited for audit, point-in-time reporting, and integration scenarios where the effective attribute values must be reconstructed as of a given history end date (hist_end_dt).
Underlying Base Objects
The documented metadata lists no referenced base objects, but the view text makes the source objects evident. The primary source is referenced through the alias susah1, which corresponds to the history table IGS_AS_SUSAH (Student Unit Set Attempt History). The view also references a second source through the alias susa1, corresponding to IGS_AS_SUSA (Student Unit Set Attempt), which supplies the fallback values. In addition, the view calls three helper objects: IGS_AU_GEN_003.audp_get_susah_col, a package function used to retrieve an attribute value from the audit/history context; IGS_GE_DATE.IGSDATE, which converts a character representation into a date; and the sequence-based identity of the SUSAH record. This layered NVL construct means that for any attribute, the view returns the explicitly stored history value when present, otherwise the audit-derived value, and finally the current record value from susa1.
Key Columns
- person_id – The student's identifier, forming part of the composite key of the attempt record.
- course_cd, unit_set_cd, sequence_number – Together with person_id, these identify the specific unit set attempt and its ordinal position.
- hist_start_dt, hist_end_dt, hist_who – History framing columns indicating the validity window and the user responsible for the history row.
- selection_dt – The date on which the unit set attempt was selected; resolved from the history row, the audit function, or the current record.
- us_version_number – The version number of the unit set attempt record.
- student_confirmed_ind, primary_set_ind, voluntary_end_ind – Indicator flags describing confirmation, primacy of the set, and voluntary end status.
- end_dt – The end date of the attempt.
- parent_unit_set_cd, parent_sequence_number – References to the parent unit set and its sequence, supporting hierarchical set structures.
Common Use Cases and Queries
The view is typically queried for point-in-time reconstruction of unit set attempts and for audit reporting. Because selection_dt is a commonly filtered attribute, a typical query retrieves attempts selected within a date range:
SELECT person_id
, course_cd
, unit_set_cd
, sequence_number
, selection_dt
, student_confirmed_ind
FROM apps.igs_as_susah_v
WHERE selection_dt BETWEEN :start_date AND :end_date
AND course_cd = :course_cd;
A second common pattern resolves the effective state of an attempt as it stood on a particular date by constraining on hist_end_dt:
SELECT person_id
, unit_set_cd
, us_version_number
, selection_dt
, end_dt
, voluntary_end_ind
FROM apps.igs_as_susah_v
WHERE person_id = :person_id
AND hist_end_dt = :as_of_date;
Integrations that load student attempt data into downstream warehouses frequently select the full set of columns exposed by the view, relying on its NVL-based resolution to avoid additional joins against the current attempt table. When filtering on selection_dt, note that the value may originate from the history row, the audit function, or the current record, so reports should not assume a single physical storage location for the column.
-
VIEW: APPS.IGS_AS_SUSAH_V
12.1.1
-
View: IGS_AS_SUSAH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUSAH_V, object_name:IGS_AS_SUSAH_V, status:VALID, product: IGS - Student System , description: This view is used to merge student unit set attempt history with the current student unit set attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time , implementation_dba_data: APPS.IGS_AS_SUSAH_V ,
-
View: IGS_AS_SU_SETATMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_SETATMPT_H, object_name:IGS_AS_SU_SETATMPT_H, status:VALID, product: IGS - Student System , description: View for Unit set attempt history records. , implementation_dba_data: APPS.IGS_AS_SU_SETATMPT_H ,
-
View: IGS_AS_SUSAH_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge student unit set attempt history with the current student unit set attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_SETATMPT_H
12.2.2
product: IGS - Student System (Obsolete) , description: View for Unit set attempt history records. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SU_SETATMPT_H
12.1.1
-
VIEW: APPS.IGS_AS_SU_SETATMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_SETATMPT_H, object_name:IGS_AS_SU_SETATMPT_H, status:VALID,
-
View: IGS_GR_AWD_CRM_US_GP_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_GR_AWD_CRM_US_GP_V is used to include group_title which is either the override_title or a derived value. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_OFR_UNIT_SET
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_OFR_UNIT_SET, object_name:IGS_PS_OFR_UNIT_SET, status:VALID,
-
View: IGS_GR_AWD_CRM_US_GP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRM_US_GP_V, object_name:IGS_GR_AWD_CRM_US_GP_V, status:VALID, product: IGS - Student System , description: IGS_GR_AWD_CRM_US_GP_V is used to include group_title which is either the override_title or a derived value. , implementation_dba_data: APPS.IGS_GR_AWD_CRM_US_GP_V ,
-
View: IGSBV_ST_PR_CONCENTRATION_ATTS
12.2.2
product: IGS - Student System (Obsolete) , description: Describes student's attempt at program unit set , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_STU_PRG_CNCTRN_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STU_PRG_CNCTRN_ATTEMPT, object_name:IGSBV_STU_PRG_CNCTRN_ATTEMPT, status:VALID, product: IGS - Student System , description: Describes student's attempt at program unit set , implementation_dba_data: APPS.IGSBV_STU_PRG_CNCTRN_ATTEMPT ,
-
View: IGSBV_STU_PRG_CNCTRN_ATTEMPT
12.2.2
product: IGS - Student System (Obsolete) , description: Describes student's attempt at program unit set , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_GR_AWD_CRM_US_GP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_GR_AWD_CRM_US_GP, object_name:IGS_GR_AWD_CRM_US_GP, status:VALID,
-
View: IGSBV_ST_PR_CONCENTRATION_ATTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_PR_CONCENTRATION_ATTS, object_name:IGSBV_ST_PR_CONCENTRATION_ATTS, status:VALID, product: IGS - Student System , description: Describes student's attempt at program unit set , implementation_dba_data: APPS.IGSBV_ST_PR_CONCENTRATION_ATTS ,
-
APPS.IGS_PS_OFR_UNIT_SET_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_SU_SETATMPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_SETATMPT_V, object_name:IGS_AS_SU_SETATMPT_V, status:VALID,
-
View: IGSFV_ST_PR_CONCENTRATION_ATTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PR_CONCENTRATION_ATTS, object_name:IGSFV_ST_PR_CONCENTRATION_ATTS, status:VALID, product: IGS - Student System , description: Describes student's attempt at program unit set , implementation_dba_data: APPS.IGSFV_ST_PR_CONCENTRATION_ATTS ,
-
APPS.IGS_GR_AWD_CRM_US_GP_PKG SQL Statements
12.1.1
-
View: IGSFV_ST_PR_CONCENTRATION_ATTS
12.2.2
product: IGS - Student System (Obsolete) , description: Describes student's attempt at program unit set , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_SETATMPT_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view would be used in form , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_SETATMPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_SETATMPT_V, object_name:IGS_AS_SU_SETATMPT_V, status:VALID, product: IGS - Student System , description: This view would be used in form , implementation_dba_data: APPS.IGS_AS_SU_SETATMPT_V ,
-
View: IGSFV_STU_PRG_CNCTRN_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STU_PRG_CNCTRN_ATTEMPT, object_name:IGSFV_STU_PRG_CNCTRN_ATTEMPT, status:VALID, product: IGS - Student System , description: Describes student's attempt at program unit set , implementation_dba_data: APPS.IGSFV_STU_PRG_CNCTRN_ATTEMPT ,
-
View: IGSFV_STU_PRG_CNCTRN_ATTEMPT
12.2.2
product: IGS - Student System (Obsolete) , description: Describes student's attempt at program unit set , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SUSAH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUSAH_V, object_name:IGS_AS_SUSAH_V, status:VALID,
-
VIEW: APPS.IGS_GR_AWD_CRM_US_GP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_GR_AWD_CRM_US_GP_V, object_name:IGS_GR_AWD_CRM_US_GP_V, status:VALID,
-
VIEW: APPS.IGSBV_ST_PR_CONCENTRATION_ATTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_PR_CONCENTRATION_ATTS, object_name:IGSBV_ST_PR_CONCENTRATION_ATTS, status:VALID,
-
VIEW: APPS.IGSFV_ST_PR_CONCENTRATION_ATTS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PR_CONCENTRATION_ATTS, object_name:IGSFV_ST_PR_CONCENTRATION_ATTS, status:VALID,
-
VIEW: APPS.IGSBV_STU_PRG_CNCTRN_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_STU_PRG_CNCTRN_ATTEMPT, object_name:IGSBV_STU_PRG_CNCTRN_ATTEMPT, status:VALID,
-
TABLE: IGS.IGS_AS_SU_SETATMPT_H_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SU_SETATMPT_H_ALL, object_name:IGS_AS_SU_SETATMPT_H_ALL, status:VALID,
-
TABLE: IGS.IGS_EN_LGY_SUSA_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_LGY_SUSA_INT, object_name:IGS_EN_LGY_SUSA_INT, status:VALID,
-
VIEW: APPS.IGSFV_STU_PRG_CNCTRN_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_STU_PRG_CNCTRN_ATTEMPT, object_name:IGSFV_STU_PRG_CNCTRN_ATTEMPT, status:VALID,
-
APPS.IGS_AS_SU_SETATMPT_H_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_AS_SU_SETATMPT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SU_SETATMPT, object_name:IGS_AS_SU_SETATMPT, status:VALID,
-
PACKAGE: APPS.IGS_EN_SUSA_LGCY_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SU_SETATMPT_H_PKG
12.1.1
-
APPS.IGS_EN_SUSA_LGCY_PUB SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_OFR_UNIT_SET_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_GR_AWD_CRM_US_GP_PKG
12.1.1
-
APPS.IGS_AS_SU_SETATMPT_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SUSA_LGCY_PUB
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SU_SETATMPT_PKG
12.1.1
-
APPS.IGS_AS_SU_SETATMPT_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_EN_SUSA_LGCY_PUB dependencies on IGS_EN_LGY_SUSA_INT
12.1.1
-
APPS.IGS_EN_SUSA_LGCY_PUB dependencies on IGS_AS_SU_SETATMPT_PKG
12.1.1
-
APPS.IGS_GR_AWD_CRM_US_GP_PKG dependencies on IGS_GR_AWD_CRM_US_GP
12.1.1
-
APPS.IGS_AS_SU_SETATMPT_H_PKG dependencies on IGS_GE_NUMBER
12.1.1
-
APPS.IGS_PS_OFR_UNIT_SET_PKG dependencies on IGS_PS_OFR_UNIT_SET
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_003
12.1.1
-
APPS.IGS_AS_SU_SETATMPT_H_PKG dependencies on IGS_GE_MSG_STACK
12.1.1