Search Results igs_en_dl_offset_cons
Overview
The IGS.IGS_EN_DL_OFFSET_CONS table is a Student System (IGS) configuration table that defines the constraint rules governing enrollment deadline date offsets. In Oracle EBS 12.1.1 and 12.2.2, this table stores the metadata that determines how deadline offset calculations are constrained, resolved, and applied when the system derives enrollment deadlines for students. It sits at the core of the deadline-offset engine, providing the business logic that pairs a given offset constraint type with a non-standard use-case deadline setup and a specific deadline type.
The documented physical schema records 11 columns owned by the IGS schema, with the table marked VALID. Two unique indexes are defined: IGS_EN_DL_OFFSET_CONS_U1 and IGS_EN_DL_OFFSET_CONS_U2. The primary key constraint is IGS_EN_DL_OFFSET_CONS_PK on ENR_DL_OFFSET_CONS_ID. In Data Vault terms, the heuristic classification mined from the foreign-key structure is satellite-leaning. This suggests the table behaves primarily as a descriptive satellite attached to the non-standard use-case deadline step parent, rather than as a standalone hub or a pure link. Practitioners modelling this data for downstream analytics should therefore treat it as an attribute-bearing child keyed to its parent.
Key Information Stored
The most significant columns capture the constraint definition and its relationship to the enrollment deadline framework:
- ENR_DL_OFFSET_CONS_ID — The surrogate primary key, uniquely identifying each offset constraint record. Enforced by
IGS_EN_DL_OFFSET_CONS_PKand mirrored in unique indexIGS_EN_DL_OFFSET_CONS_U1. - OFFSET_CONS_TYPE_CD — The offset constraint type code; a business-key candidate participating in unique index
IGS_EN_DL_OFFSET_CONS_U2. - NON_STD_USEC_DLS_ID — Foreign key to
IGS_EN_NSU_DLSTP_ALL, linking the constraint to a non-standard use-case deadline step. Also part ofIGS_EN_DL_OFFSET_CONS_U2. - DEADLINE_TYPE — The deadline type to which the constraint applies; the third component of the business-key unique index
IGS_EN_DL_OFFSET_CONS_U2. - CONSTRAINT_CONDITION — The condition expression or criteria that triggers the constraint.
- CONSTRAINT_RESOLUTION — The resolution or action applied when the constraint condition is met.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — Standard Oracle EBS audit columns tracking record authorship and change history.
The composite unique index IGS_EN_DL_OFFSET_CONS_U2 (OFFSET_CONS_TYPE_CD, NON_STD_USEC_DLS_ID, DEADLINE_TYPE) is the strongest business-key candidate, guaranteeing that no duplicate constraint is defined for the same type, use-case deadline step, and deadline type combination.
Common Use Cases and Queries
Typical scenarios include validating deadline-offset configuration during implementation, troubleshooting unexpected deadline computations, and reporting on configured constraints for an institution. A representative query joining to the parent deadline-step table follows:
- Retrieve all constraints for a given non-standard use-case deadline step:
SELECT c.ENR_DL_OFFSET_CONS_ID, c.OFFSET_CONS_TYPE_CD, c.DEADLINE_TYPE, c.CONSTRAINT_CONDITION, c.CONSTRAINT_RESOLUTION FROM IGS.IGS_EN_DL_OFFSET_CONS c WHERE c.NON_STD_USEC_DLS_ID = :p_dls_id; - Join to the parent for descriptive context:
SELECT c.*, p.* FROM IGS.IGS_EN_DL_OFFSET_CONS c, IGS.IGS_EN_NSU_DLSTP_ALL p WHERE c.NON_STD_USEC_DLS_ID = p.NON_STD_USEC_DLS_ID; - Audit recently modified constraints:
SELECT * FROM IGS.IGS_EN_DL_OFFSET_CONS WHERE LAST_UPDATE_DATE > SYSDATE - 30 ORDER BY LAST_UPDATE_DATE DESC;
Related Objects
The most significant related object is the parent referenced by the documented foreign key:
- IGS_EN_NSU_DLSTP_ALL — Referenced via
IGS_EN_DL_OFFSET_CONS.NON_STD_USEC_DLS_ID; supplies the non-standard use-case deadline step context for each constraint. - Other IGS enrollment deadline tables, views, and the deadline-processing APIs that consume these constraint definitions, which resolve offset behaviour at runtime.
The FK relationship confirms that IGS_EN_DL_OFFSET_CONS functions as a dependent detail table, and it should always be queried with reference to its IGS_EN_NSU_DLSTP_ALL parent.
-
Table: IGS_EN_DL_OFFSET_CONS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_DL_OFFSET_CONS, object_name:IGS_EN_DL_OFFSET_CONS, status:VALID, product: IGS - Student System , description: Describes the columns related to enrollment deadline date offset constraints , implementation_dba_data: IGS.IGS_EN_DL_OFFSET_CONS ,
-
Table: IGS_EN_DL_OFFSET_CONS
12.2.2
product: IGS - Student System (Obsolete) , description: Describes the columns related to enrollment deadline date offset constraints , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_EN_DL_OFFSET_CONS_PKG SQL Statements
12.1.1
-
SYNONYM: APPS.IGS_EN_DL_OFFSET_CONS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:IGS_EN_DL_OFFSET_CONS, status:VALID,
-
VIEW: APPS.IGS_EN_DL_OFFSET_CONS_V
12.1.1
-
TABLE: IGS.IGS_EN_DL_OFFSET_CONS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_DL_OFFSET_CONS, object_name:IGS_EN_DL_OFFSET_CONS, status:VALID,
-
PACKAGE: APPS.IGS_PS_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE, object_name:IGS_PS_GEN_004, status:VALID,
-
View: IGS_EN_DL_OFFSET_CONS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Describes all the columns related to enrollment deadline date offset constraints , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_EN_DL_OFFSET_CONS_PKG
12.1.1
-
Table: IGS_EN_NSU_DLSTP_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_EN_NSU_DLSTP_ALL, object_name:IGS_EN_NSU_DLSTP_ALL, status:VALID, product: IGS - Student System , description: Contains all the columns related to non-standard unit section enrollment deadline setup , implementation_dba_data: IGS.IGS_EN_NSU_DLSTP_ALL ,
-
PACKAGE BODY: APPS.IGS_EN_VAL_AUS
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_VAL_AUS, status:VALID,
-
Table: IGS_EN_NSU_DLSTP_ALL
12.2.2
product: IGS - Student System (Obsolete) , description: Contains all the columns related to non-standard unit section enrollment deadline setup , implementation_dba_data: Not implemented in this database ,
-
View: IGS_EN_DL_OFFSET_CONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_DL_OFFSET_CONS_V, object_name:IGS_EN_DL_OFFSET_CONS_V, status:VALID, product: IGS - Student System , description: Describes all the columns related to enrollment deadline date offset constraints , implementation_dba_data: APPS.IGS_EN_DL_OFFSET_CONS_V ,
-
PACKAGE BODY: APPS.IGS_PS_GEN_004
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_PS_GEN_004, status:VALID,
-
PACKAGE BODY: APPS.IGS_EN_DL_OFFSET_CONS_PKG
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:IGS_EN_DL_OFFSET_CONS_PKG, status:VALID,
-
APPS.IGS_EN_VAL_AUS SQL Statements
12.1.1
-
VIEW: APPS.IGS_EN_DL_OFFSET_CONS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_EN_DL_OFFSET_CONS_V, object_name:IGS_EN_DL_OFFSET_CONS_V, status:VALID,
-
APPS.IGS_PS_GEN_004 SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_EN_VAL_AUS
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on IGS_EN_DL_OFFSET_CONS
12.1.1
-
APPS.IGS_EN_DL_OFFSET_CONS_PKG dependencies on IGS_EN_DL_OFFSET_CONS
12.1.1
-
APPS.IGS_EN_VAL_AUS dependencies on IGS_EN_DL_OFFSET_CONS
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on IGS_EN_DL_OFFSET_CONS
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_EN_DL_OFFSET_CONS_PKG dependencies on IGS_EN_DL_OFFSET_CONS_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_GEN_004
12.1.1
-
APPS.IGS_PS_GEN_004 dependencies on STANDARD
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'. ,