Search Results instructor_number
Overview
The APPS.IGS_PS_UNSCHED_CL_V view is a reporting and integration object within the Oracle E-Business Suite IGS (Institution of Higher Education / Student System) product family. It exposes unscheduled class activity records together with fully resolved descriptive attributes for the instructor, activity type, location, building, and room. Rather than forcing downstream consumers to perform multiple joins against the HZ (Trading Community Architecture) party model and the IGS academic location hierarchy, the view presents a single denormalized result set suitable for concurrent programs, Oracle Reports, OBIEE extracts, and inbound/outbound interfaces.
The object is relevant to users searching on instructor_number, because the view surfaces the instructor's HZ party number as the column INSTRUCTOR_NUMBER. This allows an institution to report on unscheduled class delivery using the same party identifier used elsewhere in the HZ party model, rather than the internal surrogate INSTRUCTOR_ID. In EBS 12.1.1 and 12.2.2, the view is defined with a number of outer and inner joins, so its availability depends on the presence of related setup data.
Underlying Base Objects
The view is defined over the following documented base tables:
- IGS_PS_US_UNSCHED_CL (aliased
usucl) — the driving table holding unscheduled class records, its primary keyUS_UNSCHEDULED_CL_ID, theUOO_ID(unit offering option) reference, activity scheduling attributes, and the audit columns. - HZ_PARTIES (aliased
hz) — joined viausucl.instructor_id = hz.party_id(+), supplyingPARTY_NUMBER(exposed asINSTRUCTOR_NUMBER) andPARTY_NAME(exposed asINSTRUCTOR_NAME). The(+)outer-join syntax confirms that records with no resolvable instructor still return, with NULL instructor values. - IGS_PS_USEC_ACT_TYPE (aliased
usat) — suppliesACTIVITY_TYPE_DESCRIPTION, joined onactivity_type_id. - IGS_AD_LOCATION (aliased
loc) — suppliesLOCATION_DESCRIPTION, joined onlocation_cd. - IGS_AD_BUILDING (aliased
bld) — suppliesBUILDING_DESCRIPTION, joined onbuilding_id. - IGS_AD_ROOM (aliased
rom) — suppliesROOM_DESCRIPTION, joined onroom_id.
The ROW_ID pseudo-column from the driving table is retained, which supports certain EBS framework operations that require a row identifier (for example, in DML-enabled block-based forms or updatable regions).
Key Columns
US_UNSCHEDULED_CL_ID— primary identifier of the unscheduled class record.UOO_ID— link back to the unit offering option context.ACTIVITY_TYPE_ID/ACTIVITY_TYPE_DESCRIPTION— coded and descriptive activity type.LOCATION_CD/LOCATION_DESCRIPTION,BUILDING_ID/BUILDING_DESCRIPTION,ROOM_ID/ROOM_DESCRIPTION— physical delivery location hierarchy.NUMBER_OF_STUDENTS,HOURS_PER_STUDENT,HOURS_PER_FACULTY— teaching workload and capacity metrics.INSTRUCTOR_ID— internal party identifier of the assigned instructor.INSTRUCTOR_NUMBER/INSTRUCTOR_NAME— HZ party number and name, the search-relevant attributes.- Audit columns (
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN) for change tracking.
Common Use Cases and Queries
Typical usage includes instructor workload reporting, room and location utilization analysis, and integration extracts that must carry the instructor's party number.
SELECT instructor_number, instructor_name,
activity_type_description, location_description,
building_description, room_description,
number_of_students, hours_per_faculty
FROM apps.igs_ps_unsched_cl_v
WHERE instructor_number = :p_instructor_number;
SELECT activity_type_description,
COUNT(*), SUM(hours_per_student)
FROM apps.igs_ps_unsched_cl_v
GROUP BY activity_type_description;
Because the location, building, and room joins are inner joins, only records with valid setup for those entities are returned; consumers should be aware that missing reference data will suppress otherwise valid rows.
-
VIEW: APPS.IGS_PS_US_UNSCHED_CL_V
12.1.1
-
View: IGS_PS_US_UNSCHED_CL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_US_UNSCHED_CL_V, object_name:IGS_PS_US_UNSCHED_CL_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_US_UNSCHED_CL_V ,
-
View: IGS_PS_US_UNSCHED_CL_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_US_UNSCHED_CL_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_US_UNSCHED_CL_V, object_name:IGS_PS_US_UNSCHED_CL_V, status:VALID,
-
VIEW: APPS.IGSFV_USEC_TEACH_INSTRUCTORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_TEACH_INSTRUCTORS, object_name:IGSFV_USEC_TEACH_INSTRUCTORS, status:VALID,
-
VIEW: APPS.IGSBV_USEC_TEACH_INSTRUCTORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_TEACH_INSTRUCTORS, object_name:IGSBV_USEC_TEACH_INSTRUCTORS, status:VALID,
-
View: IGSBV_USEC_TEACH_INSTRUCTORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_USEC_TEACH_INSTRUCTORS, object_name:IGSBV_USEC_TEACH_INSTRUCTORS, status:VALID, product: IGS - Student System , description: This is the base view, which describes the teaching responsibilities for a unit section. , implementation_dba_data: APPS.IGSBV_USEC_TEACH_INSTRUCTORS ,
-
View: IGSFV_USEC_TEACH_INSTRUCTORS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_USEC_TEACH_INSTRUCTORS, object_name:IGSFV_USEC_TEACH_INSTRUCTORS, status:VALID, product: IGS - Student System , description: This is the full view, which describes the teaching responsibilities for a unit section. , implementation_dba_data: APPS.IGSFV_USEC_TEACH_INSTRUCTORS ,
-
View: IGSFV_USEC_TEACH_INSTRUCTORS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the full view, which describes the teaching responsibilities for a unit section. , implementation_dba_data: Not implemented in this database ,
-
View: IGSBV_USEC_TEACH_INSTRUCTORS
12.2.2
product: IGS - Student System (Obsolete) , description: This is the base view, which describes the teaching responsibilities for a unit section. , implementation_dba_data: Not implemented in this database ,
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_US_UNSCHED_CL
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on HZ_PARTIES
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_AD_ROOM
12.1.1
-
PACKAGE: APPS.IGS_PS_GENERIC_PUB
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'. ,