Search Results type_program_year
Overview
The view IGSBV_UK_PRG_OFR_OPT_UNIT_SETS is a reporting and integration view within the Oracle E-Business Suite IGS – Student System product family. Its documented purpose is to serve as a Base View for Program Offering Option Unit Set HESA Details. HESA (the Higher Education Statistics Agency) is the statutory body responsible for the collection and publication of data about UK higher education providers; the view therefore exists to expose records that conform to HESA reporting requirements for programme offerings and the unit sets associated with them.
In the context of Oracle EBS 12.1.1 and 12.2.2, this view was historically used by customers operating the Student System module in a UK higher-education context, particularly where the institution recorded programme and unit-set data that had to be returned to HESA. The view functions as a denormalised, read-only projection over the underlying HESA programme-offering-option-unit-set entity, presenting columns using HESA-friendly aliases so that external extracts, regulatory reports, and integration interfaces can consume the data without needing to understand internal column naming.
It should be noted that the ETRM documentation marks IGS – Student System as Obsolete, and the view itself is documented as “Not implemented in this database.” Practically, this means the view exists in the data model and in historical releases but is not instantiated in every environment; availability depends on whether the HESA Student System extensions have been installed and the relevant database objects deployed.
Underlying Base Objects
The view text shows that it is defined over a single underlying object: IGS_HE_POOUS_ALL, aliased as POO. The naming convention is instructive: IGS_HE denotes the HESA-specific extension tables within the Student System schema, and POOUS corresponds to “Program Offering Option Unit Set.” The _ALL suffix indicates that the table carries a multi-organisation (multi-tenant within a single installation) column, and the view is CREATE ... WITH READ ONLY, confirming it is intended strictly for query and reporting workloads.
The ETRM metadata provided lists no documented referenced base objects, and no ownership is recorded. In practice, because the view selects directly from IGS_HE_POOUS_ALL, its row population, security, and validity are wholly inherited from that table. If IGS_HE_POOUS_ALL is absent or unpopulated in a given instance, the view either will not compile or will return no rows. There is no join, aggregation, or union in the definition; it is a straightforward column-aliasing projection.
Key Columns
The view exposes a broad set of attributes that map to HESA return fields. Significant columns include:
- HESA_POOUS_ID – The unique identifier for the programme-offering-option-unit-set record; the primary key of the underlying entity.
- PROGRAM_CODE / PROGRAM_VERSION_NUMBER – Identifies the programme and its version within the Student System.
- CALENDAR_TYPE – The academic calendar (for example, standard or alternative year definition) against which the offering is recorded.
- LOCATION_CODE, ATTENDANCE_MODE, ATTENDANCE_TYPE – Describe where and how the programme is delivered.
- UNIT_SET_CODE / UNIT_SET_ABBREVIATION – Points to the unit set associated with the offering option; the version number is exposed as the abbreviation column.
- FRANCHISING_ACTIVITY – Indicates the franchising arrangements applicable to the offering, a key HESA field for identifying provision delivered through partner institutions. This is the column implicated by the user search term “franchising_activity.”
- FUNDABILITY_CD, FUNDING_SOURCE, FEE_BAND, LEVEL_APP_TO_FUNDING_COUNCIL – Funding-related attributes used in HESA funding returns.
- MODE_OF_STUDY, TYPE_PROGRAM_YEAR, LENGTH_PROGRAM_YEAR – Study mode and year-of-programme characteristics.
- GRADING_SCHEMA_CODE / GRADING_SCHEMA_VERSION – The grading scheme applied to the offering.
- YOP_CREDIT_VALUE_1..4 / LEVEL_CREDIT_1..4 – Credit values and levels for each year of programme.
- OTHER_INST_PROV_TEACHING1/2, PROP_NOT_TAUGHT_BY_THIS_INST – Flags describing teaching delivered by other institutions or not delivered by the reporting institution.
- UFI_PLACE, FTE_INTENSITY, FTE_CALC_TYPE – FTE and unique factor identifier attributes.
- TEACHING_PERIOD_START_DATE / TEACHING_PERIOD_END_DATE – The teaching period boundaries for the offering.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE – Standard EBS audit columns.
Common Use Cases and Queries
Typical usage centres on HESA extracts, franchise/delivery analysis, and reconciliation of programme offerings. All queries should include the organisation context where multi-org security applies, and should be filtered by reporting year where the population is large.
To isolate franchised provision, the FRANCHISING_ACTIVITY column is the principal filter:
SELECT PROGRAM_CODE,
PROGRAM_VERSION_NUMBER,
UNIT_SET_CODE,
FRANCHISING_ACTIVITY,
FUNDING_SOURCE,
MODE_OF_STUDY
FROM IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
WHERE FRANCHISING_ACTIVITY IS NOT NULL
ORDER BY PROGRAM_CODE, PROGRAM_VERSION_NUMBER;
A second common scenario is producing a HESA-oriented listing of all offerings with funding and credit detail:
SELECT HESA_POOUS_ID,
PROGRAM_CODE,
UNIT_SET_CODE,
LEVEL_APP_TO_FUNDING_COUNCIL,
FEE_BAND,
YOP_CREDIT_VALUE_1,
LEVEL_CREDIT_1
FROM IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
WHERE FUNDABILITY_CD = :fundability_code;
A third use is reconciliation against the base table to confirm the view returns the expected population, since the view is a direct projection:
SELECT COUNT(*) FROM IGSBV_UK_PRG_OFR_OPT_UNIT_SETS; SELECT COUNT(*) FROM IGS_HE_POOUS_ALL;
Because the view is read-only and unaggregated, it is safe for ad-hoc reporting, BI Publisher data templates, and custom HESA extract programs. Where the view is not implemented, equivalent output must be sourced directly from IGS_HE_POOUS_ALL with the same column aliases applied in the client extract.
-
View: IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.2.2
product: IGS - Student System (Obsolete) , description: Base View for Program Offering Option Unit Set HESA Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
-
View: IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID, product: IGS - Student System , description: Base View for Program Offering Option Unit Set HESA Details , implementation_dba_data: APPS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS ,
-
View: IGSBV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_UNIT_SET_ATT_HESA_DET, object_name:IGSBV_ST_UNIT_SET_ATT_HESA_DET, status:VALID, product: IGS - Student System , description: Base business view to allow queries on Student Unit Set Attempt HESA Details. , implementation_dba_data: APPS.IGSBV_ST_UNIT_SET_ATT_HESA_DET ,
-
View: IGSBV_ST_UNIT_SET_ATT_HESA_DET
12.2.2
product: IGS - Student System (Obsolete) , description: Base business view to allow queries on Student Unit Set Attempt HESA Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
-
View: IGSFV_UK_PRG_OFR_OPT_UNIT_SETS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details , implementation_dba_data: APPS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS ,
-
View: IGSFV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_UNIT_SET_ATT_HESA_DET, object_name:IGSFV_ST_UNIT_SET_ATT_HESA_DET, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Unit Set Attempt HESA Details. , implementation_dba_data: APPS.IGSFV_ST_UNIT_SET_ATT_HESA_DET ,
-
VIEW: APPS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
-
View: IGSFV_ST_UNIT_SET_ATT_HESA_DET
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Unit Set Attempt HESA Details. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSBV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID,
-
VIEW: APPS.IGSBV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_UNIT_SET_ATT_HESA_DET, object_name:IGSBV_ST_UNIT_SET_ATT_HESA_DET, status:VALID,
-
VIEW: APPS.IGSFV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
-
VIEW: APPS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, object_name:IGSFV_UK_PRG_OFR_OPT_UNIT_SETS, status:VALID,
-
VIEW: APPS.IGSFV_ST_UNIT_SET_ATT_HESA_DET
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_UNIT_SET_ATT_HESA_DET, object_name:IGSFV_ST_UNIT_SET_ATT_HESA_DET, status:VALID,
-
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'. ,