Search Results deg_aud_detail_id
Overview
IGS_DA_DETAILS_HIST is a history (audit) table within the Oracle E-Business Suite Student System (IGS) product module. It stores the historical versions of Degree Audit details, preserving the state of degree audit unit evaluations over time. Degree audits evaluate a student's academic record against program, plan, and subplan requirements to determine progress toward graduation. The base table IGS_DA_DETAILS holds the current degree audit detail rows; IGS_DA_DETAILS_HIST retains prior versions of those rows so that changes to audit outcomes, unit flags, and comments can be reconstructed as of any point in time.
The table is owned by the IGS schema and is documented as VALID in the ETRM reference for both EBS 12.1.1 and 12.2.2, with 68 columns. Its primary key, IGS_DA_DETAILS_HIST_PK, is composed of DEG_AUD_DETAIL_ID and HIST_START_DT, and a unique index, IGS_DA_DETAILS_HIST_U1, exists on the same column pair. From a data vault modeling perspective, the metadata heuristically classifies this object as a standalone structure. Because it is a history table keyed by the source row identifier plus an effective date, it is most naturally modeled as a satellite hanging off the degree audit detail business key, rather than as a hub or link. This classification is a modeling suggestion only; the physical implementation is a conventional EBS history table with no formal foreign keys declared in the mined relationship data.
Key Information Stored
The table is organized around the effective-dating and ownership of a degree audit detail row, supplemented by unit evaluation attributes and a standard 20-column descriptive flexfield.
- DEG_AUD_DETAIL_ID — surrogate identifier of the source degree audit detail row; part of the composite primary key and the primary business-key candidate.
- HIST_START_DT — effective start date of the historical version; the second component of the composite primary key and unique index.
- HIST_END_DT — effective end date of the version, defining the validity window of each historical row.
- HIST_WHO — the user or process that created the historical version.
- OSS_UNIT_LOCATOR — locator identifying the academic unit within the audit structure.
- UNIT_CD, UNIT_VERSION, UNIT_LEVEL_CD, UNIT_TERM, UNIT_SEQ_CODE — the academic unit code and its version, level, term, and sequence context used in the audit evaluation.
- DA_COUNT — count value recorded for the degree audit detail evaluation.
- UNIT_PSEUDO_UNIT_FLG, UNIT_EVAL_LOCK — flags indicating pseudo-unit status and whether evaluation is locked.
- DA_GROUP, DPMASK — grouping and display mask attributes used by the degree audit presentation layer.
- DEG_AUD_COMMENTS — free-text comments associated with the audit detail.
- REF_INST_ID, REF_INST_CODE, REF_TITLE — reference institution identifier, code, and title for transfer or external credit context.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE20 — the descriptive flexfield segment values used for client-specific extensions.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard EBS audit columns recording who created and last modified the row.
The surrogate/primary key is the pair (DEG_AUD_DETAIL_ID, HIST_START_DT); the unique index IGS_DA_DETAILS_HIST_U1 covers the same columns and therefore confirms this pair as the business-key candidate. Columns such as ALT_UNIT_ID1 through ALT_UNIT_ID3, the DEG_AUD_UNIT_CODE1 through DEG_AUD_UNIT_CODE12 series, and UNIT_FLAG1 through UNIT_FLAG5 store repeating audit attributes but are not part of the key.
Common Use Cases and Queries
The principal use case is temporal reconstruction of degree audit outcomes — determining what a student's audit detail looked like on a prior date, or identifying what changed between two audit runs. Typical patterns include:
- Point-in-time retrieval: select rows where HIST_START_DT is on or before the target date and HIST_END_DT is null or after it.
- Change analysis: compare successive versions of the same DEG_AUD_DETAIL_ID ordered by HIST_START_DT to isolate edits to DA_COUNT, flags, or comments.
- Audit trail reporting: join to IGS_DA_DETAILS on DEG_AUD_DETAIL_ID to reconcile current versus historical rows.
- User accountability: group by HIST_WHO, CREATED_BY, or LAST_UPDATED_BY to report who modified audit details.
A representative query selects the active historical version for a given detail identifier by filtering on the effective date window and ordering by HIST_START_DT descending. Reports typically project DEG_AUD_DETAIL_ID, HIST_START_DT, HIST_END_DT, UNIT_CD, UNIT_TERM, DA_COUNT, and DEG_AUD_COMMENTS.
Related Objects
Relationship data classifies this object as standalone with no declared foreign keys, so associations are inferred from the degree audit data model rather than enforced constraints. The most significant related objects are:
- IGS_DA_DETAILS — the current degree audit details table, joined on DEG_AUD_DETAIL_ID.
- IGS_DA_DETAILS_HIST_PK — the primary key constraint enforcing uniqueness of (DEG_AUD_DETAIL_ID, HIST_START_DT).
- IGS_DA_DETAILS_HIST_U1 — the unique index on the same key columns.
- Degree audit header and group tables in the IGS schema that key audit runs, linked through the audit detail identifiers and DA_GROUP.
- Academic unit and unit version reference tables referenced by UNIT_CD, UNIT_VERSION, and UNIT_LEVEL_CD.
- Institution reference objects associated with REF_INST_ID and REF_INST_CODE.
- EBS standard who-column references (FND_USER) matched against CREATED_BY, LAST_UPDATED_BY, and HIST_WHO.
Because no formal foreign keys are documented, join relationships should be validated against the base IGS_DA_DETAILS table and the degree audit PL/SQL APIs that maintain both the current and historical rows in parallel.
-
Table: IGS_DA_DETAILS_HIST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_DA_DETAILS_HIST, object_name:IGS_DA_DETAILS_HIST, status:VALID, product: IGS - Student System , description: History storage of the Degree Audit Details , implementation_dba_data: IGS.IGS_DA_DETAILS_HIST ,
-
Table: IGS_AD_TERM_UNITDTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_TERM_UNITDTLS, object_name:IGS_AD_TERM_UNITDTLS, status:VALID, product: IGS - Student System , description: Holds term unit details for institution , implementation_dba_data: IGS.IGS_AD_TERM_UNITDTLS ,
-
Table: IGS_EN_SU_ATTEMPT_H_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT_H_ALL, object_name:IGS_EN_SU_ATTEMPT_H_ALL, status:VALID, product: IGS - Student System , description: This entity describes the history of changes made to a student unit attempt, including changes to status, location, class, etc. , implementation_dba_data: IGS.IGS_EN_SU_ATTEMPT_H_ALL ,
-
Table: IGS_AV_STND_UNIT_LVL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_UNIT_LVL_ALL, object_name:IGS_AV_STND_UNIT_LVL_ALL, status:VALID, product: IGS - Student System , description: Describes the number of advanced standing credit points granted to a student at a given level , implementation_dba_data: IGS.IGS_AV_STND_UNIT_LVL_ALL ,
-
Table: IGS_DA_DETAILS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_DA_DETAILS, object_name:IGS_DA_DETAILS, status:VALID, product: IGS - Student System , description: Storage location for Degree Audit Details , implementation_dba_data: IGS.IGS_DA_DETAILS ,
-
Table: IGS_AV_STND_UNIT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AV_STND_UNIT_ALL, object_name:IGS_AV_STND_UNIT_ALL, status:VALID, product: IGS - Student System , description: Describes a unit granted as advanced standing , implementation_dba_data: IGS.IGS_AV_STND_UNIT_ALL ,
-
Table: IGS_EN_SU_ATTEMPT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_SU_ATTEMPT_ALL, object_name:IGS_EN_SU_ATTEMPT_ALL, status:VALID, product: IGS - Student System , description: This entity describes a student's attempt at studying a particular unit offered by the university. This table is modified to capture the Organizational unit code for the student finance requirements. , implementation_dba_data: IGS.IGS_EN_SU_ATTEMPT_ALL ,
-
View: IGS_AD_TERM_UNITDTLS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_AV_ADV_STND_UNIT_LEVEL
12.1.1
-
View: IGS_AD_TERM_UNITDTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TERM_UNITDTLS_V, object_name:IGS_AD_TERM_UNITDTLS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_TERM_UNITDTLS_V ,
-
View: IGSBV_AV_ADV_STND_UNIT_LEVEL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_AV_ADV_STND_UNIT_LEVEL, object_name:IGSBV_AV_ADV_STND_UNIT_LEVEL, status:VALID, product: IGS - Student System , description: Describes the number of advanced standing credit points granted to a student at a given level. , implementation_dba_data: APPS.IGSBV_AV_ADV_STND_UNIT_LEVEL ,
-
VIEW: APPS.IGS_AD_TERM_UNITDTLS_V
12.1.1
-
View: IGSBV_AV_ADV_STND_UNIT_LEVEL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the number of advanced standing credit points granted to a student at a given level. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_EN_SUA_V
12.1.1
-
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: 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_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_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: 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_EN_SU_ATTEMPT_SV
12.1.1
-
View: IGS_AS_SUA_EXAM_CLASH_V
12.2.2
product: IGS - Student System (Obsolete) , description: Contains all combinations of student unit attempt clashes. It is used by a unit clash report that aggregates the records into a unit by unit list. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_SUA_EXAM_CLASH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_EXAM_CLASH_V, object_name:IGS_AS_SUA_EXAM_CLASH_V, status:VALID, product: IGS - Student System , description: Contains all combinations of student unit attempt clashes. It is used by a unit clash report that aggregates the records into a unit by unit list. , implementation_dba_data: APPS.IGS_AS_SUA_EXAM_CLASH_V ,
-
VIEW: APPS.IGS_EN_SU_ATTEMPT_H
12.1.1
-
VIEW: APPS.IGS_AD_TERM_UNITDTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_TERM_UNITDTLS_V, object_name:IGS_AD_TERM_UNITDTLS_V, status:VALID,
-
Table: IGS_DA_DETAILS_HIST
12.2.2
product: IGS - Student System (Obsolete) , description: History storage of the Degree Audit Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AS_UAI_EXAMINATION_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_EXAMINATION_V, object_name:IGS_AS_UAI_EXAMINATION_V, status:VALID,
-
VIEW: APPS.IGSBV_TRANSCRIPT_TERM_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_TRANSCRIPT_TERM_UNITS, object_name:IGSBV_TRANSCRIPT_TERM_UNITS, status:VALID,
-
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: 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 ,
-
Table: IGS_DA_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Storage location for Degree Audit Details , implementation_dba_data: Not implemented in this database ,
-
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.IGSFV_TRANSCRIPT_TERM_UNITS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_TRANSCRIPT_TERM_UNITS, object_name:IGSFV_TRANSCRIPT_TERM_UNITS, status:VALID,
-
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: APPS.IGS_EN_SU_ATTEMPT
12.1.1
-
VIEW: APPS.IGS_AS_SUA_EXAM_CLASH_V
12.1.1
-
VIEW: APPS.IGS_AS_SUA_EXAM_CLASH_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SUA_EXAM_CLASH_V, object_name:IGS_AS_SUA_EXAM_CLASH_V, status:VALID,
-
TABLE: IGS.IGS_AD_TERM_UNITDTLS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_TERM_UNITDTLS, object_name:IGS_AD_TERM_UNITDTLS, status:VALID,
-
VIEW: APPS.IGS_AV_STND_UNIT_LVL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_STND_UNIT_LVL, object_name:IGS_AV_STND_UNIT_LVL, status:VALID,
-
VIEW: APPS.IGS_AS_UAP_SUA_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAP_SUA_V, object_name:IGS_AS_UAP_SUA_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_AS_UAI_ETISTD_EXAM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_UAI_ETISTD_EXAM_V, object_name:IGS_AS_UAI_ETISTD_EXAM_V, status:VALID,
-
View: IGS_AS_SU_STMPTOUT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_SU_STMPTOUT_V, object_name:IGS_AS_SU_STMPTOUT_V, status:VALID, product: IGS - Student System , description: Multi org View for student unit attempt outcome records. , implementation_dba_data: APPS.IGS_AS_SU_STMPTOUT_V ,
-
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_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: APPS.IGS_AV_STND_UNIT_CREDIT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AV_STND_UNIT_CREDIT_V, object_name:IGS_AV_STND_UNIT_CREDIT_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 ,
-
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: 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 ,