Search Results igs_ps_usec_x_grp
Overview
IGS_PS_USEC_X_GRP is a core configuration table within the Oracle E-Business Suite Student System (IGS) product family, owned by the IGS schema. It stores the definition of Unit Section Cross-Listed Groups — logical groupings that associate two or more unit sections offered by different academic organizations so that they are treated as a single combined activity for enrollment, scheduling, and grade processing purposes. Cross-listing is commonly used when the same physical class, lecture, or laboratory session is delivered jointly by multiple departments, and each participating department must maintain its own catalog representation while the system recognizes the sections as a single teaching event.
The table therefore acts primarily as a reference or definition entity rather than a transactional one: it captures the group header, defines the calendar context in which the group is valid, and constrains how many enrollment and override groups the combination may generate. Under the heuristic Data Vault classification mined from the foreign key structure, this object is satellite-leaning, suggesting that in a dimensional or Data Vault style model it would typically be represented as a descriptive satellite attached to the cross-listed group business key, with its dependent membership rows held in a separate link or child structure.
Key Information Stored
The table is documented with twelve columns. The most significant are:
- USEC_X_LISTED_GROUP_ID — the surrogate primary key of the table (IGS_PS_USEC_X_GRP_PK) and also the business-key candidate defined by unique index IGS_PS_USEC_X_GRP_U1. Every downstream reference to the cross-listed group, including membership rows, resolves through this identifier.
- USEC_X_LISTED_GROUP_NAME — the user-facing name of the cross-listed group, used in inquiry screens, enrollment validation messages, and reporting.
- CAL_TYPE — the calendar type that qualifies the group, forming the first component of the secondary unique key. It participates in the foreign key to IGS_CA_INST_ALL.
- CI_SEQUENCE_NUMBER — the calendar instance sequence number, the second component of the composite foreign key to IGS_CA_INST_ALL, tying the group to a specific academic calendar instance.
- LOCATION_INHERITANCE — controls whether location attributes defined on the group are inherited by its member unit sections.
- MAX_ENR_GROUP and MAX_OVR_GROUP — capacity thresholds governing the maximum number of enrollment groups and override groups permitted for the cross-listed combination.
The secondary unique index IGS_PS_USEC_X_GRP_U2 covers USEC_X_LISTED_GROUP_NAME, CAL_TYPE, and CI_SEQUENCE_NUMBER, establishing that a group name must be unique within a given calendar type and sequence. The remaining columns — CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — are standard Oracle EBS audit columns and carry no business meaning beyond row provenance.
Common Use Cases and Queries
Typical usage includes identifying all cross-listed groups active in a given academic period, verifying that a candidate group name is unique before creation, and reporting capacity limits imposed on combined sections. A representative query joining the group to its calendar instance is:
SELECT g.usec_x_listed_group_id, g.usec_x_listed_group_name, g.cal_type, g.ci_sequence_number, g.max_enr_group FROM igs.igs_ps_usec_x_grp g WHERE g.cal_type = :cal_type AND g.ci_sequence_number = :ci_seq;- Membership expansion: join to IGS_PS_USEC_X_GRPMEM on USEC_X_LISTED_GROUP_ID to enumerate the unit sections belonging to each group.
- Data-quality checks: detect groups with null LOCATION_INHERITANCE or with MAX_ENR_GROUP set below the number of member sections.
Related Objects
- IGS_CA_INST_ALL — referenced through the composite foreign key IGS_PS_USEC_X_GRP.CAL_TYPE and CI_SEQUENCE_NUMBER; provides the calendar instance context for each group.
- IGS_PS_USEC_X_GRPMEM — the child membership table; its USEC_X_LISTED_GROUP_ID column references this table's primary key and records which unit sections participate in the group.
- IGS_PS_USEC_X_GRP_PK / _UK1 / _U1 / _U2 — the primary, unique, and business-key indexes enforcing identifier and name uniqueness.
- Student System enrollment and scheduling components that consume cross-listed group definitions when validating section combinations and computing combined capacity.
-
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 ,
-
APPS.IGS_PS_USEC_X_GRP_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_USEC_X_LISTED_GROUPS
12.1.1
-
SYNONYM: APPS.IGS_PS_USEC_X_GRP
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_PS_USEC_X_GRP, status:VALID,
-
VIEW: APPS.IGS_PS_USEC_X_GRP_V
12.1.1
-
TABLE: IGS.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,
-
VIEW: APPS.IGS_PS_USEC_X_GRPMEM_V
12.1.1
-
VIEW: APPS.IGS_AS_X_USEC_CLASSLIST_V
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_X_GRP_PKG
12.1.1
-
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 ,
-
View: IGS_PS_USEC_X_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRP_V, object_name:IGS_PS_USEC_X_GRP_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_X_GRP_V ,
-
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 ,
-
PACKAGE: APPS.IGS_PS_CREATE_GENERIC_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PS_CREATE_GENERIC_PKG, status:VALID,
-
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 ,
-
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: IGS_PS_USEC_X_GRP_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE: APPS.IGS_SS_ENR_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_SS_ENR_DETAILS, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_USEC_X_GRP_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_USEC_X_GRP_PKG, 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,
-
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: APPS.IGS_PS_GENERIC_PUB
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PS_GENERIC_PUB, 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_EN_GEN_015
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_GEN_015, 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,
-
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,
-
PACKAGE BODY: APPS.IGS_SS_ENR_DETAILS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_SS_ENR_DETAILS, 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: APPS.IGS_PS_USEC_X_GRP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_X_GRP_V, object_name:IGS_PS_USEC_X_GRP_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,
-
APPS.IGS_PS_VALIDATE_GENERIC_PKG SQL Statements
12.1.1
-
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,
-
PACKAGE BODY: APPS.IGS_PS_CREATE_GENERIC_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_CREATE_GENERIC_PKG, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_GEN_001
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_001, status:VALID,
-
Table: IGS_CA_INST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_CA_INST_ALL, object_name:IGS_CA_INST_ALL, status:VALID, product: IGS - Student System , description: Describes an instance of a calendar type , implementation_dba_data: IGS.IGS_CA_INST_ALL ,
-
Table: IGS_CA_INST_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Describes an instance of a calendar type , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_SS_ENR_DETAILS SQL Statements
12.1.1
-
APPS.IGS_PS_GEN_001 dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_USEC_X_GRP_PKG dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_EN_SUA_API dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_VALIDATE_GENERIC_PKG dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_SS_ENR_DETAILS dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_SS_ENR_DETAILS dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_PS_USEC_X_GRP
12.1.1
-
APPS.IGS_PS_CREATE_GENERIC_PKG dependencies on IGS_PS_USEC_X_GRP
12.1.1