Search Results unit_section_end_date
Overview
IGS_PS_SCH_USEC_INT is an Oracle E-Business Suite interface view owned by the APPS schema within the IGS (Student System) product family. Its documented purpose is to capture Scheduler Interface Unit Section data, exposing the denormalized rows that feed or reflect the interface between external scheduling processes and the student system's unit section records. The view is defined over the underlying table IGS_PS_SCH_USEC_INT_ALL, filtering and projecting only the columns that the scheduler import interface requires. In EBS 12.1.1 and 12.2.2 the object carries a VALID status and is classified strictly as a VIEW, meaning it stores no data of its own and inherits all edition and row-level security behavior from its base table.
Because the view selects TAB.ROWID as ROW_ID, it is updateable under Oracle's standard key-preserved rules, which allows interface programs to resolve a row back to its physical base record for subsequent DML. This makes it a practical integration surface rather than a pure reporting construct.
Underlying Base Objects
The documented view text references a single base object, IGS_PS_SCH_USEC_INT_ALL. No other referenced base objects are documented in the ETRM metadata. The view is therefore a thin projection: every column is a straight pass-through from the _ALL table, with no joins, unions, or computed expressions. Practitioners should note that when metadata lists the base object as IGS_PS_SCH_USEC_INT_ALL, the corresponding translated, secured, or operating-unit-filtered variant (the non _ALL name) may reside in the same schema; however, only the _ALL table is documented here, and no synonyms or additional dependencies are recorded.
Key Columns
The view exposes 33 columns. The most significant for the user's search term and general use are:
- UNIT_SECTION_END_DATE — the scheduled end date of the unit section, the primary date used to determine when a section ceases to be offered. It is the column most commonly filtered when validating section ranges against a teaching calendar.
- UNIT_SECTION_START_DATE — the paired start date, typically used together with UNIT_SECTION_END_DATE to build date-range predicates.
- INT_USEC_ID — the primary interface identifier for the scheduler unit section record.
- ROW_ID — the base row's ROWID, enabling key-preserved updates.
- UNIT_CD, VERSION_NUMBER, CALENDAR_TYPE, SEQUENCE_NUMBER — the composite business keys identifying the unit offering and its calendar context.
- UNIT_SECTION_STATUS — the lifecycle status of the section (for example active, cancelled, or closed).
- ENROLLMENT_MAXIMUM, ENROLLMENT_ACTUAL, ENROLLMENT_EXPECTED, OVERRIDE_ENROLLMENT_MAX — capacity and demand metrics.
- CAL_START_DT, CAL_END_DT — the teaching calendar boundaries against which the unit section dates are validated.
- UOO_ID, INT_PAT_ID, TRANSACTION_ID, CALL_NUMBER — linkage keys to the unit offering option, pattern, and interface transaction context.
- ABORT_FLAG, IMPORT_DONE_FLAG — processing controls governing whether the interface row should be skipped or has already been consumed.
- ORG_ID — the operating unit, supporting multi-org security filtering.
- Audit columns: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN.
Common Use Cases and Queries
Typical scenarios include auditing imported scheduler sections, reconciling interface rows against the base table, and reporting sections by their end date to identify expiring or closed offerings. A representative query filtered on the searched column follows.
- List sections ending within a range:
SELECT int_usec_id, unit_cd, version_number, unit_section_start_date, unit_section_end_date, unit_section_status FROM apps.igs_ps_sch_usec_int WHERE unit_section_end_date BETWEEN :start_date AND :end_date AND org_id = :org_id; - Detect unconsumed interface rows:
SELECT int_usec_id, unit_cd, import_done_flag, abort_flag FROM apps.igs_ps_sch_usec_int WHERE NVL(import_done_flag,'N') = 'N' AND NVL(abort_flag,'N') = 'N';
- Validate calendar alignment:
SELECT int_usec_id, unit_section_end_date, cal_end_dt FROM apps.igs_ps_sch_usec_int WHERE unit_section_end_date > cal_end_dt;
All queries should be schema-qualified with APPS and constrained by ORG_ID where operating unit security is enforced.
-
View: IGS_PS_SCH_USEC_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT, object_name:IGS_PS_SCH_USEC_INT, status:VALID, product: IGS - Student System , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: APPS.IGS_PS_SCH_USEC_INT ,
-
View: IGS_PS_UNIT_OFR_OPT_SV
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_SV, object_name:IGS_PS_UNIT_OFR_OPT_SV, status:VALID, product: IGS - Student System , description: Secured View for the IGS_PS_UNIT_OFR_OPT_ALL table , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_SV ,
-
View: IGS_PS_SCH_INT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_SCH_INT, object_name:IGS_PS_SCH_INT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_SCH_INT ,
-
View: IGS_PS_UNIT_OFR_OPT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT, object_name:IGS_PS_UNIT_OFR_OPT, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT ,
-
View: IGS_PS_UNIT_OFR_OPT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_V, object_name:IGS_PS_UNIT_OFR_OPT_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_V ,
-
View: IGS_PS_USEC_OCCURS_FULL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_OCCURS_FULL_V, object_name:IGS_PS_USEC_OCCURS_FULL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_OCCURS_FULL_V ,
-
View: IGS_PS_UNIT_OFR_OPT_PE_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_OFR_OPT_PE_V, object_name:IGS_PS_UNIT_OFR_OPT_PE_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_OFR_OPT_PE_V ,
-
View: IGSBV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UNIT_OFFERING_OPTIONS, object_name:IGSBV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements , special permission and grading indicators. , implementation_dba_data: APPS.IGSBV_UNIT_OFFERING_OPTIONS ,
-
View: IGSFV_UNIT_OFFERING_OPTIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_OFFERING_OPTIONS, object_name:IGSFV_UNIT_OFFERING_OPTIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit offering options with details about the unit section, grading schema details, attendance requirements, special permission and grading indicators. , implementation_dba_data: APPS.IGSFV_UNIT_OFFERING_OPTIONS ,