Search Results igs_ad_appl_hist_all
Overview
IGS_AD_APPL_HIST_ALL is a table in the Oracle E-Business Suite IGS (Student System) product family. Its documented description states that it "describes history of changes to admission application." In other words, the object captures a temporal, audit-style record of how an admission application has evolved over time, storing prior and current attribute values alongside effective-date boundaries. This supports the tracking of application state changes—such as transitions between admission statuses, changes to admission category, or updates to fee handling—rather than simply holding the current application record.
The ETRM metadata records the product as "IGS - Student System (Obsolete)" and notes that the object is "Not implemented in this database" in the reference environment. This is an important qualifier: in the 12.1.1 documentation baseline, the table is documented structurally but is not materialized in the captured database. Its documented owner is IGS, and the physical schema comprises 21 columns. Because the documented relationship data identifies the table as "standalone" (no incoming or outgoing foreign-key dependencies were mined), a Data Vault modeling suggestion would classify this object as a satellite: it records descriptive, time-stamped attributes about an admission application business key rather than acting as a hub or link. This is a heuristic suggestion derived from the FK structure and should be treated as a modeling aid only.
Key Information Stored
The most significant columns fall into three groups: the primary key, the business-key candidate, and the descriptive history payload.
- Primary key columns:
PERSON_ID,ADMISSION_APPL_NUMBER,HIST_START_DT. The documented primary keyIGS_AD_APPL_HIST_ALL_PKis composed of these three columns. - Business-key candidate: the unique index
IGS_AD_APPL_HIST_U1coversPERSON_ID,ADMISSION_APPL_NUMBER, andHIST_START_DT. Note that this mirrors the primary key rather than introducing a separate surrogate, so the "surrogate primary key" here is effectively the composite business key of person, application number, and history start date. - History boundary columns:
HIST_START_DTandHIST_END_DTdefine the effective period of each historical version, whileHIST_WHOidentifies the actor responsible for the change. - Application attribute payload:
APPL_DT(application date),ADMISSION_CAT(admission category),ADM_APPL_STATUS(application status),ADM_FEE_STATUS(fee status), andTAC_APPL_IND(application indicator). - Calendar and sequence context:
ACAD_CAL_TYPE,ACAD_CI_SEQUENCE_NUMBER,ADM_CAL_TYPE, andADM_CI_SEQUENCE_NUMBERidentify the academic and admission calendar instances associated with the application. - Process classification:
S_ADMISSION_PROCESS_TYPEdistinguishes the admission process type. - Standard audit columns:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN, and the organization-scopingORG_ID.
Common Use Cases and Queries
The principal use case is reconstructing the state of an admission application as of a given point in time, which supports audit reporting, point-in-time admissions analysis, and reconciliation of status transitions.
- Point-in-time application state: retrieve the row effective on a given date using
HIST_START_DT <= :as_of AND (HIST_END_DT IS NULL OR HIST_END_DT > :as_of), filtered byPERSON_IDandADMISSION_APPL_NUMBER. - Status-change audit trail: order rows by
HIST_START_DTfor a given applicant to trace howADM_APPL_STATUSandADM_FEE_STATUSchanged over time. - Who-changed-what reporting: group by
HIST_WHOto attribute changes to actors, joined with personnel tables. - Admissions funnel reporting: aggregate by
ADMISSION_CAT,S_ADMISSION_PROCESS_TYPE, and calendar instance columns to analyze application volumes acrossACAD_CAL_TYPEandADM_CAL_TYPEperiods.
Related Objects
The documented metadata classifies this table as standalone, with no mined foreign-key relationships. Consequently, joins must be inferred from the shared business keys that also appear in other IGS admissions objects:
- Base admission application table (for example
IGS_AD_APPL_ALLor its equivalent): join onPERSON_IDandADMISSION_APPL_NUMBERto compare historical rows against the current application. - Person / party records: join on
PERSON_IDto resolve applicant identity. - Academic calendar objects: join on
ACAD_CAL_TYPEandACAD_CI_SEQUENCE_NUMBERto resolve calendar context. - Admission calendar objects: join on
ADM_CAL_TYPEandADM_CI_SEQUENCE_NUMBER. - Admission category and status lookups: join on
ADMISSION_CATandADM_APPL_STATUS. - Process type reference: join on
S_ADMISSION_PROCESS_TYPE. - Lookup values: the
S_-prefixed column suggests a seeded lookup source, typicallyFND_LOOKUP_VALUES. - Organization definition: join on
ORG_IDtoHR_OPERATING_UNITSfor multi-org scoping. - Standard audit joins:
FND_USERonCREATED_BY/LAST_UPDATED_BY.
Given the table's obsolete status and absence from the reference database, consumers should verify its existence in their specific environment before building dependencies against it.
-
Table: IGS_AD_APPL_HIST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes history of changes to admission application , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_APPL_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_HIST_ALL, object_name:IGS_AD_APPL_HIST_ALL, status:VALID, product: IGS - Student System , description: Describes history of changes to admission application , implementation_dba_data: IGS.IGS_AD_APPL_HIST_ALL ,
-
SYNONYM: APPS.IGS_AD_APPL_HIST_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_APPL_HIST_ALL, status:VALID,
-
APPS.IGS_AD_APPL_HIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_AD_APPL_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_HIST_ALL, object_name:IGS_AD_APPL_HIST_ALL, status:VALID,
-
VIEW: APPS.IGS_AD_APPL_HIST
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AU_GEN_001, status:VALID,
-
PACKAGE: APPS.IGS_AU_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_AU_GEN_001, status:VALID,
-
PACKAGE BODY: APPS.IGS_AD_APPL_HIST_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_AD_APPL_HIST_PKG, status:VALID,
-
View: IGS_AD_APPL_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST, object_name:IGS_AD_APPL_HIST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_HIST ,
-
View: IGS_AD_APPL_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_AD_APPL_HIST_PKG
12.1.1
-
VIEW: APPS.IGS_AD_APPL_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST, object_name:IGS_AD_APPL_HIST, status:VALID,
-
APPS.IGS_AU_GEN_001 dependencies on IGS_AD_APPL_HIST_ALL
12.1.1
-
APPS.IGS_AU_GEN_001 dependencies on IGS_AD_APPL_HIST_ALL
12.1.1
-
APPS.IGS_AD_APPL_HIST_PKG dependencies on IGS_AD_APPL_HIST_ALL
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_AD_APPL_HIST_PKG dependencies on IGS_AD_APPL_HIST_PKG
12.1.1
-
APPS.IGS_AD_APPL_HIST_PKG dependencies on IGS_GE_MSG_STACK
12.1.1
-
APPS.IGS_AD_APPL_HIST_PKG dependencies on FND_MESSAGE
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,