Search Results igs_ps_sch_mwc_all
Overview
IGS_PS_SCH_MWC_ALL is a transactional table within the Oracle E-Business Suite Student System (IGS) product family. It stores information about "meet with group" configurations associated with a unit section occurrence for a particular transaction. In the context of Oracle EBS 12.1.1 and 12.2.2, the IGS product supports higher-education scheduling, enrollment, and academic records processing, and this table captures the grouping relationships that govern how students meet — physically or virtually — within scheduled class structures.
The table is owned by the IGS schema and resides in the APPS-accessible synonym layer, meaning it is normally queried through the APPS schema or via the corresponding _ALL synonym. Its documented physical schema in ETRM 12.1.1 shows 15 columns, a single-column primary key (IGS_PS_SCH_MWC_ALL_PK on MWC_GROUP_ID), and one unique index (IGS_PS_SCH_MWC_ALL_U1 on MWC_GROUP_ID). The heuristic Data Vault classification mined from the foreign-key structure is satellite-leaning. As a modeling suggestion, this implies the table behaves as a descriptive satellite attached to a parent hub or link — here, the unit section occurrence — rather than acting as an independent hub of business identity.
Key Information Stored
The table distinguishes its surrogate primary key from its business-key candidates as follows:
- MWC_GROUP_ID — the surrogate primary key (IGS_PS_SCH_MWC_ALL_PK); also documented as the unique index candidate (IGS_PS_SCH_MWC_ALL_U1). It uniquely identifies each meet-with group record.
- MEET_WITH_CLASS_GROUP_NAME — the descriptive name assigned to the meet-with class group.
- HOST_USO_ID / GUEST_USO_ID — identifiers for the host and guest unit section occurrences participating in the meet-with relationship.
- HOST_UOO_ID / GUEST_UOO_ID — identifiers for the host and guest unit offering options tied to the group.
- INT_USEC_ID — foreign key to IGS_PS_SCH_USEC_INT_ALL, linking the group to the relevant unit section occurrence.
- INT_OCCURS_ID — foreign key to IGS_PS_SCH_INT_ALL, linking to the occurrence record.
- MWC_MAX_ENROLLMENT_NUMBER — the maximum enrollment permitted for the meet-with group.
- ORG_ID — the operating unit, supporting multi-org security partitioning.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — the standard EBS WHO-column audit trail.
Common Use Cases and Queries
Typical scenarios include validating meet-with group capacity, reconciling host and guest section assignments, and reporting enrollment limits across scheduled occurrences. A common pattern joins the table to its parent occurrence to resolve context:
- Capacity reporting:
SELECT mwc_group_id, meet_with_class_group_name, mwc_max_enrollment_number FROM igs_ps_sch_mwc_all WHERE org_id = :p_org; - Host/guest reconciliation: join HOST_USO_ID and GUEST_USO_ID back to unit section occurrence tables to confirm the pairing.
- Occurrence linkage: join INT_OCCURS_ID to IGS_PS_SCH_INT_ALL for scheduling detail.
- Audit extraction: filter on LAST_UPDATE_DATE to capture recently modified group definitions for downstream integration.
Related Objects
The most significant related objects are derived from the documented foreign keys and the surrounding IGS scheduling model:
- IGS_PS_SCH_USEC_INT_ALL — referenced through INT_USEC_ID; the primary parent occurrence link.
- IGS_PS_SCH_INT_ALL — referenced through INT_OCCURS_ID; defines the scheduled occurrence.
- Unit section occurrence and unit offering option tables — resolved via HOST_USO_ID, GUEST_USO_ID, HOST_UOO_ID, and GUEST_UOO_ID.
- APPS synonyms and the _ALL view layer — the standard access path for reporting and 12.2 Online Patching compatibility.
- IGS enrollment and scheduling APIs — consume meet-with group data when validating section capacity and enrollment eligibility.
Because _ALL denotes multi-org awareness, queries should generally be filtered by ORG_ID to align with operating unit security in EBS 12.1.1 and 12.2.2.
-
Table: IGS_PS_SCH_MWC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_MWC_ALL, object_name:IGS_PS_SCH_MWC_ALL, status:VALID, product: IGS - Student System , description: Contains information about meet with group associated with a unit section occurrence for a particular transaction. , implementation_dba_data: IGS.IGS_PS_SCH_MWC_ALL ,
-
Table: IGS_PS_SCH_MWC_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains information about meet with group associated with a unit section occurrence for a particular transaction. , implementation_dba_data: Not implemented in this database ,
-
SYNONYM: APPS.IGS_PS_SCH_MWC_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_SCH_MWC_ALL, status:VALID,
-
VIEW: APPS.IGS_PS_SCH_MWC
12.1.1
-
TABLE: IGS.IGS_PS_SCH_MWC_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_MWC_ALL, object_name:IGS_PS_SCH_MWC_ALL, status:VALID,
-
View: IGS_PS_SCH_MWC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_MWC, object_name:IGS_PS_SCH_MWC, status:VALID, product: IGS - Student System , description: Retrofitted , implementation_dba_data: APPS.IGS_PS_SCH_MWC ,
-
Table: 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, product: IGS - Student System , description: Interface Table to capture the Scheduler Interface Unit Section Data , implementation_dba_data: IGS.IGS_PS_SCH_USEC_INT_ALL ,
-
Table: IGS_PS_SCH_USEC_INT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Interface Table to capture the Scheduler Interface Unit Section Data , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_SCH_MWC
12.2.2
product: IGS - Student System (Obsolete) , description: Retrofitted , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_SCH_MWC
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_MWC, object_name:IGS_PS_SCH_MWC, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_USEC_SCHEDULE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_USEC_SCHEDULE, status:VALID,
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_MWC_ALL
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE SQL Statements
12.1.1
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_X_USEC_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on FND_INSTALLATION
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INSTR_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_FACLT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on STANDARD
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_USEC_INT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_SCHEDULE
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INT_ALL
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_SCH_INT
12.1.1
-
12.1.1 DBA Data
12.1.1
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,
-
eTRM - IGS Tables and Views
12.1.1
description: Holds applicant whose records are wrongly available . It is recommended that such applicant records are deleted from the system . It synchronizes with UCAS view 'ivStarW'. ,