Search Results override_enrollment_max
Overview
The view IGS_PS_USEC_LIM_WLST_V is an Oracle E-Business Suite (EBS) Student System (IGS) database object owned by the APPS schema. It exposes enrollment capacity, minimum, maximum, and waitlist configuration data for unit offerings (sections) in the Oracle Student System. The view is defined as a thin projection over the base table IGS_PS_USEC_LIM_WLST, selecting every functional column plus a synthetic ROW_ID derived from the physical ROWID. Because it is a view rather than a table, it carries no independent constraints, indexes, or triggers; it is intended to provide a read-only, joined-friendly access point for reporting and integration needs.
For users searching the term enrollment_maximum, this view is the principal IGS object where that attribute is exposed. In EBS 12.1.1 and 12.2.2 the object is registered as VALID within the ETRM metadata, confirming it is a supported, queryable artifact for both releases, and its structure is unchanged between them.
Underlying Base Objects
The documented base object is IGS_PS_USEC_LIM_WLST. The view performs no filtering, joins, or aggregation — every row of the base table is returned. The relationship is therefore one-to-one at the row level: each record in IGS_PS_USEC_LIM_WLST produces exactly one record in the view, with the same column values. No additional referenced base objects are documented in the ETRM metadata for this view.
Functionally, the underlying row is keyed by UNIT_SECTION_LIMIT_WAITLIST_ID and links to a unit offering option through UOO_ID. The UOO (unit offering option) represents a specific section, and the limit/waitlist record defines the enrollment controls applied to that section.
Key Columns
ENROLLMENT_MAXIMUM— the ceiling on the number of students permitted to enroll in the unit offering option. This is the column most directly associated with the search term enrollment_maximum.ENROLLMENT_MINIMUM— the minimum enrollment required for the section to proceed.ENROLLMENT_EXPECTED— the anticipated or planned enrollment figure used for planning comparisons.ADVANCE_MAXIMUM— the maximum number of students allowed to enroll in advance of a defined point.OVERRIDE_ENROLLMENT_MAX— a flag/value indicating whether an override to the enrollment maximum has been applied.WAITLIST_ALLOWED— indicates whether a waitlist is permitted for the section.MAX_STUDENTS_PER_WAITLIST— the cap on the number of students who may occupy the waitlist.MAX_AUDITORS_ALLOWED— the maximum number of auditors permitted for the option.UOO_ID— foreign key to the unit offering option, the join key to section and course context.UNIT_SECTION_LIMIT_WAITLIST_ID— the primary identifier for the limit/waitlist configuration row.ROW_ID— synthetic identifier built from the base tableROWID, unique per row at query time.CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— standard EBS who-columns supporting audit and incremental extraction.
Common Use Cases and Queries
The view supports enrollment-capacity reporting, waitlist configuration audits, and integration extracts. A typical query retrieves the enrollment maximum alongside its section context:
- Detecting sections where enrolled counts approach the maximum.
- Auditing whether waitlists are enabled and how many waitlist slots are configured.
- Extracting limit and waitlist configuration for downstream systems, using
LAST_UPDATE_DATEfor incremental loads.
Sample SQL:
SELECT UOO_ID, ENROLLMENT_MINIMUM, ENROLLMENT_MAXIMUM, ENROLLMENT_EXPECTED, WAITLIST_ALLOWED, MAX_STUDENTS_PER_WAITLIST FROM APPS.IGS_PS_USEC_LIM_WLST_V WHERE ENROLLMENT_MAXIMUM IS NOT NULL;SELECT UOO_ID, ENROLLMENT_MAXIMUM, OVERRIDE_ENROLLMENT_MAX FROM APPS.IGS_PS_USEC_LIM_WLST_V WHERE LAST_UPDATE_DATE >= :p_since;
Because the view exposes the full base table without joins, callers must join to the unit offering option tables using UOO_ID when section, course, or term attributes are required.
-
View: IGS_PS_USEC_LIM_WLST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_LIM_WLST_V, object_name:IGS_PS_USEC_LIM_WLST_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_LIM_WLST_V ,
-
VIEW: APPS.IGS_PS_USEC_LIM_WLST_V
12.1.1
-
View: IGS_PS_USEC_LIM_WLST_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_LIM_WLST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_LIM_WLST_V, object_name:IGS_PS_USEC_LIM_WLST_V, status:VALID,
-
View: IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER ,
-
TABLE: IGS.IGS_PS_USEC_LIM_WLST
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_LIM_WLST, object_name:IGS_PS_USEC_LIM_WLST, status:VALID,
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
View: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
-
APPS.IGS_PS_USEC_LIM_WLST_PKG SQL Statements
12.1.1
-
View: IGS_PS_UNIT_VER_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_V ,
-
View: IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID, product: IGS - Student System , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: APPS.IGS_PS_SCH_USEC_INT ,
-
View: IGS_PS_SCH_USEC_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_PS_SCH_USEC_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT_ALL, object_name:IGS_PS_SCH_USEC_INT_ALL, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID, product: IGS - Student System , description: Merges the Unit Version History details with the Current Unit Version 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_PS_UNIT_VER_HIST_V ,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
-
View: IGS_PS_UNIT_VER_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: Merges the Unit Version History details with the Current Unit Version 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 ,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
-
View: IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_ED_UNIT_VERSIONS, object_name:IGSBV_HIGH_ED_UNIT_VERSIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_USEC_LIM_WLST_PKG
12.1.1
-
APPS.IGS_PS_UNIT_VER_HIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_PS_UNIT_VER_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_ALL, object_name:IGS_PS_UNIT_VER_ALL, status:VALID,
-
TABLE: IGS.IGS_PS_UNIT_VER_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_ALL, object_name:IGS_PS_UNIT_VER_HIST_ALL, status:VALID,
-
APPS.IGS_EN_GEN_015 SQL Statements
12.1.1
-
TABLE: IGS.IGS_PS_LGCY_UV_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_UV_INT, object_name:IGS_PS_LGCY_UV_INT, status:VALID,
-
APPS.IGS_PS_SCH_INT_API_PUB SQL Statements
12.1.1
-
APPS.IGS_PS_UNIT_VER_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG SQL Statements
12.1.1
-
Lookup Type: LEGACY_TOKENS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
APPS.IGS_PS_USEC_SCHEDULE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_AU_GEN_004
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_HIST_PKG
12.1.1
-
APPS.IGS_PS_USEC_LIM_WLST_PKG dependencies on IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
-
APPS.IGS_PS_USEC_LIM_WLST_PKG dependencies on IGS_PS_UNIT_VER_ALL
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_UNIT_TYPE_LVL
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_RPT_FMLY_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_PKG
12.1.1
-
APPS.IGS_PS_VALIDATE_LGCY_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_PS_USEC_LIM_WLST
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_PS_UNIT_VER
12.1.1