Search Results appl_dt
Overview
The view APPS.IGS_AD_APPL_HIST_APHSTRY_V is a reporting and integration object within the Oracle E-Business Suite Student System (IGS) product family. It exposes the historical audit trail of admission applications, presenting one row for each recorded change captured against an applicant's admission application. The name follows the IGS naming convention, where the _V suffix denotes a view and the HIST / APHSTRY segments indicate an application history source.
Its primary role is to give downstream reports and interfaces a denormalised, point-in-time picture of an application — including the admission application status (the ADM_APPL_STATUS column most commonly associated with the adm_appl_status search term), fee status, admission category and process type — alongside the validity window (HIST_START_DT, HIST_END_DT) during which each historical value applied. This makes it suitable for auditing status changes over the application lifecycle rather than simply reading the current application record.
Underlying Base Objects
Although the documented ETRM metadata lists no formally catalogued base objects for this view, the view definition reveals its underlying sources directly. The FROM clause references:
- IGS_AD_APPL_HIST (aliased
AAH1) — the driving history table holding the versioned application column values. - IGS_AD_APPL (aliased
AA1) — the current admission application record, used as the fallback for values not yet versioned in history. - IGS_CA_INST (aliased
CI1andCI2) — calendar instance definitions, joined onCAL_TYPEandSEQUENCE_NUMBER. - IGS_PE_PERSON_BASE_V (aliased
PE) — the person base view supplyingPERSON_NUMBER.
The joins link history to current application by PERSON_ID and ADMISSION_APPL_NUMBER, and to the person by PERSON_ID. A distinctive feature is the pervasive use of the audit helper package IGS_AU_GEN_001.AUDP_GET_AAH_COL, which retrieves the historical value of a named column; each attribute is resolved through nested NVL logic — first the history row value, then the audited historical lookup, then the current application value.
Key Columns
ROW_ID— unique identifier for the history record.PERSON_ID,PERSON_NUMBER— applicant identity and human-readable person number.ADMISSION_APPL_NUMBER— the admission application reference.HIST_START_DT,HIST_END_DT,HIST_WHO— the effective window and actor for the historical version.APPL_DT— application date, resolved through the audit lookup when not directly stored.ADM_APPL_STATUS— the admission application status, the column of principal interest for adm_appl_status enquiries.ADM_FEE_STATUS— fee status of the application.ADMISSION_CAT,S_ADMISSION_PROCESS_TYPE,TAC_APPL_IND— admission category, process type and TAC indicator.ALTERNATE_CODE,CAL_TYPE,SEQUENCE_NUMBER(from CI1/CI2) — calendar instance details.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard WHO audit columns.
Common Use Cases and Queries
Typical uses include status-change audits, trend reporting across admission cycles, and feeding student-records interfaces with historical application context.
To trace the status history for a specific applicant:
SELECT person_number, admission_appl_number, adm_appl_status, hist_start_dt, hist_end_dt, hist_who FROM igs_ad_appl_hist_aphstry_v WHERE admission_appl_number = :p_appl ORDER BY hist_start_dt;
To count applications by current status end-date:
SELECT adm_appl_status, COUNT(*) FROM igs_ad_appl_hist_aphstry_v WHERE hist_end_dt IS NULL GROUP BY adm_appl_status;
Because values are resolved through the audit lookup, callers should expect the view to return the effective value at each history point, and should always constrain by person or application to avoid full scans of the history table.
-
View: IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST_APHSTRY_V, object_name:IGS_AD_APPL_HIST_APHSTRY_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_HIST_APHSTRY_V ,
-
View: IGS_AD_APPL_HIST_APHSTRY_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
-
View: IGS_AD_APPL_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL, object_name:IGS_AD_APPL, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL ,
-
View: IGS_AD_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_V, object_name:IGS_AD_APPL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_V ,
-
VIEW: APPS.IGS_AD_APPL_HIST
12.1.1
-
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: APPS.IGF_AP_FA_BASE_H
12.1.1
-
VIEW: APPS.IGS_AD_APPL_V
12.1.1
-
View: IGS_AD_APPL_INST_MKDES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_INST_MKDES_V, object_name:IGS_AD_APPL_INST_MKDES_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_AD_APPL_INST_MKDES_V ,
-
View: IGS_AD_APPL
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_APPL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL
12.1.1
-
View: IGF_AP_FA_BASE_H
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_APPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_V, object_name:IGS_AD_APPL_V, status:VALID,
-
View: IGS_AD_PS_APL_INST_CNTX_V
12.2.2
product: IGS - Student System (Obsolete) , description: Application instance context view , implementation_dba_data: Not implemented in this database ,
-
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,
-
View: IGS_AD_APPL_INST_MKDES_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APL_INST_CNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APL_INST_CNTX_V, object_name:IGS_AD_PS_APL_INST_CNTX_V, status:VALID,
-
View: IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H ,
-
TABLE: IGS.IGS_AD_APL_INT_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_APL_INT_OLD, status:VALID,
-
View: IGS_AD_PS_APL_INST_CNTX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APL_INST_CNTX_V, object_name:IGS_AD_PS_APL_INST_CNTX_V, status:VALID, product: IGS - Student System , description: Application instance context view , implementation_dba_data: APPS.IGS_AD_PS_APL_INST_CNTX_V ,
-
VIEW: APPS.IGS_AD_APPL_INST_MKDES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_INST_MKDES_V, object_name:IGS_AD_APPL_INST_MKDES_V, status:VALID,
-
TABLE: IGS.IGS_AD_APPL_INT_ALL_OLD
12.1.1
owner:IGS, object_type:TABLE, object_name:IGS_AD_APPL_INT_ALL_OLD, status:VALID,
-
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: IGS_AD_APPL_ADMAPPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ADMAPPL_V, object_name:IGS_AD_APPL_ADMAPPL_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_APPL_ALL table. Incorporates alternate codes and calendar instance start and end dates for both the Academic and Admission calendars. , implementation_dba_data: APPS.IGS_AD_APPL_ADMAPPL_V ,
-
View: IGS_AD_APPL_ADMAPPL_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_APPL_ALL table. Incorporates alternate codes and calendar instance start and end dates for both the Academic and Admission calendars. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APL_INST_CNTX_V
12.1.1
-
VIEW: APPS.IGS_AD_APPL_INST_MKDES_V
12.1.1
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID,
-
VIEW: APPS.IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID,
-
VIEW: APPS.IGS_AD_APPL_ADMAPPL_V
12.1.1
-
VIEW: APPS.IGS_AD_APPL_HIST_APHSTRY_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_HIST_APHSTRY_V, object_name:IGS_AD_APPL_HIST_APHSTRY_V, status:VALID,
-
APPS.IGS_AD_APPL_HIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_AD_APL_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APL_INT, object_name:IGS_AD_APL_INT, status:VALID,
-
TABLE: IGS.IGS_AD_APPHIST_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPHIST_INT, object_name:IGS_AD_APPHIST_INT, status:VALID,
-
TABLE: IGS.IGS_AD_APPL_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_ALL, object_name:IGS_AD_APPL_ALL, status:VALID,
-
VIEW: APPS.IGS_AD_APPL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL, object_name:IGS_AD_APPL, status:VALID,
-
View: IGF_AP_FA_BASE_H_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H_V ,
-
VIEW: APPS.IGS_AD_INTERVIEW_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERVIEW_LETTERS_V, object_name:IGS_AD_INTERVIEW_LETTERS_V, status:VALID,
-
VIEW: APPS.IGS_AD_APPL_ADMAPPL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_APPL_ADMAPPL_V, object_name:IGS_AD_APPL_ADMAPPL_V, status:VALID,
-
View: IGS_AD_PS_APPL_INST_APLSUMR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_APLSUMR_V, object_name:IGS_AD_PS_APPL_INST_APLSUMR_V, status:VALID, product: IGS - Student System , description: View of IGS_AD_APPL and IGS_AD_PS_APPL_INST. Used for Admission Application Summary block on ADMF3000. , implementation_dba_data: APPS.IGS_AD_PS_APPL_INST_APLSUMR_V ,
-
View: IGS_AD_ACK_LETTER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_ACK_LETTER_V, object_name:IGS_AD_ACK_LETTER_V, status:VALID, product: IGS - Student System , description: It would return the Acknowledgement Details of a student , implementation_dba_data: APPS.IGS_AD_ACK_LETTER_V ,
-
View: IGS_AD_ACK_LETTER_V
12.2.2
product: IGS - Student System (Obsolete) , description: It would return the Acknowledgement Details of a student , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_PS_APPL_INST_APLSUMR_V
12.2.2
product: IGS - Student System (Obsolete) , description: View of IGS_AD_APPL and IGS_AD_PS_APPL_INST. Used for Admission Application Summary block on ADMF3000. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_AD_PS_APPL_INST_APLSUMR_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_PS_APPL_INST_APLSUMR_V, object_name:IGS_AD_PS_APPL_INST_APLSUMR_V, status:VALID,
-
View: IGS_AD_INTERVIEW_LETTERS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Admission Interview Letters , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AD_INTERVIEW_LETTERS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AD_INTERVIEW_LETTERS_V, object_name:IGS_AD_INTERVIEW_LETTERS_V, status:VALID, product: IGS - Student System , description: Admission Interview Letters , implementation_dba_data: APPS.IGS_AD_INTERVIEW_LETTERS_V ,