Search Results oss_crdtscm
Overview
APPS.IGS_HE_ST_UNV_DTLS_V is a reporting view in the Oracle E-Business Suite higher-education (Student System) module, exposing statutory unit-of-study detail records for the Higher Education Statistics Agency (HESA) student return. The view presents a denormalised read of the HESA student unit-version entity, joining the base record to unit version, code value, and campus location reference data. Its role is to provide a stable, human-readable projection of the underlying transactional table for statutory reporting, extracts, and integration interfaces.
The view is owned by the APPS schema and is registered as a documented object within ETRM for EBS 12.2.2, with lineage tracing back to the tables listed below. It is customarily consumed in read-only fashion by reporting tools and outbound extracts; because a ROWID from the driving table is exposed as ROW_ID, the view can also be used by forms or concurrent programs that require a unique key reference.
Underlying Base Objects
The view is defined over four objects:
- IGS_HE_ST_UNT_VS (alias A) — the driving HESA student unit-version table holding each statutory unit record.
- IGS_PS_UNIT_VER (alias B) — the student unit version table, joined on UNIT_CD and VERSION_NUMBER, supplying descriptive unit attributes such as SHORT_TITLE.
- IGS_HE_CODE_VALUES (alias C) — the code-value lookup, outer-joined on the credit transfer scheme code with CODE_TYPE = 'OSS_CRDTSCM'.
- IGS_AD_LOCATION (alias D) — the location reference table, outer-joined on LOCATION_CD with LOCATION_TYPE = 'CAMPUS'.
The two joins to units and code values are mandatory (inner), while the joins to code values and location are outer joins (noted by the (+) operator), so records are retained even when a credit transfer scheme description or campus location description is absent.
Key Columns
- ROW_ID — ROWID of the IGS_HE_ST_UNT_VS row, providing a unique identifier for the record.
- HESA_ST_UNT_VS_ID — primary identifier of the statutory student unit-version record.
- UNIT_CD and VERSION_NUMBER — unit code and version, forming the join to IGS_PS_UNIT_VER.
- SHORT_TITLE — short descriptive title of the unit, sourced from IGS_PS_UNIT_VER.
- PROP_OF_TEACHING_IN_WELSH — proportion of teaching delivered in Welsh.
- CREDIT_TRANSFER_SCHEME and VALUE_DESCRIPTION — the credit transfer scheme code and its decoded description from the OSS_CRDTSCM code type.
- MODULE_LENGTH and PROPORTION_OF_FTE — length of the module and its FTE proportion.
- LOCATION_CD and LOCATION_DESC — campus code and its description.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — audit columns.
- EXCLUDE_FLAG — indicator of whether the record is excluded from the return.
Common Use Cases and Queries
Typical usage covers HESA extract preparation, unit-level reporting, and validation of credit transfer and location mappings. The view removes the need for report authors to encode the four-table join manually.
SELECT row_id,
hesa_st_unt_vs_id,
unit_cd,
version_number,
short_title,
value_description,
proportion_of_fte,
location_desc,
exclude_flag
FROM apps.igs_he_st_unv_dtls_v
WHERE unit_cd = :p_unit_cd;
Filtering by credit transfer scheme, or isolating records excluded from the return, is equally straightforward:
SELECT unit_cd, version_number, location_desc FROM apps.igs_he_st_unv_dtls_v WHERE credit_transfer_scheme IS NOT NULL AND exclude_flag = 'N';
Because the view contains no aggregation, it is suitable as a base for further joins to student enrolment data and for direct outbound extraction. Access should be granted through the standard APPS synonym and appropriate responsibility menus.
-
VIEW: APPS.IGS_HE_ST_UNV_DTLS_V
12.1.1
-
VIEW: APPS.IGSFV_UNIT_UK_STATISTICS
12.1.1
-
View: IGS_HE_ST_UNV_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_UNV_DTLS_V, object_name:IGS_HE_ST_UNV_DTLS_V, status:VALID, product: IGS - Student System , description: Hesa Unit Details , implementation_dba_data: APPS.IGS_HE_ST_UNV_DTLS_V ,
-
View: IGS_HE_ST_UNV_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Unit Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UNIT_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_UK_STATISTICS, object_name:IGSFV_UNIT_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Details , implementation_dba_data: APPS.IGSFV_UNIT_UK_STATISTICS ,
-
View: IGSFV_UNIT_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Unit Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGS_HE_ST_PRG_DTLS_V
12.1.1
-
VIEW: APPS.IGSFV_PROGRAM_UK_STATISTICS
12.1.1
-
View: IGS_HE_ST_PRG_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PRG_DTLS_V, object_name:IGS_HE_ST_PRG_DTLS_V, status:VALID, product: IGS - Student System , description: Stores HESA Program details , implementation_dba_data: APPS.IGS_HE_ST_PRG_DTLS_V ,
-
View: IGS_HE_ST_PRG_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Stores HESA Program details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROGRAM_UK_STATISTICS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Program Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROGRAM_UK_STATISTICS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROGRAM_UK_STATISTICS, object_name:IGSFV_PROGRAM_UK_STATISTICS, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Program Details , implementation_dba_data: APPS.IGSFV_PROGRAM_UK_STATISTICS ,