Search Results igs_en_unitsetpstype
Overview
The IGS_EN_UNITSETPSTYPE table is a configuration table within the Oracle E-Business Suite's now-obsolete Student System (IGS). Its primary role is to enforce academic governance by defining course type restrictions on unit sets (also known as majors, minors, or specializations). A unit set represents a defined collection of academic units. This table acts as a control mechanism, restricting the specific course versions (e.g., Bachelor of Science 2022 intake) to which a particular unit set can be attached or linked. If no records exist for a given unit set in this table, the system interprets this as having no restrictions, allowing the unit set to be linked to any course version.
Key Information Stored
The table stores a composite key that uniquely identifies a restriction rule. The UNIT_SET_CD and VERSION_NUMBER columns together identify the specific unit set being restricted. The COURSE_TYPE column holds the code for the type of course (e.g., 'UNDERGRAD', 'POSTGRAD_RESEARCH') to which the unit set is permitted to link. The presence of a record signifies an explicit allowance; the absence of a record for a potential course type implies a restriction. This design allows administrators to create a positive list of compatible course types for each unit set.
Common Use Cases and Queries
A primary use case is during the setup or maintenance of academic programs, where an administrator needs to ensure a specialized unit set is only available within appropriate degree paths. For reporting, queries often join this table to course and unit set master data to audit or list effective restrictions. A common SQL pattern retrieves all permitted course types for a given unit set:
- SELECT course_type FROM igs_en_unitsetpstype WHERE unit_set_cd = '&unit_set_code' AND version_number = &version_num;
Conversely, to find all unit sets that can be attached to a specific course type, one would query:
- SELECT us.unit_set_cd, us.version_number FROM igs_en_unitsetpstype ust JOIN igs_en_unit_set_all us ON ust.unit_set_cd = us.unit_set_cd AND ust.version_number = us.version_number WHERE ust.course_type = '&course_type_code';
Related Objects
This table maintains critical foreign key relationships with core master tables in the Student System. It references the IGS_EN_UNIT_SET_ALL table via the UNIT_SET_CD and VERSION_NUMBER columns, ensuring any restriction is tied to a valid, existing unit set. Furthermore, it references the IGS_PS_TYPE_ALL table via the COURSE_TYPE column, validating that the restricted type is a defined and active course type within the system. These relationships are essential for maintaining data integrity across the academic structure.
-
Table: IGS_EN_UNITSETPSTYPE
12.2.2
product: IGS - Student System (Obsolete) , description: This table describes the course type restrictions on a unit set. It will restrict the course versions to which the unit set can be linked. If no records have been created for a unit set, no restrictions will be applied. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_UNITSETPSTYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_UNITSETPSTYPE, object_name:IGS_EN_UNITSETPSTYPE, status:VALID, product: IGS - Student System , description: This table describes the course type restrictions on a unit set. It will restrict the course versions to which the unit set can be linked. If no records have been created for a unit set, no restrictions will be applied. , implementation_dba_data: IGS.IGS_EN_UNITSETPSTYPE ,
-
APPS.IGS_PS_GEN_008 dependencies on IGS_EN_UNITSETPSTYPE
12.1.1
-
APPS.IGS_EN_UNITSETPSTYPE_PKG dependencies on IGS_EN_UNITSETPSTYPE
12.1.1
-
VIEW: APPS.IGS_EN_UNIT_SET_COURSE_TYPE_V
12.1.1
-
APPS.IGS_EN_UNITSETPSTYPE_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_EN_UNITSETPSTYPE
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_UNITSETPSTYPE, object_name:IGS_EN_UNITSETPSTYPE, status:VALID,
-
View: IGS_EN_UNIT_SET_COURSE_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_COURSE_TYPE_V, object_name:IGS_EN_UNIT_SET_COURSE_TYPE_V, status:VALID, product: IGS - Student System , description: IGS_EN_UNIT_SET_COURSE_TYPE_V maps the unit set course type to the corresponding unit set course. , implementation_dba_data: APPS.IGS_EN_UNIT_SET_COURSE_TYPE_V ,
-
SYNONYM: APPS.IGS_EN_UNITSETPSTYPE
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_UNITSETPSTYPE, status:VALID,
-
View: IGS_EN_UNIT_SET_COURSE_TYPE_V
12.2.2
product: IGS - Student System (Obsolete) , description: IGS_EN_UNIT_SET_COURSE_TYPE_V maps the unit set course type to the corresponding unit set course. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_UNITSETPSTYPE_PKG
12.1.1
-
APPS.IGS_EN_UNITSETPSTYPE_PKG dependencies on IGS_EN_UNITSETPSTYPE_PKG
12.1.1
-
Table: IGS_PS_TYPE_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the university set of program types. This set is not limited to the DEET set and values, which are reported to DEET, will be mapped onto DEET equivalent values. , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_UNITSETPSTYPE_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_UNITSETPSTYPE_PKG, status:VALID,
-
APPS.IGS_PS_GEN_008 dependencies on IGS_EN_UNIT_SET_NOTE
12.1.1
-
APPS.IGS_PS_VAL_COUS dependencies on IGS_PS_VER
12.1.1
-
Table: IGS_PS_TYPE_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_TYPE_ALL, object_name:IGS_PS_TYPE_ALL, status:VALID, product: IGS - Student System , description: This entity describes the university set of program types. This set is not limited to the DEET set and values, which are reported to DEET, will be mapped onto DEET equivalent values. , implementation_dba_data: IGS.IGS_PS_TYPE_ALL ,
-
VIEW: APPS.IGS_EN_UNIT_SET_COURSE_TYPE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_UNIT_SET_COURSE_TYPE_V, object_name:IGS_EN_UNIT_SET_COURSE_TYPE_V, status:VALID,
-
Table: IGS_EN_UNIT_SET_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: This field describes a unit-set, being a logical sub-grouping of course. e.g. Major, Minor, Stream, Strand. A unit-set is typically related to the rules which govern its completion via the Rules Sub-system. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_UNIT_SET_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_UNIT_SET_ALL, object_name:IGS_EN_UNIT_SET_ALL, status:VALID, product: IGS - Student System , description: This field describes a unit-set, being a logical sub-grouping of course. e.g. Major, Minor, Stream, Strand. A unit-set is typically related to the rules which govern its completion via the Rules Sub-system. , implementation_dba_data: IGS.IGS_EN_UNIT_SET_ALL ,
-
PACKAGE BODY: APPS.IGS_PS_GEN_008
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_008, status:VALID,
-
APPS.IGS_PS_GEN_008 dependencies on IGS_PS_OFR_UNIT_SET
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_VAL_COUS
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.1.1 FND Design Data
12.1.1
-
12.1.1 DBA Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
12.1.1 DBA Data
12.1.1
-
APPS.IGS_PS_GEN_008 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_008
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'. ,