Search Results enrollment_actual
Overview
IGS_PS_USEC_X_GRPMEM_V is a seeded, read-only view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product. It presents a denormalized, report-ready projection of unit section cross-listed group membership records, combining enrollment group membership details with presentation attributes of the underlying unit offering option. The view is intended for enrollment reporting and integration scenarios where a human-readable section identifier and enrollment capacity figures are required alongside group membership data. Because the view synthesizes a UNIT_SECTION descriptor from multiple coded columns, it removes the need for consumers to perform their own concatenation logic and joins against the unit offering option, unit version, unit class, and calendar instance tables.
In Oracle EBS 12.1.1 and 12.2.2 the object remains defined in the APPS schema with VALID status. Its presence in the ETRM repository confirms it is a supported, documented object for reporting rather than an internal implementation artifact.
Underlying Base Objects
The view definition references the following IGS tables:
- IGS_PS_USEC_X_GRPMEM — the driving table, holding cross-listed group membership records. Its ROWID is exposed as ROW_ID and its primary key column USEC_X_LISTED_GROUP_MEM_ID is surfaced directly.
- IGS_PS_UNIT_OFR_OPT — the unit offering option, joined on UOO_ID; source of UNIT_CD, VERSION_NUMBER, LOCATION_CD, UNIT_CLASS, and the ENROLLMENT_ACTUAL value.
- IGS_PS_UNIT_VER — the unit version, supplying default ENROLLMENT_MAXIMUM and OVERRIDE_ENROLLMENT_MAX where no waitlist limit row exists.
- IGS_PS_USEC_LIM_WLST — the waitlist limit table, outer-joined on UOO_ID and used as the preferred source of enrollment maximums.
- IGS_PS_USEC_X_GRP — the cross-listed group header, providing the MAX_ENR_GROUP and MAX_OVR_GROUP flags.
- IGS_CA_INST and IGS_AS_UNIT_CLASS — calendar instance and unit class, joined on CAL_TYPE/SEQUENCE_NUMBER and UNIT_CLASS respectively, contributing the alternate code and unit mode that complete the UNIT_SECTION string.
Note that the documented ETRM metadata lists no explicitly registered base objects for this view; the relationships above are derived from the shipped view text.
Key Columns
- ROW_ID — ROWID of the underlying IGS_PS_USEC_X_GRPMEM row, useful for DML targeting against the base table.
- UNIT_SECTION — a 2000-character concatenation of unit code, version number, location, unit class, unit mode, and alternate code; the primary human-readable label.
- USEC_X_LISTED_GROUP_MEM_ID / USEC_X_LISTED_GROUP_ID — membership and group identifiers.
- UOO_ID — the unit offering option identifier, the principal link back to enrollment transactions.
- PARENT — the parent indicator for hierarchical group membership.
- ENROLLMENT_MAXIMUM — returns NULL when MAX_ENR_GROUP is set on the group header (delegating control to the group), otherwise the maximum from the waitlist limit row, falling back to the unit version, then zero.
- OVERRIDE_MAXIMUM — analogous logic applied to the override enrollment maximum.
- ENROLLMENT_ACTUAL — NVL(UOOV.ENROLLMENT_ACTUAL, 0), the actual enrolled count for the offering option.
- Audit columns CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, and LAST_UPDATE_LOGIN preserve the base row's who-columns.
Common Use Cases and Queries
The view is typically used to report enrollment against capacity at the cross-listed group level, and to reconcile actual enrollment counts with configured maximums.
- Enrollment versus capacity by section:
SELECT unit_section, enrollment_actual, enrollment_maximum FROM igs_ps_usec_x_grpmem_v WHERE enrollment_maximum > 0 AND enrollment_actual >= enrollment_maximum; - Locating the group membership for a specific offering option:
SELECT * FROM igs_ps_usec_x_grpmem_v WHERE uoo_id = :p_uoo_id; - Audit of recently modified memberships:
SELECT usec_x_listed_group_mem_id, unit_section, last_updated_by, last_update_date FROM igs_ps_usec_x_grpmem_v ORDER BY last_update_date DESC;
Because ENROLLMENT_ACTUAL is sourced from IGS_PS_UNIT_OFR_OPT and defaulted to zero, the value reflects the offering option snapshot at query time and is not a live registration count; consumers requiring transactional precision should aggregate from the enrollment base tables instead.
-
View: IGS_PS_USEC_X_GRPMEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRPMEM_V, object_name:IGS_PS_USEC_X_GRPMEM_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_X_GRPMEM_V ,
-
View: IGS_PS_USO_CLAS_MEET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USO_CLAS_MEET_V, object_name:IGS_PS_USO_CLAS_MEET_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USO_CLAS_MEET_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_USEC_X_GRPMEM_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.2.2
product: IGS - Student System (Obsolete) , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: Not implemented in this database ,
-
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 ,
-
View: IGS_PS_USO_CLAS_MEET_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USO_CLAS_MEET_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USO_CLAS_MEET_V, object_name:IGS_PS_USO_CLAS_MEET_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_SV
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID, product: IGS - Student System , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_SV ,
-
VIEW: APPS.IGS_PS_USEC_X_GRPMEM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRPMEM_V, object_name:IGS_PS_USEC_X_GRPMEM_V, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
-
View: IGS_PS_SCH_INT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_USEC_X_GRPMEM_V
12.1.1
-
VIEW: APPS.IGS_PS_USO_CLAS_MEET_V
12.1.1
-
View: IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_SCH_INT ,
-
View: IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT ,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT
12.1.1
-
VIEW: APPS.IGS_PS_SCH_INT
12.1.1
-
View: IGS_PS_UNIT_OFR_OPT
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_V ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_SS_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_USEC_V, object_name:IGS_SS_USEC_V, status:VALID,
-
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_OFR_OPT_V
12.1.1
-
VIEW: APPS.IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID,
-
VIEW: APPS.IGS_SS_EN_ENROLL_CART_RSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_ENROLL_CART_RSLT_V, object_name:IGS_SS_EN_ENROLL_CART_RSLT_V, status:VALID,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_PE_V ,
-
View: IGS_SS_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_USEC_V, object_name:IGS_SS_USEC_V, status:VALID, product: IGS - Student System , description: This View stores the Unit Sections for self service applications. , implementation_dba_data: APPS.IGS_SS_USEC_V ,
-
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_SS_USEC_V
12.2.2
product: IGS - Student System (Obsolete) , description: This View stores the Unit Sections for self service applications. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_SS_EN_ENROLL_CART_RSLT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_SS_EN_ENROLL_CART_RSLT_V, object_name:IGS_SS_EN_ENROLL_CART_RSLT_V, status:VALID, product: IGS - Student System , description: Enrollment Worksheet Result , implementation_dba_data: APPS.IGS_SS_EN_ENROLL_CART_RSLT_V ,
-
View: IGS_SS_EN_ENROLL_CART_RSLT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Enrollment Worksheet Result , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_OFFERING_OPTIONS, object_name:IGSBV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements , special permission and grading indicators. , implementation_dba_data: APPS.IGSBV_UNIT_OFFERING_OPTIONS ,
-
View: IGSBV_UNIT_OFFERING_OPTIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements , special permission and grading indicators. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_OFFERING_OPTIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements, special permission and grading indicators. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_OFFERING_OPTIONS, object_name:IGSFV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements, special permission and grading indicators. , implementation_dba_data: APPS.IGSFV_UNIT_OFFERING_OPTIONS ,
-
APPS.IGS_EN_GEN_015 SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID,
-
VIEW: APPS.IGSBV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_OFFERING_OPTIONS, object_name:IGSBV_UNIT_OFFERING_OPTIONS, status:VALID,
-
VIEW: APPS.IGSFV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_OFFERING_OPTIONS, object_name:IGSFV_UNIT_OFFERING_OPTIONS, status:VALID,
-
TABLE: IGS.IGS_PS_SCH_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_INT_ALL, object_name:IGS_PS_SCH_INT_ALL, status:VALID,
-
APPS.IGS_SS_ENR_DETAILS SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID,
-
TABLE: IGS.IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_ALL, object_name:IGS_PS_UNIT_OFR_OPT_ALL, status:VALID,
-
APPS.IGS_PS_SCH_INT_API_PUB SQL Statements
12.1.1
-
APPS.IGS_EN_SUA_LGCY_PUB SQL Statements
12.1.1