Search Results igs_en_inst_wl_stps
Overview
The IGS_EN_INST_WL_STPS table (Institution Setup for Waitlist) is a configuration table within the IGS — Student System product of Oracle E-Business Suite. It stores institution-level parameters that govern how waitlist processing behaves for students attempting to enroll in courses that have reached capacity. Rather than capturing transactional waitlist activity itself, this table holds the setup flags and thresholds that the enrollment engine consults when determining whether waitlisting is permitted, how conflicts are handled, and whether automatic enrollment from a waitlist should occur. As such, it functions as a control/master record that parameterizes downstream waitlist processing across an institution.
The ETRM metadata classifies this object heuristically as standalone under Data Vault modeling conventions. This suggests it be modeled as an independent hub-like reference entity, since no foreign-key relationships to other tables were mined from its FK structure. In practice, its rows are keyed by a single surrogate identifier and reference no external parent, reinforcing its role as a self-contained setup entity.
Key Information Stored
The table contains 12 documented columns in the 12.1.1 schema. The most significant are the controlling setup flags and limits:
- INST_WLST_SETUP_ID — the surrogate primary key, uniquely identifying each institution waitlist setup record. It is enforced by the unique index IGS_EN_INST_WL_STPS_PK, which the metadata identifies as the sole business-key candidate.
- WAITLIST_ALLOWED_FLAG — indicates whether waitlisting is enabled at the institution level.
- TIME_CONFL_ALWD_WLST_FLAG — controls whether a student may be placed on a waitlist despite a time conflict with another enrolled course.
- SIMULTANEOUS_WLST_ALWD_FLAG — determines whether a student may hold simultaneous waitlist positions across multiple courses.
- AUTO_ENROLL_WAITLIST_FLAG — governs whether the system automatically enrolls a student when a seat becomes available.
- INCLUDE_WAITLIST_CP_FLAG — specifies whether waitlisted credits are included in credit-point or load calculations.
- MAX_WAITLISTS_STUDENT_NUM — the maximum number of waitlists a single student may occupy.
The remaining columns are standard Oracle audit attributes: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN. Notably, no institution or organization foreign key is documented among the columns, consistent with the standalone classification.
Common Use Cases and Queries
This table is primarily consulted by enrollment and registration logic to validate waitlist actions, and by administrators configuring waitlist policy. Typical reporting includes auditing which institutions permit waitlisting and reviewing auto-enrollment behavior. A representative query retrieving the active policy for a setup record follows:
SELECT INST_WLST_SETUP_ID, WAITLIST_ALLOWED_FLAG, AUTO_ENROLL_WAITLIST_FLAG, MAX_WAITLISTS_STUDENT_NUM FROM IGS.IGS_EN_INST_WL_STPS WHERE INST_WLST_SETUP_ID = :id;- Reporting all institutions with waitlisting disabled:
... WHERE WAITLIST_ALLOWED_FLAG = 'N'; - Auditing auto-enrollment configuration:
... WHERE AUTO_ENROLL_WAITLIST_FLAG = 'Y';
These queries support functional setup validation and troubleshooting of student waitlist eligibility.
Related Objects
The metadata documents no foreign-key relationships, so this object is a setup parent rather than a dependent. It is logically referenced by waitlist processing components of the IGS enrollment engine, and its audit columns align with the standard Oracle Applications audit convention shared across IGS tables such as those in the IGS_EN_* family. Administrators typically configure values here through the Student System setup user interface rather than direct DML, and the flags are consumed at runtime by enrollment APIs that determine student waitlist eligibility and automatic seat assignment.
-
Table: IGS_EN_INST_WL_STPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_INST_WL_STPS, object_name:IGS_EN_INST_WL_STPS, status:VALID, product: IGS - Student System , description: Institution Setup for Waitlist. , implementation_dba_data: IGS.IGS_EN_INST_WL_STPS ,
-
Table: IGS_EN_INST_WL_STPS
12.2.2
product: IGS - Student System (Obsolete) , description: Institution Setup for Waitlist. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_INST_WL_STPS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_EN_INST_WL_STPS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_INST_WL_STPS, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_INST_WL_STPS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_INST_WL_STPS_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_INST_WL_STPS_PKG
12.1.1
-
TABLE: IGS.IGS_EN_INST_WL_STPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_INST_WL_STPS, object_name:IGS_EN_INST_WL_STPS, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SUA_API
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SUA_API, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_PRC_LOAD
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_PRC_LOAD, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_UNIT
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ELGBL_UNIT, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_GEN_015
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_015, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_ENROLL_WLST
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_ENROLL_WLST, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_SUA_LGCY_PUB
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_SUA_LGCY_PUB, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VALIDATE_LGCY_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VALIDATE_LGCY_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_UNIT_OFR_OPT_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_UNIT_OFR_OPT_PKG, status:VALID,
-
APPS.IGS_EN_ELGBL_UNIT SQL Statements
12.1.1
-
APPS.IGS_EN_ENROLL_WLST SQL Statements
12.1.1
-
APPS.IGS_EN_SUA_API SQL Statements
12.1.1
-
APPS.IGS_EN_SUA_API dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_PRC_LOAD dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_INST_WL_STPS_PKG dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_PRC_LOAD SQL Statements
12.1.1
-
APPS.IGS_EN_ENROLL_WLST dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_PS_UNIT_OFR_OPT_PKG dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_ELGBL_UNIT dependencies on IGS_EN_INST_WL_STPS
12.1.1
-
APPS.IGS_EN_SUA_LGCY_PUB dependencies on IGS_EN_INST_WL_STPS
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
-
APPS.IGS_EN_GEN_015 SQL Statements
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGS_EN_SUA_LGCY_PUB SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_EN_SUA_API dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_PS_UNIT_OFR_OPT_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_SUA_API dependencies on IGS_EN_INST_WLST_OPT
12.1.1
-
APPS.IGS_EN_ELGBL_UNIT dependencies on FND_PROFILE
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_EN_INST_WLST_OPT
12.1.1
-
APPS.IGS_EN_PRC_LOAD dependencies on IGS_CA_DA_INST_V
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SUA_API
12.1.1
-
APPS.IGS_EN_INST_WL_STPS_PKG dependencies on IGS_EN_INST_WL_STPS_PKG
12.1.1
-
APPS.IGS_EN_PRC_LOAD dependencies on IGS_AD_ADM_UT_STT_LD
12.1.1
-
APPS.IGS_EN_PRC_LOAD dependencies on IGS_CA_DA_INST
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ENROLL_WLST
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_UNIT
12.1.1
-
APPS.IGS_EN_SUA_LGCY_PUB dependencies on IGS_EN_SU_ATTEMPT
12.1.1
-
APPS.IGS_EN_SUA_API dependencies on IGS_EN_SU_ATTEMPT
12.1.1