Search Results igs_ps_usec_x_grpmem
Overview
IGS_PS_USEC_X_GRPMEM is a Student System (IGS) table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores membership information for Unit Section Cross-Listed Groups. A cross-listed group allows two or more unit sections that are delivered together — but reported or administered separately — to be associated as a single logical teaching entity. This table records which individual unit offering option (that is, a specific unit section) belongs to which cross-listed group, and its position within that group's membership hierarchy.
The table resides in the IGS schema and is documented with VALID status in the ETRM. In Data Vault modeling terms, the foreign-key topology of this table — two independent references plus administrative metadata — suggests a link classification. IGS_PS_USEC_X_GRPMEM operates as the associative or intersection object that resolves the many-to-many relationship between unit offering options and cross-listed groups, rather than functioning as a descriptive hub of either entity on its own.
Key Information Stored
The documented physical schema for 12.1.1 comprises nine columns. The most significant are:
- USEC_X_LISTED_GROUP_MEM_ID — the surrogate primary key (IGS_PS_USEC_X_GRPMEM_PK), a system-generated identifier unique to each group-membership row. It is also the single-column unique index IGS_PS_USEC_X_GRPMEM_U1.
- USEC_X_LISTED_GROUP_ID — foreign key to IGS_PS_USEC_X_GRP, identifying the parent cross-listed group to which the member belongs.
- UOO_ID — foreign key to IGS_PS_UNIT_OFR_OPT_ALL, identifying the specific unit offering option (unit section) that is a member of the group.
- PARENT — holds hierarchical parentage information, supporting nested or ordered membership structures within a group.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard EBS WHO columns capturing audit and session context for row creation and maintenance.
The primary key is the surrogate membership identifier; the meaningful business relationship is expressed by the combination of USEC_X_LISTED_GROUP_ID and UOO_ID, though the metadata documents only the surrogate key and UOO_ID as unique-index candidates.
Common Use Cases and Queries
Typical reporting scenarios include identifying which sections constitute a cross-listed group, and confirming the group to which a given unit offering option belongs. A representative query joins members to their group and section details:
SELECT m.USEC_X_LISTED_GROUP_MEM_ID, m.USEC_X_LISTED_GROUP_ID, m.UOO_ID, m.PARENT FROM IGS.IGS_PS_USEC_X_GRPMEM m WHERE m.USEC_X_LISTED_GROUP_ID = :group_id;— enumerates members of a group.SELECT grp.* FROM IGS.IGS_PS_USEC_X_GRP grp, IGS.IGS_PS_USEC_X_GRPMEM m WHERE grp.USEC_X_LISTED_GROUP_ID = m.USEC_X_LISTED_GROUP_ID AND m.UOO_ID = :uoo_id;— resolves the group for a given section.- Joining to IGS_PS_UNIT_OFR_OPT_ALL to report section codes, teaching periods, and locations alongside group membership.
These queries support enrolment validation, timetable consolidation, fee and reporting reconciliation across cross-listed sections, and reconciliation extracts for downstream student records systems.
Related Objects
- IGS_PS_USEC_X_GRP — parent cross-listed group definition; joined on USEC_X_LISTED_GROUP_ID.
- IGS_PS_UNIT_OFR_OPT_ALL — unit offering options (sections); joined on UOO_ID.
- IGS_PS_USEC_X_GRPMEM_PK / IGS_PS_USEC_X_GRPMEM_U1 — primary key and unique index enforcing row identity.
- IGS_PS_UNIT_OFR_OPT — base unit offering option entity underlying the _ALL view, relevant when resolving USEC records.
- IGS_PS_USEC — unit section entity that contextualises the offering options linked through membership rows.
- IGS_PS_ENR_UNIT_OFF_OPT / enrolment objects — consume cross-listed groupings when processing student enrolments.
Because this is a link-style table, the integrity of the foreign keys to IGS_PS_USEC_X_GRP and IGS_PS_UNIT_OFR_OPT_ALL should be treated as the primary referential concern in any integration or migration activity.
-
Table: IGS_PS_USEC_X_GRPMEM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_X_GRPMEM, object_name:IGS_PS_USEC_X_GRPMEM, status:VALID, product: IGS - Student System , description: This table contains information about Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: IGS.IGS_PS_USEC_X_GRPMEM ,
-
Table: IGS_PS_USEC_X_GRPMEM
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains information about Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_USEC_X_GRPMEM_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGS_PS_USEC_X_USEC_V
12.1.1
-
VIEW: APPS.IGSFV_USEC_X_LISTED_GROUPS
12.1.1
-
VIEW: APPS.IGSBV_USEC_X_LISTED_GROUPS
12.1.1
-
View: IGS_PS_USEC_X_USEC_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_X_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_USEC_V, object_name:IGS_PS_USEC_X_USEC_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_X_USEC_V ,
-
SYNONYM: APPS.IGS_PS_USEC_X_GRPMEM
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_USEC_X_GRPMEM, status:VALID,
-
VIEW: APPS.IGS_AS_X_USEC_CLASSLIST_V
12.1.1
-
TABLE: IGS.IGS_PS_USEC_X_GRPMEM
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_X_GRPMEM, object_name:IGS_PS_USEC_X_GRPMEM, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_USEC_X_GRPMEM_PKG
12.1.1
-
VIEW: APPS.IGS_PS_USEC_X_GRPMEM_V
12.1.1
-
Table: IGS_PS_USEC_X_GRP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_X_GRP, object_name:IGS_PS_USEC_X_GRP, status:VALID, product: IGS - Student System , description: This table contains information about captures Unit Section Cross-Listed Groups. , implementation_dba_data: IGS.IGS_PS_USEC_X_GRP ,
-
Table: IGS_PS_USEC_X_GRP
12.2.2
product: IGS - Student System (Obsolete) , description: This table contains information about captures Unit Section Cross-Listed Groups. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_USEC_X_LISTED_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view which describes Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_USEC_X_LISTED_GROUPS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view which describes Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_X_USEC_CLASSLIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_X_USEC_CLASSLIST_V, object_name:IGS_AS_X_USEC_CLASSLIST_V, status:VALID, product: IGS - Student System , description: Describes Cross Listed Unit Sections for Class List , implementation_dba_data: APPS.IGS_AS_X_USEC_CLASSLIST_V ,
-
View: IGSBV_USEC_X_LISTED_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_X_LISTED_GROUPS, object_name:IGSBV_USEC_X_LISTED_GROUPS, status:VALID, product: IGS - Student System , description: This is the base view which describes Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: APPS.IGSBV_USEC_X_LISTED_GROUPS ,
-
View: IGSFV_USEC_X_LISTED_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_X_LISTED_GROUPS, object_name:IGSFV_USEC_X_LISTED_GROUPS, status:VALID, product: IGS - Student System , description: This is the base view which describes Unit Sections that are part of the Unit Section Cross-Listed Group. , implementation_dba_data: APPS.IGSFV_USEC_X_LISTED_GROUPS ,
-
PACKAGE BODY: APPS.IGS_PS_USEC_X_GRPMEM_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_USEC_X_GRPMEM_PKG, status:VALID,
-
VIEW: APPS.IGS_AS_XSLISTSEP_ADI_V
12.1.1
-
VIEW: APPS.IGS_AS_XSLISTCOM_ADI_V
12.1.1
-
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_PS_RLOVR_FAC_TSK
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_RLOVR_FAC_TSK, status:VALID,
-
View: IGS_AS_X_USEC_CLASSLIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes Cross Listed Unit Sections for Class List , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PS_GEN_003
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_003, status:VALID,
-
PACKAGE: APPS.IGS_PS_GENERIC_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PS_GENERIC_PUB, 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,
-
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_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 ,
-
PACKAGE BODY: APPS.IGS_SS_ENR_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SS_ENR_DETAILS, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_X_USEC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_USEC_V, object_name:IGS_PS_USEC_X_USEC_V, status:VALID,
-
VIEW: APPS.IGS_AS_X_USEC_CLASSLIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_X_USEC_CLASSLIST_V, object_name:IGS_AS_X_USEC_CLASSLIST_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_VALIDATE_GENERIC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_VALIDATE_GENERIC_PKG, 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,
-
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: IGS_AS_XSLISTCOM_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: Not implemented in this database ,
-
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_USEC_SCHEDULE
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_USEC_SCHEDULE, status:VALID,
-
View: IGS_AS_XSLISTSEP_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTSEP_ADI_V, object_name:IGS_AS_XSLISTSEP_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTSEP_ADI_V ,
-
View: IGS_AS_XSLISTSEP_ADI_V
12.2.2
product: IGS - Student System (Obsolete) , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: Not implemented in this database ,
-
View: IGS_AS_XSLISTCOM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTCOM_ADI_V, object_name:IGS_AS_XSLISTCOM_ADI_V, status:VALID, product: IGS - Student System , description: Assessment Crosslisted Student List WebADI View , implementation_dba_data: APPS.IGS_AS_XSLISTCOM_ADI_V ,
-
Table: IGS_PS_UNIT_OFR_OPT_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the available options for each unit offering. , implementation_dba_data: Not implemented in this database ,
-
Table: 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, product: IGS - Student System , description: This entity describes the available options for each unit offering. , implementation_dba_data: IGS.IGS_PS_UNIT_OFR_OPT_ALL ,
-
VIEW: APPS.IGSBV_USEC_X_LISTED_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_X_LISTED_GROUPS, object_name:IGSBV_USEC_X_LISTED_GROUPS, status:VALID,
-
VIEW: APPS.IGSFV_USEC_X_LISTED_GROUPS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_X_LISTED_GROUPS, object_name:IGSFV_USEC_X_LISTED_GROUPS, status:VALID,
-
VIEW: APPS.IGS_AS_XSLISTSEP_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTSEP_ADI_V, object_name:IGS_AS_XSLISTSEP_ADI_V, status:VALID,
-
VIEW: APPS.IGS_AS_XSLISTCOM_ADI_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_AS_XSLISTCOM_ADI_V, object_name:IGS_AS_XSLISTCOM_ADI_V, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_008, status:VALID,