Search Results program_short_title
Overview
The view IGSFV_ST_HESA_ADMISSION_DETAIL is a full business (FND) view within the Oracle E-Business Suite Student System product family, identified by the IGS application prefix. Its purpose is to expose Student Admission Application data structured for Higher Education Statistics Agency (HESA) reporting. HESA returns are a statutory requirement for UK higher education institutions, and this view consolidates the admission-level attributes required for those returns into a single queryable object. In Oracle EBS 12.1.1 and 12.2.2 the IGS product line is classified as obsolete; the view is documented in ETRM but the metadata explicitly records an implementation status of "Not implemented in this database." Consequently, the object should be treated as a legacy reporting artifact rather than an active runtime dependency in current 12.1.1 or 12.2.2 environments.
Because the view is defined against the _ALL tables (IGS_HE_AD_DTL_ALL, IGS_PS_VER_ALL), it is multi-org aware at the underlying table level, though the view text itself does not expose an ORG_ID column or include a multi-org filter predicate. Access would therefore be governed by the privileges and operating unit context of the querying session or the custom reporting layer built upon it.
Underlying Base Objects
The documented view text establishes the following base objects and join relationships:
- IGS_HE_AD_DTL_ALL — the primary driving table (aliased HAD), holding HESA admission detail rows keyed by HESA_AD_DTL_ID and PERSON_ID.
- HZ_PARTIES (aliased PER) — joined on PARTY_ID = HAD.PERSON_ID to resolve the party number.
- HZ_PERSON_PROFILES (aliased PERP) — joined on PARTY_ID, restricted to CONTENT_SOURCE_TYPE = 'USER_ENTERED' and to the currently effective date range.
- IGS_PS_VER_ALL (aliased PS) — joined on COURSE_CD = HAD.NOMINATED_COURSE_CD, restricted to the maximum VERSION_NUMBER for that course.
- IGS_HE_CODE_VALUES — accessed via correlated scalar subqueries to decode occupation, domicile, social class, and special student codes.
The ETRM metadata records no explicitly documented referenced base objects, so the join logic above is derived from the supplied view text. The view is declared WITH READ ONLY, preventing DML through the view layer.
Key Columns
- HESA_AD_DTL_ID — primary identifier of the HESA admission detail record.
- PERSON_ID / PERSON_NUMBER / PERSON_SURNAME / PERSON_GIVEN_NAMES / PERSON_FULL_NAME — person identity attributes. The PERSON_SURNAME column is the direct mapping to the "person_surname" search term and corresponds to HZ_PARTIES.PERSON_LAST_NAME.
- NOMINATED_PROGRAM_CODE, PROGRAM_TITLE, PROGRAM_SHORT_TITLE, PROGRAM_ABBREVIATION — the nominated course of study and its descriptive attributes from IGS_PS_VER_ALL.
- ADMISSION_APPLICATION_NUMBER, SEQUENCE_NUMBER — the admission application reference and line sequence.
- OCCUPATION_CODE / OCCUPATION_DESC, DOMICILE_CODE / DOMICILE_DESC, SOCIAL_CLASS_CODE / SOCIAL_CLASS_DESC, SPECIAL_STUDENT_CODE / SPECIAL_STUDENT_DESC — HESA-coded attributes with their decoded descriptions resolved from IGS_HE_CODE_VALUES.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY — standard audit columns.
Common Use Cases and Queries
Typical uses include HESA return preparation, data quality checks on coded admission attributes, and ad hoc extracts joining admission detail to person records. The view is suitable for read-only reporting only; no DML is permitted.
Retrieve admission detail for a specific surname:
SELECT person_surname,
person_given_names,
admission_application_number,
nominated_program_code,
domicile_code,
domicile_desc
FROM igsfv_st_hesa_admission_detail
WHERE person_surname = :surname;
Identify records with missing HESA code descriptions:
SELECT hesa_ad_dtl_id, person_number, occupation_code FROM igsfv_st_hesa_admission_detail WHERE occupation_code IS NOT NULL AND occupation_desc IS NULL;
Aggregate admissions by programme and domicile:
SELECT nominated_program_code,
domicile_desc,
COUNT(*)
FROM igsfv_st_hesa_admission_detail
GROUP BY nominated_program_code, domicile_desc
ORDER BY nominated_program_code;
-
View: IGSFV_ST_HESA_ADMISSION_DETAIL
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PROG_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_PRG_UK_STAT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for UK Statistics Program Cost Center Details , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_PROG_ATT_UCAS_TARIFF
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Program Attempt UCAS Tariff HESA Details. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_PROG_ATT_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_PROG_OU_CC_V
12.2.2
product: IGS - Student System (Obsolete) , description: A new view to replace the existing cost center table at program level to allow users to record org unit details along with the cost center details for a program/version , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_UK_PRG_OFR_OPT_ORG_UNITS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Program Offering Option Unit Set HESA Details - Organizations , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_HESA_EXT_RUN_DAT_LINES
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for HESA extract data , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Student Unit Set Attempt Cost Center HESA Details. , implementation_dba_data: Not implemented in this database ,
-
View: IGSFV_POOUS_HESA_COST_CENTRES
12.2.2
product: IGS - Student System (Obsolete) , description: Full business view to allow queries on Program HESA Cost Center 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_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_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: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.2.2
product: IGS - Student System (Obsolete) , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: Not implemented in this database ,