Search Results value_description
Overview
IGSFV_ST_PROG_ATT_HESA_DETAILS is a full (non-incremental) view within the Oracle E-Business Suite Student System (IGS) product family, a module that is documented as obsolete in Oracle EBS 12.1.1 and 12.2.2. The view consolidates Student Program Attempt (SPA) records with the Higher Education Statistics Agency (HESA) statutory reporting attributes associated with each student and program attempt. Its declared purpose — "Full View for Student Program Attempt HESA Details" — indicates that it is a reporting and integration object rather than a transactional entity, designed to present one row per HESA Student Program Attempt for downstream extraction, validation, and regulatory submission (for example, HESA student returns in the UK higher-education sector).
As documented in the ETRM metadata, the view is not implemented in the referenced database instance. This is significant: querying IGSFV_ST_PROG_ATT_HESA_DETAILS in an environment where it has not been deployed will fail with an ORA-00942 (table or view does not exist). Consultants should confirm deployment status in the target instance before relying on the object in reports or extracts.
Underlying Base Objects
The ETRM metadata records no referenced base objects, though the documented view text demonstrates that the view is defined primarily over the Student Program Attempt table, aliased as SPA, with supporting joins to person and program tables. The visible SELECT list references:
- IGS_PE_ALT_PERS_ID — alternate person identifiers, queried via a correlated subquery to retrieve the HUSID value where the identifier type is 'HUSID'.
- IGS_HE_CODE_VALUES — HESA code value descriptions, used to resolve FE student markers, special student codes, and highest qualification-on-entry grading schemas.
- IGS_AS_GRD_SCH_GRADE — grading schema grades, joined to derive the highest-qualification-on-entry description.
- IGS_LOOKUP_VALUES — referenced through the descriptive flexfield-style notation for the HESA return type meaning.
- Person and program tables — supplying party number, surname, given names, full name, program code, title, short title, and abbreviation.
Key Columns
- HESA_STATS_SPA_ID / PERSON_ID / PERSON_NUMBER — the HESA program attempt identifier, internal person identifier, and external party number.
- HUSID — the HESA unique student identifier retrieved from alternate person identifiers, filtered by the date-range predicates START_DT and NVL(END_DT, TRUNC(SYSDATE)). This is the column most directly associated with the search term "end_dt": the identifier is considered valid when the current date falls between its start date and its end date (or end date is null).
- PROGRAM_CODE, PROGRAM_TITLE, PROGRAM_VERSION_NUMBER — program identifiers and versioning.
- HESA_RETURN_TYPE and HESA_RETURN_TYPE_DESC — the return type classification and its decoded description.
- FE_STUDENT_MARKER, SPECIAL_STUDENT_CODE, STUDENT_QUAL_AIM_AWD — HESA-specific student attribute flags with accompanying descriptions.
- COMMENCEMENT_DATE, TOTAL_UCAS_TARIFF, UCAS_TARIFF_CALC_LAST_RUN_DATE — commencement and UCAS tariff calculation data.
Common Use Cases and Queries
Typical usage is extraction and reconciliation of HESA student returns, including validation of expiring identifiers.
SELECT person_number, person_surname, husid
FROM igsfv_st_prog_att_hesa_details
WHERE husid IS NOT NULL;
Because identifier validity depends on END_DT, auditors commonly query which alternate identifiers have lapsed:
SELECT pe_person_id, api_person_id, start_dt, end_dt
FROM igs_pe_alt_pers_id
WHERE person_id_type = 'HUSID'
AND end_dt IS NOT NULL
AND TRUNC(SYSDATE) > end_dt;
Where the view is not deployed, the same logic must be reconstructed from IGS_PE_ALT_PERS_ID and the SPA record directly, applying the NVL(END_DT, TRUNC(SYSDATE)) predicate to reproduce the view's HUSID derivation.
-
View: IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_HESA_DETAILS, object_name:IGSFV_ST_PROG_ATT_HESA_DETAILS, status:VALID, product: IGS - Student System , description: Full View for Student Program Attempt HESA Details , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS ,
-
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 ,
-
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: IGSFV_ST_HESA_DLHE_SURVEY_RECS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_HESA_DLHE_SURVEY_RECS, object_name:IGSFV_ST_HESA_DLHE_SURVEY_RECS, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student DLHE Survey Records. , implementation_dba_data: APPS.IGSFV_ST_HESA_DLHE_SURVEY_RECS ,
-
View: IGSFV_ST_HESA_ADMISSION_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_HESA_ADMISSION_DETAIL, object_name:IGSFV_ST_HESA_ADMISSION_DETAIL, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL ,
-
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: IGS_HE_ST_SPA_DTLS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_DTLS_V, object_name:IGS_HE_ST_SPA_DTLS_V, status:VALID, product: IGS - Student System , description: Student Program Attempt HESA Details , implementation_dba_data: APPS.IGS_HE_ST_SPA_DTLS_V ,
-
View: IGS_HE_ST_PROG_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_PROG_CC_V, object_name:IGS_HE_ST_PROG_CC_V, status:VALID, product: IGS - Student System , description: Hesa Cost center details defined at Program Level , implementation_dba_data: APPS.IGS_HE_ST_PROG_CC_V ,
-
View: IGS_HE_ST_SPA_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_ST_SPA_CC_V, object_name:IGS_HE_ST_SPA_CC_V, status:VALID, product: IGS - Student System , description: Hesa Cost center details defined at Student Program Attempt Level , implementation_dba_data: APPS.IGS_HE_ST_SPA_CC_V ,
-
View: IGS_HE_EN_SUSA_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_EN_SUSA_CC_V, object_name:IGS_HE_EN_SUSA_CC_V, status:VALID, product: IGS - Student System , description: Hesa Cost center details defined at Student Unit Set Attempt Level , implementation_dba_data: APPS.IGS_HE_EN_SUSA_CC_V ,
-
View: IGSFV_UNIT_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_STAT_COST_CENTRES, object_name:IGSFV_UNIT_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Unit Cost Center Details , implementation_dba_data: APPS.IGSFV_UNIT_STAT_COST_CENTRES ,
-
View: IGSFV_ORG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ORG_HESA_COST_CENTRES, object_name:IGSFV_ORG_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Org Unit HESA Cost Center Details , implementation_dba_data: APPS.IGSFV_ORG_HESA_COST_CENTRES ,
-
View: IGSFV_PROG_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PROG_HESA_COST_CENTRES, object_name:IGSFV_PROG_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_PROG_HESA_COST_CENTRES ,
-
View: IGS_HE_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_OU_CC_V, object_name:IGS_HE_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to hold HESA cost center, subject and proportion details defined for an organizational unit , implementation_dba_data: APPS.IGS_HE_OU_CC_V ,
-
View: IGS_HE_POOUS_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_POOUS_OU_CC_V, object_name:IGS_HE_POOUS_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to replace the existing cost center table at year of program level to allow users to record org unit details along with the cost center details for a year of program , implementation_dba_data: APPS.IGS_HE_POOUS_OU_CC_V ,
-
View: IGSFV_PRG_UK_STAT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PRG_UK_STAT_COST_CENTRES, object_name:IGSFV_PRG_UK_STAT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for UK Statistics Program Cost Center Details , implementation_dba_data: APPS.IGSFV_PRG_UK_STAT_COST_CENTRES ,
-
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_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UNIT_HESA_COST_CENTRES, object_name:IGSFV_UNIT_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , implementation_dba_data: APPS.IGSFV_UNIT_HESA_COST_CENTRES ,
-
View: IGS_HE_PROG_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_PROG_OU_CC_V, object_name:IGS_HE_PROG_OU_CC_V, status:VALID, product: IGS - Student System , 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: APPS.IGS_HE_PROG_OU_CC_V ,
-
View: IGS_HE_UNT_OU_CC_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_UNT_OU_CC_V, object_name:IGS_HE_UNT_OU_CC_V, status:VALID, product: IGS - Student System , description: A new view to replace the existing cost center table at unit level to allow users to record org unit details along with the cost center details for a unit/version , implementation_dba_data: APPS.IGS_HE_UNT_OU_CC_V ,
-
View: IGSFV_PRG_OFR_OPT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_PRG_OFR_OPT_COST_CENTRES, object_name:IGSFV_PRG_OFR_OPT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full View for Program Offering Option Unit Set HESA Details - Cost Center Details , implementation_dba_data: APPS.IGSFV_PRG_OFR_OPT_COST_CENTRES ,
-
View: IGSFV_ST_PROG_ATT_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_PROG_ATT_COST_CENTRES, object_name:IGSFV_ST_PROG_ATT_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Program Attempt Cost Center HESA details. , implementation_dba_data: APPS.IGSFV_ST_PROG_ATT_COST_CENTRES ,
-
View: IGSFV_UC_EXP_QUAL_SUMMARIES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_UC_EXP_QUAL_SUMMARIES, object_name:IGSFV_UC_EXP_QUAL_SUMMARIES, status:VALID, product: IGS - Student System , description: Full View for summary of qualifications attained by this applicant , implementation_dba_data: APPS.IGSFV_UC_EXP_QUAL_SUMMARIES ,
-
View: IGSFV_ST_UNIT_SET_ATT_COST_CNT
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_ST_UNIT_SET_ATT_COST_CNT, object_name:IGSFV_ST_UNIT_SET_ATT_COST_CNT, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Student Unit Set Attempt Cost Center HESA Details. , implementation_dba_data: APPS.IGSFV_ST_UNIT_SET_ATT_COST_CNT ,
-
View: IGSFV_POOUS_HESA_COST_CENTRES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSFV_POOUS_HESA_COST_CENTRES, object_name:IGSFV_POOUS_HESA_COST_CENTRES, status:VALID, product: IGS - Student System , description: Full business view to allow queries on Program HESA Cost Center Details , implementation_dba_data: APPS.IGSFV_POOUS_HESA_COST_CENTRES ,