Search Results igs_ad_appl_stat
Overview
The IGS_AD_APPL_STAT table is a foundational data object within the now-obsolete Student System (IGS) module of Oracle E-Business Suite (EBS) versions 12.1.1 and 12.2.2. It functions as a reference or lookup table, centralizing the definition of all possible statuses for an admission application. Its primary role is to enable user-defined status codes, such as "RECEIVED" or "WITHDRAWN," which are then mapped internally to system-defined statuses that control application workflow logic. This abstraction allows institutions to customize the terminology of their admissions process while maintaining consistent underlying system behavior. The table's design is critical for maintaining data integrity across the admissions module, as it is referenced by core application transaction tables.
Key Information Stored
The table's structure is designed to manage the status lifecycle of an application. The most critical column is ADM_APPL_STATUS, which serves as the table's primary key. This column stores the unique, user-defined code for each application status (e.g., 'RCVD', 'WDN', 'UNDER_REV'). While the provided metadata does not list all columns, a table of this nature in the EBS context typically includes descriptive columns such as DESCRIPTION for the full status name, and columns to define the system mapping, effective dates (START_DATE, END_DATE), and who created or last updated the record. The core data it holds represents the controlled set of valid states any admission application can occupy.
Common Use Cases and Queries
The primary use case for this table is to support queries that report on or filter applications based on their status. It is essential for generating admissions funnel reports, tracking application completion rates, and listing applications in a specific state, such as all "Under Consideration" applications. A common SQL pattern involves joining this table to the main application table to translate status codes into meaningful descriptions for reporting.
Sample Query:
SELECT appl.person_id, appl.application_number, stat.description AS status
FROM igs_ad_appl_all appl,
igs_ad_appl_stat stat
WHERE appl.adm_appl_status = stat.adm_appl_status
AND stat.adm_appl_status = 'UNDER_REV';
This query retrieves all applications currently under review, joining the transaction data to the lookup table to get the human-readable status description.
Related Objects
The IGS_AD_APPL_STAT table has defined foreign key relationships with two major transaction tables in the admissions module, as documented in the ETRM metadata. These relationships enforce referential integrity, ensuring that only valid status codes from this lookup table can be used in application records.
- IGS_AD_APPL_ALL: This is the primary table for admission application headers. It references IGS_AD_APPL_STAT via the column
IGS_AD_APPL_ALL.ADM_APPL_STATUS, which holds the current overall status of an application. - IGS_AD_PS_APPL_INST_ALL: This table likely stores institution-specific details for program applications. It references IGS_AD_APPL_STAT via the column
IGS_AD_PS_APPL_INST_ALL.APPL_INST_STATUS, which may track a status specific to an application instance at a given institution.
The primary key constraint IGS_AD_APPL_STAT_PK on the ADM_APPL_STATUS column is the anchor for these relationships.
-
Table: IGS_AD_APPL_STAT
12.2.2
product: IGS - Student System (Obsolete) , description: Describes user-defined admission application statuses which map to system-defined statuses. Values include received, withdrawn, under consideration, or complete. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_AD_APPL_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_STAT, object_name:IGS_AD_APPL_STAT, status:VALID, product: IGS - Student System , description: Describes user-defined admission application statuses which map to system-defined statuses. Values include received, withdrawn, under consideration, or complete. , implementation_dba_data: IGS.IGS_AD_APPL_STAT ,
-
APPS.IGS_AD_PRC_TAC_OFFER dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTEGR dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_GEN_007 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_GEN_008 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_APPL_STAT_PKG dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_VAL_ACAIU dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_GEN_002 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_SS_GEN_001 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_IMP_004 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_VAL_ACAI_STATUS dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_VAL_AAS dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_VAL_AA dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_IN_GEN_001 dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_APP_REQ_PKG dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_VAL_ACAI dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_APPL_STAT
12.1.1
-
APPS.IGS_IN_GEN_001 dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_APPL_STAT_PKG SQL Statements
12.1.1
-
APPS.IGS_AD_GEN_008 dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_AD_OU_STAT
12.1.1
-
APPS.IGS_AD_GEN_007 dependencies on IGS_AD_APPL
12.1.1
-
VIEW: APPS.IGF_AP_ADM_SETUP_V
12.1.1
-
VIEW: APPS.IGS_AD_APPL_STAT_V
12.1.1
-
SYNONYM: APPS.IGS_AD_APPL_STAT
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_AD_APPL_STAT, status:VALID,
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_AD_DOC_STAT
12.1.1
-
APPS.IGS_AD_ADM_REQ dependencies on IGS_AD_PS_APPL_INST
12.1.1
-
PACKAGE BODY: APPS.IGS_AD_APPL_STAT_PKG
12.1.1
-
TABLE: IGS.IGS_AD_APPL_STAT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_AD_APPL_STAT, object_name:IGS_AD_APPL_STAT, status:VALID,
-
APPS.IGS_AD_CANCEL_RECONSIDER dependencies on IGS_AD_OU_STAT
12.1.1
-
APPS.IGS_AD_VAL_ACAI_STATUS dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGF_AP_OSS_INTEGR dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_PRCS_CAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGF_AP_OSS_INTEGR dependencies on IGS_PS_VER
12.1.1
-
APPS.IGS_AD_APP_REQ_PKG dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_VAL_ACAI dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_FEE_STAT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AD_APPL
12.1.1
-
APPS.IGS_AD_APPL_STAT_PKG dependencies on IGS_AD_APPL_STAT_PKG
12.1.1
-
APPS.IGS_AD_VAL_AAS SQL Statements
12.1.1
-
View: IGS_AD_APPL_STAT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_AP_ADM_SETUP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_ADM_SETUP_V, object_name:IGF_AP_ADM_SETUP_V, status:VALID, product: IGF - Financial Aid , description: Obsolete , implementation_dba_data: APPS.IGF_AP_ADM_SETUP_V ,
-
PACKAGE BODY: APPS.IGF_AP_OSS_INTEGR
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGF_AP_OSS_INTEGR, status:VALID,