Search Results cal_start_dt
Overview
APPS.IGS_PS_SCH_USEC_INT is an Oracle E-Business Suite view that exposes scheduling and enrollment data associated with instructional use (schedule use) records. It is defined as a simple projection over a single base table, IGS_PS_SCH_USEC_INT_ALL, and carriers the same rows while presenting the columns under stable, friendly aliases. Because the view exposes a ROWID pseudo-column as ROW_ID, it is updatable through the standard Oracle Forms / OAF mechanism, allowing consumers to query and, where authorized, modify the underlying instructional-use rows through this interface.
In the ETRM (Enterprise Teaching and Research Management) data model, this view serves as a reporting and integration surface for the student-scheduling subsystem. It consolidates calendar context, unit offering information, section scheduling, and enrollment metrics into a single denormalized structure, which simplifies ad-hoc reporting and inbound/outbound interface processing for student records.
Underlying Base Objects
Per the documented view text, the sole base object is IGS_PS_SCH_USEC_INT_ALL. The view performs no joins, unions, or aggregations; every column in the view maps one-to-one to a column of the base table, with tab.rowid surfaced as ROW_ID. Because the _ALL suffix denotes a multi-organization table, the view is partitioned by the ORG_ID column, which is included in the projection. Querying the view without an ORG_ID predicate in a multi-org-enabled session will expose rows across operating units, so ORG_ID filtering (or a Multi-Org secured session) is essential for correct results.
Key Columns
INT_USEC_ID— Primary key of the instructional use record; the identity used to link back to the base table.CALENDAR_TYPE,SEQUENCE_NUMBER,VERSION_NUMBER— Identify the calendar and version context in which the use record participates.UNIT_CD,UNIT_TITLE,UNIT_CLASS,OWNER_ORG_UNIT_CD— Describe the academic unit being scheduled.UNIT_SECTION_START_DATE,UNIT_SECTION_END_DATE,UNIT_SECTION_STATUS— Section timing and status.CAL_START_DT,CAL_END_DT— Calendar start and end dates. These are frequently searched (the user's query term "cal_start_dt" maps directly to this column) and are the primary date boundaries used to filter active scheduling windows.ENROLLMENT_MAXIMUM,ENROLLMENT_ACTUAL,ENROLLMENT_EXPECTED,OVERRIDE_ENROLLMENT_MAX— Enrollment capacity and realized/expected counts.LOCATION_CD— Physical or logical delivery location.UOO_ID,INT_PAT_ID— Foreign references to the unit offering option and pattern rows used elsewhere in the student model.TRANSACTION_ID,ABORT_FLAG,IMPORT_DONE_FLAG— Interface control columns indicating transaction lineage and processing state for inbound data loads.ORG_ID,CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN— Standard WHO columns supporting auditing and multi-org security.CALL_NUMBER,SUBTITLE,ORG_UNIT_DESCRIPTION,TEACHING_CAL_ALTERNATE_CODE— Descriptive attributes supporting catalog display and cross-reference.
Common Use Cases and Queries
Typical uses include enrollment capacity reporting, calendar-window scheduling exports, and reconciliation of interface-loaded schedule records. Because the view mirrors the base table exactly, most queries filter on CAL_START_DT, ORG_ID, and enrollment status columns.
- Retrieve active schedules within a date range for a given operating unit:
SELECT int_usec_id, unit_cd, unit_title, cal_start_dt, cal_end_dt,
enrollment_maximum, enrollment_actual
FROM apps.igs_ps_sch_usec_int
WHERE org_id = :p_org_id
AND cal_start_dt BETWEEN :p_from AND :p_to
ORDER BY cal_start_dt, unit_cd;
- Identify interface rows not yet processed:
SELECT int_usec_id, transaction_id, import_done_flag, abort_flag FROM apps.igs_ps_sch_usec_int WHERE org_id = :p_org_id AND NVL(import_done_flag,'N') = 'N';
Because updatable ROWID semantics are preserved, the view can also be the target of controlled DML through supported forms; however, direct SQL updates are discouraged in favour of the application's public APIs to maintain referential and business-rule integrity.
-
VIEW: APPS.IGS_PS_SCH_USEC_INT
12.1.1
-
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_SCH_USEC_INT
12.2.2
product: IGS - Student System (Obsolete) , description: Interface View to capture the Scheduler Interface Unit Section Data , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PE_ACAD_INTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ACAD_INTENTS_V, object_name:IGS_PE_ACAD_INTENTS_V, status:VALID,
-
View: IGS_PS_USEC_OCCURS_FULL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PE_ACAD_INTENTS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Academic Intent View , implementation_dba_data: Not implemented in this database ,
-
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_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.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,
-
View: IGS_PE_ACAD_INTENTS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PE_ACAD_INTENTS_V, object_name:IGS_PE_ACAD_INTENTS_V, status:VALID, product: IGS - Student System , description: Academic Intent View , implementation_dba_data: APPS.IGS_PE_ACAD_INTENTS_V ,
-
VIEW: APPS.IGS_PS_USEC_OCCURS_FULL_V
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_OFR_OPT_V
12.1.1
-
VIEW: APPS.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,
-
TABLE: IGS.IGS_PS_SCH_USEC_INT_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_SCH_USEC_INT_ALL, object_name:IGS_PS_SCH_USEC_INT_ALL, status:VALID,
-
VIEW: APPS.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,
-
PACKAGE: APPS.IGS_PS_WF_EVENT_HOOK_PKG
12.1.1
-
APPS.IGS_PS_WF_EVENT_HOOK_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_WF_EVENT_HOOK_PKG
12.1.1
-
APPS.IGS_PS_SCH_INT_API_PUB SQL Statements
12.1.1
-
APPS.IGS_PS_USEC_SCHEDULE SQL Statements
12.1.1
-
APPS.IGS_PS_WF_EVENT_HOOK_PKG dependencies on IGS_PS_UNIT_OFR_OPT_V
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_SCH_INT_API_PUB
12.1.1
-
APPS.IGS_PS_WF_EVENT_HOOK_PKG dependencies on IGS_PS_SH_USEC_OCCURS
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_USEC_SCHEDULE
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'. ,