Search Results fte_cal_type
Overview
IGS_HE_FTE_CAL_PRD_V is a reporting view owned by the APPS schema in the Oracle E-Business Suite Student System (IGS) product family. It presents Full-Time Equivalent (FTE) calculation periods alongside their associated teaching calendar periods, exposing a denormalized result set suitable for reporting, extracts, and integration interfaces. The view is documented as VALID in ETRM for releases 12.1.1 and 12.2.2 and is described as "Stores FTE calculation period." Because FTE processing in the Student System must be aligned to both the calendar period used to measure FTE load and the teaching calendar during which instruction actually occurs, this view removes the need for consumers to join three separate tables themselves, presenting a single row per FTE calculation period with resolved calendar names and date boundaries. This makes the view a convenient source for FTE reporting, calendar validation, and downstream data warehouse loads.
Underlying Base Objects
The view is defined over three underlying objects:
- IGS_HE_FTE_CAL_PRD — aliased as A; the primary FTE calculation period entity, supplying the FTE calendar type, FTE sequence number, teaching calendar type, teaching sequence number, and standard WHO audit columns.
- IGS_CA_INST — aliased as B; the calendar instance for the FTE calendar, supplying the alternate code (used as the FTE calendar name) and the start and end dates of the FTE period.
- IGS_CA_INST — aliased as C; the calendar instance for the teaching calendar, supplying the alternate code and the teaching period start and end dates.
The join predicates match calendar type and sequence number for both the FTE calendar (A to B) and the teaching calendar (A to C). ROWID from IGS_HE_FTE_CAL_PRD is exposed as ROW_ID, giving each row a stable identifier derived from the base FTE period record.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_HE_FTE_CAL_PRD row; useful as a unique key within the view.
- FTE_CAL_TYPE / FTE_SEQUENCE_NUM — the calendar type and sequence identifying the FTE calculation period.
- FTE_CAL_NAME / FTE_START_DT / FTE_END_DT — the alternate code and date boundaries of the FTE calendar instance.
- TEACH_CAL_TYPE / TEACH_SEQUENCE_NUM — the calendar type and sequence of the associated teaching calendar.
- TEACH_CAL_NAME / TEACH_START_DT / TEACH_END_DT — the alternate code and date boundaries of the teaching calendar instance. TEACH_START_DT is the column most commonly targeted when filtering or reporting FTE periods by the start of teaching activity.
- CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE / LAST_UPDATE_LOGIN — standard Oracle WHO audit columns propagated from the base FTE period record.
Common Use Cases and Queries
Typical usage includes reporting FTE periods by teaching start date, validating that teaching and FTE periods are correctly aligned, and feeding FTE calculation results into extracts or downstream systems.
- List all FTE periods with their teaching start dates:
SELECT fte_cal_type, fte_sequence_num, fte_cal_name, teach_cal_type, teach_sequence_num, teach_cal_name, teach_start_dt, teach_end_dt FROM igs_he_fte_cal_prd_v ORDER BY teach_start_dt; - Filter by a specific teaching start date (the common search term):
SELECT * FROM igs_he_fte_cal_prd_v WHERE teach_start_dt = TO_DATE('2024-09-01','YYYY-MM-DD'); - Find FTE periods whose teaching period begins within an academic year:
SELECT fte_cal_type, fte_sequence_num, teach_cal_name, teach_start_dt FROM igs_he_fte_cal_prd_v WHERE teach_start_dt BETWEEN TO_DATE('2024-08-01','YYYY-MM-DD') AND TO_DATE('2025-07-31','YYYY-MM-DD'); - Compare FTE and teaching period boundaries:
SELECT fte_cal_name, teach_cal_name, fte_start_dt, teach_start_dt, fte_end_dt, teach_end_dt FROM igs_he_fte_cal_prd_v;
Because the view is read-only and derives entirely from its base tables, no maintenance or DML operations apply; consumers should treat it as a query-only reporting object for the Student System.
-
View: IGS_HE_FTE_CAL_PRD_V
12.2.2
product: IGS - Student System (Obsolete) , description: Stores FTE calculation period , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGS.IGS_HE_FTE_CAL_PRD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_FTE_CAL_PRD, object_name:IGS_HE_FTE_CAL_PRD, status:VALID,
-
View: IGS_HE_FTE_CAL_PRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_FTE_CAL_PRD_V, object_name:IGS_HE_FTE_CAL_PRD_V, status:VALID, product: IGS - Student System , description: Stores FTE calculation period , implementation_dba_data: APPS.IGS_HE_FTE_CAL_PRD_V ,
-
TABLE: IGS.IGS_HE_FTE_PROPRT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_FTE_PROPRT, object_name:IGS_HE_FTE_PROPRT, status:VALID,
-
VIEW: APPS.IGS_HE_FTE_CAL_PRD_V
12.1.1
-
Table: IGS_HE_FTE_PROPRT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_FTE_PROPRT, object_name:IGS_HE_FTE_PROPRT, status:VALID, product: IGS - Student System , description: To hold FTE calendar proportions. , implementation_dba_data: IGS.IGS_HE_FTE_PROPRT ,
-
Table: IGS_HE_FTE_CAL_PRD
12.2.2
product: IGS - Student System (Obsolete) , description: To store FTE calculation setup data. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_FTE_PROPRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_FTE_PROPRT_V, object_name:IGS_HE_FTE_PROPRT_V, status:VALID,
-
VIEW: APPS.IGS_HE_FTE_CAL_PRD_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_FTE_CAL_PRD_V, object_name:IGS_HE_FTE_CAL_PRD_V, status:VALID,
-
APPS.IGS_HE_FTE_CAL_PRD_PKG SQL Statements
12.1.1
-
Table: IGS_HE_FTE_CAL_PRD
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_HE_FTE_CAL_PRD, object_name:IGS_HE_FTE_CAL_PRD, status:VALID, product: IGS - Student System , description: To store FTE calculation setup data. , implementation_dba_data: IGS.IGS_HE_FTE_CAL_PRD ,
-
Table: IGS_HE_FTE_PROPRT
12.2.2
product: IGS - Student System (Obsolete) , description: To hold FTE calendar proportions. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_HE_FTE_PROPRT_PKG SQL Statements
12.1.1
-
View: IGS_HE_FTE_PROPRT_V
12.2.2
product: IGS - Student System (Obsolete) , description: Holds FTE Calendar proportions , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_FTE_PROPRT_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_FTE_PROPRT_V, object_name:IGS_HE_FTE_PROPRT_V, status:VALID, product: IGS - Student System , description: Holds FTE Calendar proportions , implementation_dba_data: APPS.IGS_HE_FTE_PROPRT_V ,
-
PACKAGE BODY: APPS.IGS_HE_FTE_PROPRT_PKG
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_FTE_CAL_PRD_PKG
12.1.1
-
APPS.IGS_HE_FTE_CALC_PKG SQL Statements
12.1.1
-
APPS.IGS_HE_FTE_PROPRT_PKG dependencies on IGS_HE_FTE_PROPRT
12.1.1
-
APPS.IGS_HE_FTE_CAL_PRD_PKG dependencies on IGS_HE_FTE_CAL_PRD
12.1.1
-
APPS.IGS_HE_FTE_CALC_PKG dependencies on IGS_HE_FTE_PROPRT
12.1.1
-
PACKAGE BODY: APPS.IGS_HE_FTE_CALC_PKG
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'. ,