Search Results work_load_other
Overview
APPS.IGSBV_HIGH_ED_UNIT_VERSIONS is a reporting view within the Oracle E-Business Suite (EBS) Student Systems / Higher Education (IGS) product family. The "BV" prefix indicates that the object is a Business View, exposing a denormalized, business-friendly projection of the underlying unit (course/subject) version entity. In EBS 12.1.1 and 12.2.2 the view presents the versioned definition of a higher-education unit, combining identity attributes, lifecycle dates, credit and points information, workload and contact-hour metrics, enrolment controls, and financial-aid and enrolment-channel flags.
The view is intended primarily for reporting, enquiry, and integration use rather than transactional DML. Because it consolidates a large number of descriptive and control attributes of a unit version into a single projection, it is well suited to operational reports, extracts, and downstream interfaces that need to read unit version data without navigating multiple normalized tables. The presence of column aliases such as UNIT_CODE (from UNIT_CD), CONTACT_HOURS_OTHER (from CONTACT_HRS_OTHER), and BILLABLE_CREDIT_POINTS (from BILLING_HRS) demonstrates that the view renames legacy short-name columns into more readable business terms.
Underlying Base Objects
The view is defined by a single SELECT over the unit version entity. The ETRM metadata does not document explicit referenced base objects for this object, so the precise FROM clause and any join predicates cannot be confirmed from the supplied excerpt. In practice, a view of this name is built over the IGS unit version base table (the IGS_PS_UNIT / unit version family in the Student Systems data model), projecting columns that map one-to-one with the underlying attributes. Because the view exposes version-key columns (VERSION_NUMBER, START_DATE, REVIEW_DATE, EXPIRY_DATE, END_DATE), it is version-aware: each row represents a specific version of a unit, distinguished by version number and effective-date range.
Consumers should treat the view as read-only and note that any filters applied to the base entity — for example, institution or unit-status restrictions — may be enforced inside the view's definition or may not be applied at all. Where the view is used for referential lookups (for example, resolving COORD_PERSON_ID or OWNER_ORG_UNIT_CD), the caller is responsible for joining to the appropriate person or organization views.
Key Columns
- UNIT_CODE, VERSION_NUMBER — the unit identifier and its version number; together these form the effective key for a unit version row.
- START_DATE, REVIEW_DATE, EXPIRY_DATE, END_DATE — lifecycle and validity dates for the version.
- UNIT_STATUS, TITLE, SHORT_TITLE, SUBTITLE — descriptive and status attributes, including title override and subtitle modifiability controls.
- UNIT_LEVEL, UNIT_INT_COURSE_LEVEL_CODE — academic level classification.
- ENROLLED_CREDIT_POINTS, ACHIEVABLE_CREDIT_POINTS, LECTURE_CREDIT_POINTS, LAB_CREDIT_POINTS, OTHER_CREDIT_POINTS, BILLING_CREDIT_POINTS — the credit-point breakdown, with override indicators (POINTS_OVERRIDE_INDICATOR, TITLE_OVERRIDE_INDICATOR) controlling whether the value is system-derived or manually set.
- CLOCK_HOURS, WORK_LOAD_CP_LECTURE, WORK_LOAD_CP_LAB, WORK_LOAD_OTHER — workload measures.
- CONTACT_HOURS_LECTURE, CONTACT_HOURS_LABORATORY, CONTACT_HOURS_OTHER, NON_SCHED_REQUIRED_HOURS — the contact-hour metrics, which include the column the user searched for, CONTACT_HRS_OTHER (aliased CONTACT_HOURS_OTHER). This represents contact hours delivered in a form other than lecture or laboratory (for example, tutorial, seminar, workshop, or supervised study).
- ENROLLMENT_EXPECTED, ENROLLMENT_MINIMUM, ENROLLMENT_MAXIMUM — enrolment planning thresholds.
- REPEATABLE_INDICATOR, MAXIMUM_CREDITS_FOR_REPEAT, MAXIMUM_CREDITS_FOR_FUNDING, MAXIMUM_REPEAT_CREDIT_POINTS, SAME_TEACHING_PERIOD, SAME_TEACH_PERIOD_REPEATS — repeat and funding controls.
- ASSESSABLE_INDICATOR, SUPP_EXAM_PERM_INDICATOR, RESEARCH_UNIT_INDICATOR, INDUSTRIAL_INDICATOR, PRACTICAL_INDICATOR, AWARD_COURSE_ONLY_INDICATOR, SUB_UNIT_ALLOWED_INDICATOR, SUP_UNIT_ALLOWED_INDICATOR — academic and structural flags.
- STATE_FINANCIAL_AID, FEDERAL_FINANCIAL_AID, INSTITUTIONAL_FINANCIAL_AID — financial-aid eligibility attributes.
- IVR_ENROL_INDICATOR, SS_ENROL_IND, SS_DISPLAY_IND — enrolment-channel (IVR / self-service) flags.
Common Use Cases and Queries
Typical uses include unit-catalogue extracts, credit-point and workload audits, contact-hour reporting, and enrolment-eligibility checks. To surface contact hours by category for a unit version:
SELECT UNIT_CODE, VERSION_NUMBER, TITLE, CONTACT_HOURS_LECTURE, CONTACT_HOURS_LABORATORY, CONTACT_HOURS_OTHER, NON_SCHED_REQUIRED_HOURS FROM APPS.IGSBV_HIGH_ED_UNIT_VERSIONS WHERE UNIT_CODE = :unit_code;
To obtain the current effective version of a unit (filtering by the validity window):
SELECT UNIT_CODE, VERSION_NUMBER, START_DATE, END_DATE, UNIT_STATUS FROM APPS.IGSBV_HIGH_ED_UNIT_VERSIONS WHERE UNIT_CODE = :unit_code AND SYSDATE BETWEEN START_DATE AND NVL(END_DATE, SYSDATE);
To review credit-point composition and override indicators:
SELECT UNIT_CODE, VERSION_NUMBER, ENROLLED_CREDIT_POINTS, ACHIEVABLE_CREDIT_POINTS, LECTURE_CREDIT_POINTS, LAB_CREDIT_POINTS, OTHER_CREDIT_POINTS, POINTS_OVERRIDE_INDICATOR FROM APPS.IGSBV_HIGH_ED_UNIT_VERSIONS WHERE POINTS_OVERRIDE_INDICATOR = 'Y';
Because the view is read-only and may carry no built-in institution or security predicate, callers should add appropriate WHERE clauses (unit code, version, date range, status, or owning org unit) to constrain results, and should join to person or organization views to resolve COORD_PERSON_ID and OWNER_ORG_UNIT_CD where display values are required.
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD SQL Statements
12.1.1
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_ED_UNIT_VERSIONS, object_name:IGSBV_HIGH_ED_UNIT_VERSIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS ,
-
View: IGSBV_HIGH_ED_UNIT_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER ,
-
VIEW: APPS.IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID,
-
TABLE: IGS.IGS_PS_USEC_CPS
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_USEC_CPS, object_name:IGS_PS_USEC_CPS, status:VALID,
-
View: IGS_PS_USEC_CPS_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER_V
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_USEC_CPS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_USEC_CPS_V, object_name:IGS_PS_USEC_CPS_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_USEC_CPS_V ,
-
View: IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_V ,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
-
View: IGS_PS_UNIT_VER_HIST_V
12.2.2
product: IGS - Student System (Obsolete) , description: Merges the Unit Version History details with the Current Unit Version Details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID, product: IGS - Student System , description: Merges the Unit Version History details with the Current Unit Version Details enabling all details to be accessed over time, up till the current day. Each entry represents all column values over defined time periods. , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST_V ,
-
VIEW: APPS.IGS_PS_UNIT_VER_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_V, object_name:IGS_PS_UNIT_VER_V, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
-
View: IGS_PS_UNIT_VER_HIST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST, object_name:IGS_PS_UNIT_VER_HIST, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGS_PS_UNIT_VER_HIST ,
-
VIEW: APPS.IGSBV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_HIGH_ED_UNIT_VERSIONS, object_name:IGSBV_HIGH_ED_UNIT_VERSIONS, status:VALID,
-
View: IGS_PS_UNIT_VER_HIST
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
PACKAGE BODY: APPS.IGS_PS_FAC_CREDT_WRKLOAD
12.1.1
-
APPS.IGS_PS_USEC_CPS_PKG SQL Statements
12.1.1
-
VIEW: APPS.IGSFV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_ED_UNIT_VERSIONS, object_name:IGSFV_HIGH_ED_UNIT_VERSIONS, status:VALID,
-
View: IGSFV_HIGH_ED_UNIT_VERSIONS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_HIGH_ED_UNIT_VERSIONS, object_name:IGSFV_HIGH_ED_UNIT_VERSIONS, status:VALID, product: IGS - Student System , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: APPS.IGSFV_HIGH_ED_UNIT_VERSIONS ,
-
View: IGSFV_HIGH_ED_UNIT_VERSIONS
12.2.2
product: IGS - Student System (Obsolete) , description: This entity describes the Unit version details with title information, important dates, maximum/minimum/increment points, details regarding enrolment with enrolment/offered load calendar types and sequence numbers. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_PS_UNIT_VER
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER, object_name:IGS_PS_UNIT_VER, status:VALID,
-
VIEW: APPS.IGS_PS_UNIT_VER_HIST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_V, object_name:IGS_PS_UNIT_VER_HIST_V, status:VALID,
-
APPS.IGS_PS_UNIT_VER_HIST_PKG SQL Statements
12.1.1
-
TABLE: IGS.IGS_PS_UNIT_VER_HIST_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_HIST_ALL, object_name:IGS_PS_UNIT_VER_HIST_ALL, status:VALID,
-
TABLE: IGS.IGS_PS_UNIT_VER_ALL
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_UNIT_VER_ALL, object_name:IGS_PS_UNIT_VER_ALL, status:VALID,
-
TABLE: IGS.IGS_PS_LGCY_UV_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_UV_INT, object_name:IGS_PS_LGCY_UV_INT, status:VALID,
-
PACKAGE BODY: APPS.IGS_PS_USEC_CPS_PKG
12.1.1
-
TABLE: IGS.IGS_PS_LGCY_US_INT
12.1.1
owner:IGS, object_type:TABLE, fnd_design_data:IGS.IGS_PS_LGCY_US_INT, object_name:IGS_PS_LGCY_US_INT, status:VALID,
-
APPS.IGS_PS_UNIT_VER_PKG SQL Statements
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG SQL Statements
12.1.1
-
Lookup Type: LEGACY_TOKENS
12.1.1
product: IGS - Student System , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
Lookup Type: LEGACY_TOKENS
12.2.2
product: IGS - Student System (Obsolete) , meaning: Legacy Message Tokens , description: Legacy Message Tokens ,
-
PACKAGE BODY: APPS.IGS_AU_GEN_004
12.1.1
-
PACKAGE: APPS.IGS_PS_GENERIC_PUB
12.1.1
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD dependencies on IGS_PS_UNIT_OFR_OPT_ALL
12.1.1
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD dependencies on IGS_PS_UNIT_OFR_OPT
12.1.1
-
APPS.IGS_PS_GENERIC_PUB dependencies on IGS_PS_USEC_CPS
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_HIST_PKG
12.1.1
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD dependencies on IGS_PS_UNIT_VER_ALL
12.1.1
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD dependencies on IGS_PS_USEC_CPS
12.1.1
-
PACKAGE BODY: APPS.IGS_PS_UNIT_VER_PKG
12.1.1
-
APPS.IGS_PS_FAC_CREDT_WRKLOAD dependencies on IGS_PS_UNIT_VER
12.1.1
-
APPS.IGS_PS_UNIT_LGCY_PKG dependencies on IGS_PS_USEC_CPS_PKG
12.1.1