Search Results derived_completion_perd
Overview
The IGS_AS_SC_ATTEMPT_H_ALL table, owned by the IGS schema within the Oracle E-Business Suite Student System product family, records the historical audit trail of changes applied to a student's program or course attempt. Where its sibling attempt table stores the current state of a student's enrollment and progression, IGS_AS_SC_ATTEMPT_H_ALL preserves prior versions of that record so that institutions can reconstruct how a student's attempt status, attendance mode, progression outcome, or completion details evolved over time. It is a date-effective history table: each row represents a distinct period of validity for the attempt, bounded by HIST_START_DT and HIST_END_DT.
In 12.1.1 the table is documented with 62 columns, and remains structurally consistent through 12.2.2. Because it carries reference relationships to IGS_PR_CLASS_STD (via IGS_PR_CLASS_STD_ID) and IGS_PS_OFR_OPT_ALL (via COO_ID), a data-vault heuristic classifies this object as a link — it connects student persons, course attempts, and offering option references across a defined time window. Practitioners modeling the student system should treat it as the historized link between attempts and their reference context rather than as an independent hub.
Key Information Stored
The primary key is IGS_AS_SC_ATTEMPT_H_ALL_PK, composed of PERSON_ID, COURSE_CD, and HIST_START_DT. A unique index, IGS_AS_SC_ATTEMPT_H_ALL_U1, is defined on the same three columns, confirming them as the documented business-key candidate. HIST_START_DT and HIST_END_DT together define the effective dating of each historical version.
The principal informational columns include:
- PERSON_ID — the student's identifier, the primary driving key for most queries.
- COURSE_CD and VERSION_NUMBER — the course attempt, including versioned course definitions.
- COURSE_ATTEMPT_STATUS and PROGRESSION_STATUS — the attempt and progression state as of the history window.
- ATTENDANCE_MODE, ATTENDANCE_TYPE, and DERIVED_ATT_MODE / DERIVED_ATT_TYPE — attendance characteristics, both entered and system-derived.
- COMMENCEMENT_DT, DISCONTINUED_DT, LAPSED_DT, and LAST_DATE_OF_ATTENDANCE — key lifecycle dates for the attempt.
- NOMINATED_COMPLETION_YR, DERIVED_COMPLETION_YR, and OVERRIDE_CMPL_DT — completion expectation and actual completion data.
- FUNDING_SOURCE, FEE_CAT, and CORRESPONDENCE_CAT — regulatory and fee-related classifications.
- COO_ID and IGS_PR_CLASS_STD_ID — foreign references to the course offering option and class standing record.
- Audit columns CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and ORG_ID.
Common Use Cases and Queries
Primary reporting scenarios include point-in-time reconstruction of a student's attempt status, regulatory returns requiring full attempt history, and auditing of status transitions such as discontinuation or lapse. A typical pattern filters by person and orders by history date:
- Current-as-of query:
SELECT * FROM igs_as_sc_attempt_h_all WHERE person_id = :p AND :as_of_dt BETWEEN hist_start_dt AND NVL(hist_end_dt, SYSDATE); - Change history:
SELECT person_id, course_cd, hist_start_dt, hist_end_dt, course_attempt_status, progression_status FROM igs_as_sc_attempt_h_all WHERE person_id = :p ORDER BY course_cd, hist_start_dt; - Status-transition report: joining successive history rows per person/course to identify changes in COURSE_ATTEMPT_STATUS.
Because HIST_END_DT may be null for the most recent version, any as-of query should use NVL(HIST_END_DT, SYSDATE) to correctly capture open-ended rows.
Related Objects
The two documented foreign keys anchor this table to the wider student system:
- IGS_PR_CLASS_STD — joined via IGS_AS_SC_ATTEMPT_H_ALL.IGS_PR_CLASS_STD_ID = IGS_PR_CLASS_STD.IGS_PR_CLASS_STD_ID, providing class standing context.
- IGS_PS_OFR_OPT_ALL — joined via IGS_AS_SC_ATTEMPT_H_ALL.COO_ID = IGS_PS_OFR_OPT_ALL.COO_ID, supplying the offering option definition.
- IGS_AS_SC_ATTEMPT_ALL — the current-state counterpart from which history rows are generated; queries commonly compare the two to identify deltas.
- IGS_PS_ENR_ALL and IGS_PR_STUDY_ATTEMPT — related enrollment and study-attempt objects referencing the same student and course keys.
- HZ_PARTIES / PERSON access via PERSON_ID for student biographical reporting.
Each relationship should be verified against the deployed schema, as column availability can vary by patch level.
-
Table: IGS_AS_SC_ATTEMPT_H_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H_ALL, object_name:IGS_AS_SC_ATTEMPT_H_ALL, status:VALID, product: IGS - Student System , description: Describes history of changes to student program attempt , implementation_dba_data: IGS.IGS_AS_SC_ATTEMPT_H_ALL ,
-
Table: IGS_EN_STDNT_PS_ATT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_ALL, object_name:IGS_EN_STDNT_PS_ATT_ALL, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular course offered by the university. , implementation_dba_data: IGS.IGS_EN_STDNT_PS_ATT_ALL ,
-
APPS.IGS_EN_GET_SCAEH_DTL SQL Statements
12.1.1
-
View: IGS_PR_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PS_ATT_V, object_name:IGS_PR_STDNT_PS_ATT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PR_STDNT_PS_ATT_V ,
-
View: IGS_PR_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
-
View: IGS_EN_STDNT_PS_ATT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SCAH_EFFECTIVE_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: Used to create effective student program attempt history records in recognition of back dating commencement and discontinuation dates. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
-
View: IGS_EN_STDNT_PS_ATT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_SV, object_name:IGS_EN_STDNT_PS_ATT_SV, status:VALID, product: IGS - Student System , description: This view contains the secured rows in the student program attempt table. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_SV ,
-
View: IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAH_EFFECTIVE_H_V, object_name:IGS_AS_SCAH_EFFECTIVE_H_V, status:VALID, product: IGS - Student System , description: Used to create effective student program attempt history records in recognition of back dating commencement and discontinuation dates. , implementation_dba_data: APPS.IGS_AS_SCAH_EFFECTIVE_H_V ,
-
View: IGS_EN_STDNT_PS_ATT
12.2.2
product: IGS - Student System (Obsolete) , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT, object_name:IGS_EN_STDNT_PS_ATT, status:VALID, product: IGS - Student System , description: This view contains the data of student attempts for a given specific program structure. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT ,
-
View: IGS_AS_SC_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H, object_name:IGS_AS_SC_ATTEMPT_H, status:VALID, product: IGS - Student System , description: This view is multi org view , implementation_dba_data: APPS.IGS_AS_SC_ATTEMPT_H ,
-
VIEW: APPS.IGS_AS_SCA_H_V
12.1.1
-
VIEW: APPS.IGS_PR_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PR_STDNT_PS_ATT_V, object_name:IGS_PR_STDNT_PS_ATT_V, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT
12.1.1
-
View: IGS_AS_SC_ATTEMPT_H
12.2.2
product: IGS - Student System (Obsolete) , description: This view is multi org view , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_SC_ATTEMPT_H
12.1.1
-
View: IGS_AS_SCA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCA_H_V, object_name:IGS_AS_SCA_H_V, status:VALID, product: IGS - Student System , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: APPS.IGS_AS_SCA_H_V ,
-
View: IGS_AS_SCA_H_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to merge student course attempt history with the current student course attempt details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time peri , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_STDNT_PS_ATT_V, object_name:IGS_AD_STDNT_PS_ATT_V, status:VALID,
-
View: IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V, object_name:IGS_FI_SCAH_EFFECTIVE_H_CAT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V ,
-
VIEW: APPS.IGS_AS_SCAH_EFFECTIVE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCAH_EFFECTIVE_H_V, object_name:IGS_AS_SCAH_EFFECTIVE_H_V, status:VALID,
-
VIEW: APPS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_SCAH_EFFECTIVE_H_CAT_V, object_name:IGS_FI_SCAH_EFFECTIVE_H_CAT_V, status:VALID,
-
View: IGS_FI_SCAH_EFFECTIVE_H_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_STDNT_PS_ATT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_STDNT_PS_ATT_V, object_name:IGS_AD_STDNT_PS_ATT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_STDNT_PS_ATT_V ,
-
VIEW: APPS.IGS_AS_SC_ATTEMPT_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H, object_name:IGS_AS_SC_ATTEMPT_H, status:VALID,
-
View: IGS_AD_STDNT_PS_ATT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_STDNT_PS_ATT_CRV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_CRV_V, object_name:IGS_EN_STDNT_PS_ATT_CRV_V, status:VALID, product: IGS - Student System , description: This view describes and maintains the student course version of a specific program structure. , implementation_dba_data: APPS.IGS_EN_STDNT_PS_ATT_CRV_V ,
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_STDNT_PS_ATT_CAT_V, object_name:IGS_FI_STDNT_PS_ATT_CAT_V, status:VALID, product: IGS - Student System , description: No longer used , implementation_dba_data: APPS.IGS_FI_STDNT_PS_ATT_CAT_V ,
-
View: IGS_EN_STDNT_PS_ATT_CRV_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view describes and maintains the student course version of a specific program structure. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_FI_STDNT_PS_ATT_CAT_V
12.2.2
product: IGS - Student System (Obsolete) , description: No longer used , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_V, object_name:IGS_EN_SCA_V, status:VALID,
-
View: IGS_EN_SCA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_SCA_V, object_name:IGS_EN_SCA_V, status:VALID, product: IGS - Student System , description: This view would be used in the form. , implementation_dba_data: APPS.IGS_EN_SCA_V ,
-
View: IGS_EN_SCA_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view would be used in the form. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_GET_SCAEH_DTL
12.1.1
-
APPS.IGS_EN_SPA_LGCY_PUB SQL Statements
12.1.1
-
APPS.IGS_AS_SC_ATTEMPT_H_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_AS_SCA_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SCA_H_V, object_name:IGS_AS_SCA_H_V, status:VALID,
-
TABLE: IGS.IGS_AS_SC_ATTEMPT_H_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AS_SC_ATTEMPT_H_ALL, object_name:IGS_AS_SC_ATTEMPT_H_ALL, status:VALID,
-
TABLE: IGS.IGS_EN_STDNT_PS_ATT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_ALL, object_name:IGS_EN_STDNT_PS_ATT_ALL, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_CRV_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_CRV_V, object_name:IGS_EN_STDNT_PS_ATT_CRV_V, status:VALID,
-
VIEW: APPS.IGS_FI_STDNT_PS_ATT_CAT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_FI_STDNT_PS_ATT_CAT_V, object_name:IGS_FI_STDNT_PS_ATT_CAT_V, status:VALID,
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT_SV, object_name:IGS_EN_STDNT_PS_ATT_SV, status:VALID,
-
APPS.IGS_EN_GEN_004 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AS_SC_ATTEMPT_H_PKG
12.1.1
-
VIEW: APPS.IGS_EN_STDNT_PS_ATT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_STDNT_PS_ATT, object_name:IGS_EN_STDNT_PS_ATT, status:VALID,
-
APPS.IGS_EN_STDNT_PS_ATT_PKG SQL Statements
12.1.1