Search Results step_override_type
Overview
The IGS_EN_ELGB_OVR_STEP table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Oracle Student Management (OSM) product. It functions as the detailed repository for enrollment eligibility overrides applied at the granular level of individual validation steps. When a student's enrollment request is subject to standard eligibility rules—such as prerequisites, co-requisites, or credit limits—an administrator may grant an exception. This table records the specifics of each overridden validation step, linking it to a master eligibility override header. Its primary role is to maintain a precise audit trail of which specific rule checks were bypassed, by whom, and when, ensuring compliance and data integrity within the student enrollment lifecycle.
Key Information Stored
The table's columns capture the override's identity, type, and administrative context. The ELGB_OVR_STEP_ID serves as the primary unique identifier for each override step record. The ELGB_OVERRIDE_ID is a critical foreign key linking the step to its parent override record in the IGS_EN_ELGB_OVR_ALL table. The central column for business logic is STEP_OVERRIDE_TYPE, which defines the category of the eligibility rule being overridden (e.g., a specific prerequisite check). This column is part of a unique index (IGS_EN_ELGB_OVR_STEP_U1), enforcing that a given override type is recorded only once per parent override. Supporting columns include STEP_OVERRIDE_DT (the application date), STEP_OVERRIDE_LIMIT (for credit point overrides), and standard WHO columns for tracking creation and modification. Notably, columns UNIT_CD, VERSION_NUMBER, and UOO_ID are documented as obsolete, indicating their business logic has likely been migrated elsewhere in later releases.
Common Use Cases and Queries
This table is essential for auditing, reporting, and troubleshooting enrollment exceptions. A common operational query involves listing all step-level overrides for a specific student or enrollment attempt, joining to the parent header and person tables. For example, to audit overrides of a specific type, one might use:
SELECT step.step_override_type,
step.step_override_dt,
step.step_override_limit,
header.person_id
FROM igs.igs_en_elgb_ovr_step step,
igs.igs_en_elgb_ovr_all header
WHERE step.elgb_override_id = header.elgb_override_id
AND step.step_override_type = '&STEP_TYPE';
Reporting use cases include generating compliance reports on the frequency of overrides by type or user, or analyzing the impact of overrides on student progression. Support personnel query this table to verify the existence and details of an override when resolving enrollment errors. The unique constraint on STEP_OVERRIDE_TYPE and ELGB_OVERRIDE_ID ensures data consistency by preventing duplicate overrides of the same step type for a single master override transaction.
Related Objects
The table maintains defined relationships with several other key OSM entities through foreign key constraints, as documented in the ETRM metadata.
- Primary Key:
IGS_EN_ELGB_OVR_STEP_PKon columnELGB_OVR_STEP_ID. - Foreign Key (Parent Override): The
ELGB_OVERRIDE_IDcolumn referencesIGS.IGS_EN_ELGB_OVR_ALL.ELGB_OVERRIDE_ID. This is the primary relationship, connecting the step detail to its master override header. - Foreign Key (Unit Offering): The obsolete
UOO_IDcolumn referencesIGS.IGS_PS_UNIT_OFR_OPT_ALL(Unit Offering Option). - Foreign Key (Unit): The obsolete
UNIT_CDcolumn references a unit code, though the specific parent table is not fully named in the provided metadata.
These relationships are crucial for constructing accurate joins in reports that need to combine override details with student, course, or unit offering information.
-
APPS.IGS_EN_GEN_015 dependencies on IGS_EN_ELGB_OVR_STEP
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_ELGB_OVR
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_EN_ELGB_OVR_STEP
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_EN_ELGB_OVR
12.1.1
-
TABLE: IGS.IGS_EN_ELGB_OVR_STEP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ELGB_OVR_STEP, object_name:IGS_EN_ELGB_OVR_STEP, status:VALID,
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on IGS_CA_INST
12.1.1
-
APPS.IGS_EN_ELGB_OVR_STEP_PKG dependencies on IGS_EN_ELGB_OVR_STEP
12.1.1
-
VIEW: APPS.IGS_EN_ELGB_OVR_SYS_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ELGB_OVR_SYS_STEP_V, object_name:IGS_EN_ELGB_OVR_SYS_STEP_V, status:VALID,
-
Table: IGS_EN_ELGB_OVR_STEP
12.2.2
product: IGS - Student System (Obsolete) , description: Contains the Enrollment Eligibility Override information for each validation step. , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_EN_ELGB_OVR_STEP
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_ELGB_OVR_STEP, object_name:IGS_EN_ELGB_OVR_STEP, status:VALID, product: IGS - Student System , description: Contains the Enrollment Eligibility Override information for each validation step. , implementation_dba_data: IGS.IGS_EN_ELGB_OVR_STEP ,
-
APPS.IGS_EN_ELGB_OVR_STEP_PKG SQL Statements
12.1.1
-
View: IGS_EN_ELGB_OVR_SYS_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ELGB_OVR_SYS_STEP_V, object_name:IGS_EN_ELGB_OVR_SYS_STEP_V, status:VALID, product: IGS - Student System , description: This view is used to capture the Enrollment Eligibility Override of system steps. , implementation_dba_data: APPS.IGS_EN_ELGB_OVR_SYS_STEP_V ,
-
APPS.IGS_EN_ELGBL_OVERRIDE dependencies on IGS_EN_ELGB_OVR_STEP
12.1.1
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG SQL Statements
12.1.1
-
APPS.IGS_EN_GEN_015 dependencies on IGS_EN_ELGB_OVR_UOO
12.1.1
-
View: IGS_EN_ELGB_OVR_SYS_STEP_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view is used to capture the Enrollment Eligibility Override of system steps. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_ELGB_OVR_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ELGB_OVR_STEP_V, object_name:IGS_EN_ELGB_OVR_STEP_V, status:VALID, product: IGS - Student System , description: Describes the Enrollment Category Eligibility Validation Override step Details , implementation_dba_data: APPS.IGS_EN_ELGB_OVR_STEP_V ,
-
VIEW: APPS.IGS_EN_ELGB_OVR_STEP_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_ELGB_OVR_STEP_V, object_name:IGS_EN_ELGB_OVR_STEP_V, status:VALID,
-
View: IGS_EN_ELGB_OVR_STEP_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the Enrollment Category Eligibility Validation Override step Details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_SVS_AUTH_CAL_PKG dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_EN_GEN_015 SQL Statements
12.1.1
-
APPS.IGS_EN_ELGBL_OVERRIDE dependencies on IGS_EN_ELGB_OVR
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ELGB_OVR_STEP_PKG
12.1.1
-
APPS.IGS_EN_ELGBL_OVERRIDE SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_SVS_AUTH_CAL_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_GEN_015
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_ELGBL_OVERRIDE
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'. ,