Search Results enrolled_dt
Overview
IGS_AS_SUA_H_V is a public APPS view within the IGS (Student System) product family of Oracle E-Business Suite, valid in both 12.1.1 and 12.2.2. Its purpose is to present a consolidated, time-sliced picture of a student's unit attempt by merging records from the student unit attempt history table (the historical, period-stamped snapshots of a row's values) with the corresponding current student unit attempt record. Each row in the view represents the full set of column values that applied to a given student unit attempt during a defined time period, extending forward to the present day. This makes the view the principal reporting and integration interface for anyone needing to reconstruct "what the record looked like then" versus "what it looks like now," and it is the object surfaced when users search for the ENROLLED_DT-related attribute commonly referenced in enrollment override discussions, including the term override_enrolled_cp.
Underlying Base Objects
The view text selects primarily from SUAH1, an alias for the student unit attempt history entity, with correlated fallback to SUA1, the current student unit attempt record. Although the ETRM metadata does not enumerate formal base objects, the SQL reveals these two drivers along with the following function dependencies:
- IGS_AU_GEN_003.AUDP_GET_SUAH_COL — retrieves the historical value of a named column for a person, course, history end date, and unit offering option.
- IGS_GE_DATE.IGSDATE — converts the retrieved string value into a valid date for the date-typed columns.
The pattern is a per-column NVL: if the history row carries a value, it is used; otherwise the function looks up the prior historical value, and finally the current SUA row supplies the value. This layering is what allows a single view to expose a continuous timeline without materialising a separate table.
h4>Key ColumnsThe projection is dominated by identifiers, versioning, and status/date pairs:
- PERSON_ID, COURSE_CD, UNIT_CD, CAL_TYPE, CI_SEQUENCE_NUMBER, UOO_ID — the composite key identifying the student and the specific unit attempt.
- VERSION_NUMBER — numeric version of the attempt, resolved through AUDP_GET_SUAH_COL before falling back to SUA1.
- HIST_START_DT, HIST_END_DT, HIST_WHO — the validity window and the user who made the change.
- LOCATION_CD and UNIT_CLASS — delivery attributes, truncated to ten characters.
- ENROLLED_DT — the enrollment date; this is the column most associated with override_enrolled_cp searches, as it records when the student was enrolled for the period in question.
- UNIT_ATTEMPT_STATUS, ADMINISTRATIVE_UNIT_STATUS — lifecycle states, including discontinued handling.
- DISCONTINUED_DT and DCNT_REASON_CD — when and why the attempt ended.
- RULE_WAIVED_DT — the date a rule (such as an enrollment prerequisite) was waived.
Common Use Cases and Queries
Typical scenarios include point-in-time enrollment audits, status-change trend analysis, and reconciliation feeds into downstream student records systems. A representative query reconstructing the enrollment timeline for a student is:
SELECT person_id, course_cd, unit_cd, version_number, hist_start_dt, hist_end_dt, enrolled_dt, unit_attempt_status, rule_waived_dt FROM apps.igs_as_sua_h_v WHERE person_id = :p_person_id AND course_cd = :p_course ORDER BY hist_start_dt;
Reporting tools frequently join this view to IGS_PS_STD_UNIT_ATTEMPT_ALL and IGS_EN_STDNT_ENROLMENTS_ALL on PERSON_ID and UNIT_CD to enrich the historical slice with current enrolments. Because the view invokes PL/SQL functions per row, performance tuning should favour restricted PERSON_ID or HIST_END_DT predicates over full scans.
-
APPS.IGS_EN_GET_SUAEH_DTL SQL Statements
12.1.1
-
View: IGS_AS_SUA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_H_V, object_name:IGS_AS_SUA_H_V, status:VALID, product: IGS - Student System , description: This view is used to merge student unit attempt history with the current student unit attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_AS_SUA_H_V ,
-
View: IGS_EN_SU_ATTEMPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT_SV, object_name:IGS_EN_SU_ATTEMPT_SV, status:VALID, product: IGS - Student System , description: This view contains the secured rows in the student unit attempt table. , implementation_dba_data: APPS.IGS_EN_SU_ATTEMPT_SV ,
-
VIEW: APPS.IGS_SS_SU_SELECTION
12.1.1
-
View: IGS_SS_SU_SELECTION
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores the Student Unit Selections , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_SU_SELECTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_SU_SELECTION, object_name:IGS_SS_SU_SELECTION, status:VALID, product: IGS - Student System , description: This view stores the Student Unit Selections , implementation_dba_data: APPS.IGS_SS_SU_SELECTION ,
-
VIEW: APPS.IGS_AS_SUA_H_V
12.1.1
-
View: IGS_EN_SU_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT_H, object_name:IGS_EN_SU_ATTEMPT_H, status:VALID, product: IGS - Student System , description: IGS_EN_SU_ATTEMPT_H implements the student unit attempt. , implementation_dba_data: APPS.IGS_EN_SU_ATTEMPT_H ,
-
View: IGS_AS_SUA_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge student unit attempt history with the current student unit attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_SU_ATTEMPT_H
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_EN_SU_ATTEMPT_H implements the student unit attempt. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SU_ATTEMPT_SV
12.1.1
-
View: IGS_AS_SUAH_EFFECTIVE_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: Used to create effective student unit attempt history records in recognition of back dating enrollment and discontinuation dates. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SUAH_EFFECTIVE_H_V
12.1.1
-
VIEW: APPS.IGS_EN_SU_ATTEMPT_H
12.1.1
-
View: IGS_EN_SU_ATTEMPT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the secured rows in the student unit attempt table. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_SS_SU_SELECTION
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_SU_SELECTION, object_name:IGS_SS_SU_SELECTION, status:VALID,
-
View: IGS_AS_SUAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAH_EFFECTIVE_H_V, object_name:IGS_AS_SUAH_EFFECTIVE_H_V, status:VALID, product: IGS - Student System , description: Used to create effective student unit attempt history records in recognition of back dating enrollment and discontinuation dates. , implementation_dba_data: APPS.IGS_AS_SUAH_EFFECTIVE_H_V ,
-
View: IGS_AS_SU_ATTEMPT_LKUP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes valid unit attempts for a student's attempt studying at a particular unit offered by the university , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SU_ATTEMPT_LKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_ATTEMPT_LKUP_V, object_name:IGS_AS_SU_ATTEMPT_LKUP_V, status:VALID, product: IGS - Student System , description: Describes valid unit attempts for a student's attempt studying at a particular unit offered by the university , implementation_dba_data: APPS.IGS_AS_SU_ATTEMPT_LKUP_V ,
-
View: IGS_EN_SU_ATTEMPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT, object_name:IGS_EN_SU_ATTEMPT, status:VALID, product: IGS - Student System , description: Implements the student unit attempt. , implementation_dba_data: APPS.IGS_EN_SU_ATTEMPT ,
-
VIEW: APPS.IGS_EN_SU_ATTEMPT
12.1.1
-
TABLE: IGS.IGS_SS_SU_SELECTION_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_SS_SU_SELECTION_ALL, object_name:IGS_SS_SU_SELECTION_ALL, status:VALID,
-
VIEW: APPS.IGS_AS_SUAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAH_EFFECTIVE_H_V, object_name:IGS_AS_SUAH_EFFECTIVE_H_V, status:VALID,
-
APPS.IGS_EN_GEN_007 SQL Statements
12.1.1
-
View: IGS_EN_SU_ATTEMPT
12.2.2
product: IGS - Student System (Obsolete) , description: Implements the student unit attempt. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SU_ATTEMPT_LKUP_V
12.1.1
-
VIEW: APPS.IGS_AS_SUAH_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUAH_LOAD_V, object_name:IGS_AS_SUAH_LOAD_V, status:VALID,
-
VIEW: APPS.IGS_AS_SUA_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_LOAD_V, object_name:IGS_AS_SUA_LOAD_V, status:VALID,
-
VIEW: APPS.IGS_PR_SUA_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_SUA_INQ_V, object_name:IGS_PR_SUA_INQ_V, status:VALID,
-
View: IGS_EN_SUA_WLST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SUA_WLST_V, object_name:IGS_EN_SUA_WLST_V, status:VALID, product: IGS - Student System , description: This view describes the data pertaining to the student unit attempt waitlist. , implementation_dba_data: APPS.IGS_EN_SUA_WLST_V ,
-
View: IGS_EN_SUA_WLST_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes the data pertaining to the student unit attempt waitlist. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_AS_SC_ATMPT_ENR
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SC_ATMPT_ENR, object_name:IGS_AS_SC_ATMPT_ENR, status:VALID,
-
VIEW: APPS.IGS_AS_SLIST_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_SCAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAE_V, object_name:IGS_AS_SCAE_V, status:VALID,
-
View: IGS_EN_SUA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SUA_V, object_name:IGS_EN_SUA_V, status:VALID, product: IGS - Student System , description: This view incorporates the student unit attempt record and its details such as the enrolled date, the administrative status unit associated with it and any discontinuation in the units and the corresponding reasons. , implementation_dba_data: APPS.IGS_EN_SUA_V ,
-
View: IGS_EN_SUA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view incorporates the student unit attempt record and its details such as the enrolled date, the administrative status unit associated with it and any discontinuation in the units and the corresponding reasons. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SUA_WLST_V
12.1.1
-
View: IGS_AS_SCAE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAE_V, object_name:IGS_AS_SCAE_V, status:VALID, product: IGS - Student System , description: This view is used to combine the student course attempt enrolment details with calendar details so the records can be order by start and end date. , implementation_dba_data: APPS.IGS_AS_SCAE_V ,
-
View: IGS_AS_SCAE_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to combine the student course attempt enrolment details with calendar details so the records can be order by start and end date. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_GET_SUAEH_DTL
12.1.1
-
VIEW: APPS.IGS_AS_SU_ATTEMPT_LKUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_ATTEMPT_LKUP_V, object_name:IGS_AS_SU_ATTEMPT_LKUP_V, status:VALID,
-
APPS.IGS_AS_SC_ATMPT_ENR_PKG SQL Statements
12.1.1
-
View: IGS_EN_SUA_RULCHK_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SUA_RULCHK_V, object_name:IGS_EN_SUA_RULCHK_V, status:VALID, product: IGS - Student System , description: This view contains Unit Attempt records with failed unit rule details. , implementation_dba_data: APPS.IGS_EN_SUA_RULCHK_V ,
-
View: IGS_AS_SUA_INQ_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_INQ_V, object_name:IGS_AS_SUA_INQ_V, status:VALID, product: IGS - Student System , description: - Retrofitted , implementation_dba_data: APPS.IGS_AS_SUA_INQ_V ,
-
APPS.IGS_FI_GET_SUAEH SQL Statements
12.1.1
-
View: IGS_EN_SUA_RULCHK_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains Unit Attempt records with failed unit rule details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUA_ASS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_ASS_V, object_name:IGS_AS_SUA_ASS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AS_SUA_ASS_V ,
-
View: IGS_AS_SUA_ASS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUA_LOAD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_LOAD_V, object_name:IGS_AS_SUA_LOAD_V, status:VALID, product: IGS - Student System , description: Descibes the load on a student's attempt at studying a particular unit offered by the university , implementation_dba_data: APPS.IGS_AS_SUA_LOAD_V ,
-
View: IGS_AS_SUA_LOAD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Descibes the load on a student's attempt at studying a particular unit offered by the university , implementation_dba_data: Not implemented in this database ,