Search Results fac_ovr_wl_id
Overview
IGS.IGS_PS_FAC_OVR_WL is a transaction table in the Oracle E-Business Suite Higher Education / Student Systems (IGS) schema that stores overridden expected workload assignments for faculty members. Within Oracle EBS 12.1.1 and 12.2.2, the table supports the Faculty Workload functionality, where the standard expected teaching or administrative workload defined at the faculty level may need to be adjusted for a specific period. Each row captures one such override, recording the parent workload assignment, the effective date range, the substituted workload value, and the reason for the change.
From a Data Vault modeling perspective, the mined foreign-key structure suggests classifying this table as a link entity. It connects a parent faculty workload record (IGS_PS_FAC_WL) to an override reason reference (IGS_PS_WL_OVER_RESN), while carrying its own descriptive attributes such as the date range and new workload value. The table resides in the APPS_TS_TX_DATA tablespace with PCT Free 10, consistent with OLTP transaction storage in Oracle EBS.
Key Information Stored
The table contains eleven documented columns. The most significant are:
- FAC_OVR_WL_ID — NUMBER(15). Sequence-generated surrogate primary key and the column most commonly searched by users. It is the single column of the unique index IGS_PS_FAC_OVR_WL_U1 and of the primary key constraint IGS_PS_FAC_OVR_WL_PK.
- FAC_WL_ID — NUMBER(15). Foreign key to the parent table IGS_PS_FAC_WL. This is the principal business link identifying which faculty workload assignment is being overridden.
- START_DATE and END_DATE — DATE. Define the period over which the overridden expected workload applies. These dates bound the validity window of the override.
- NEW_EXP_WL — NUMBER. The replacement expected workload value in force for the period delimited by START_DATE and END_DATE.
- OVERRIDE_REASON — VARCHAR2(30). Foreign key to IGS_PS_WL_OVER_RESN, classifying why the workload was overridden.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN — standard WHO audit columns recording row provenance and change history.
Only FAC_OVR_WL_ID is documented as a unique business-key candidate; the remaining identifiers are foreign keys or descriptive attributes.
Common Use Cases and Queries
Typical scenarios include reporting the effective expected workload for a faculty member over an academic period, auditing who altered workload values and why, and reconciling overridden workloads against the parent assignment. A common query retrieves all overrides for a given parent workload:
SELECT FAC_OVR_WL_ID, FAC_WL_ID, START_DATE, END_DATE,
NEW_EXP_WL, OVERRIDE_REASON
FROM IGS.IGS_PS_FAC_OVR_WL
WHERE FAC_WL_ID = :p_fac_wl_id
ORDER BY START_DATE;
To find overrides active on a specific date, filter where START_DATE <= :as_of AND (END_DATE IS NULL OR END_DATE >= :as_of). Resolving the override reason label requires a join to IGS_PS_WL_OVER_RESN on OVERRIDE_REASON. Trend reporting by reason can be achieved with a GROUP BY on OVERRIDE_REASON, while audit extracts typically select the WHO columns alongside the surrogate key.
Related Objects
The most significant related objects are:
- IGS.IGS_PS_FAC_WL — parent workload table; joined on FAC_WL_ID = IGS_PS_FAC_WL.FAC_WL_ID.
- IGS.IGS_PS_WL_OVER_RESN — override reason reference table; joined on OVERRIDE_REASON.
- APPS.IGS_PS_FAC_OVR_WL — the APPS synonym, the object normally queried from application code and reports.
- IGS_PS_FAC_OVR_WL_PK — primary key constraint on FAC_OVR_WL_ID.
- IGS_PS_FAC_OVR_WL_U1 — unique index on FAC_OVR_WL_ID, the documented business-key candidate.
Application-level dependent objects may include faculty workload concurrent programs, OAF pages, and enrollment or teaching-load reports that consume the overridden values.
-
TABLE: IGS.IGS_PS_FAC_OVR_WL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_FAC_OVR_WL, object_name:IGS_PS_FAC_OVR_WL, status:VALID,
-
VIEW: APPS.IGS_PS_FAC_OVR_WL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_OVR_WL_V, object_name:IGS_PS_FAC_OVR_WL_V, status:VALID,
-
Table: IGS_PS_FAC_OVR_WL
12.2.2
product: IGS - Student System (Obsolete) , description: This table stores assigned task for the faculty , implementation_dba_data: Not implemented in this database ,
-
Table: IGS_PS_FAC_OVR_WL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_FAC_OVR_WL, object_name:IGS_PS_FAC_OVR_WL, status:VALID, product: IGS - Student System , description: This table stores assigned task for the faculty , implementation_dba_data: IGS.IGS_PS_FAC_OVR_WL ,
-
View: IGS_PS_FAC_OVR_WL_V
12.2.2
product: IGS - Student System (Obsolete) , description: This view stores assigned task for the faculty , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_FAC_OVR_WL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_FAC_OVR_WL_V, object_name:IGS_PS_FAC_OVR_WL_V, status:VALID, product: IGS - Student System , description: This view stores assigned task for the faculty , implementation_dba_data: APPS.IGS_PS_FAC_OVR_WL_V ,
-
APPS.IGS_PS_FAC_OVR_WL_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_FAC_OVR_WL_PKG
12.1.1
-
APPS.IGS_PS_FAC_OVR_WL_PKG dependencies on IGS_PS_FAC_OVR_WL
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'. ,