Search Results special_student_code
Overview
The view IGSBV_ST_HESA_ADMISSION_DETAIL is a base business view within the Oracle E-Business Suite IGS – Student System product family, which is documented as obsolete in release 12.1.1 and 12.2.2. Its stated purpose is to expose Student Admission Application HESA (Higher Education Statistics Agency) detail records for query and reporting purposes. The view functions as a read-only presentation layer over the underlying HESA admission detail table, joining party information to provide a denormalized, human-readable result set suitable for institutional reporting, regulatory extracts, and integration with external statutory returns.
Because it is defined with the WITH READ ONLY clause, the view is strictly a query construct; DML operations are not permitted. This design reinforces its role as a reporting and information-retrieval object rather than a transactional one. In the metadata, the view is flagged as not implemented in this database, indicating that it belongs to the deprecated or optional IGS schema and may not be present in every EBS installation.
Underlying Base Objects
According to the documented view text, the object is defined over two base objects:
- IGS_HE_AD_DTL_ALL — the HESA Admission Detail entity, aliased as
HAD. This table supplies all HESA-specific admission attributes such as nominated course, occupation, domicile, social class, and special student code. - HZ_PARTIES — the Trading Community Architecture (TCA) party master, aliased as
PER. This supplies the party number used to identify the person associated with the admission detail.
The join condition is PER.PARTY_ID = HAD.PERSON_ID, linking the admission record to its corresponding party record. No other base objects are documented as referenced. The view documentation does not list an owner schema, and the referenced base objects entry is recorded as "none documented," so table-level dependencies should be confirmed against the actual database implementation where the view exists.
Key Columns
- HESA_AD_DTL_ID — Primary identifier for the HESA admission detail record.
- PERSON_ID — Internal party identifier linking to the person.
- PERSON_NUMBER — The TCA party number for the applicant.
- NOMINATED_PROGRAM_CODE — Code of the nominated course or programme (from
NOMINATED_COURSE_CD). - ADMISSION_APPLICATION_NUMBER — Admission application reference.
- SEQUENCE_NUMBER — Sequence identifier for multi-row admission detail sets.
- OCCUPATION_CODE — HESA occupation classification code.
- DOMICILE_CODE — Domicile classification code.
- SOCIAL_CLASS_CODE — Social class classification code.
- SPECIAL_STUDENT_CODE — The column surfaced in response to the search term special_student_code. It is exposed as
SPECIAL_STUDENT_CODE, mapped fromHAD.SPECIAL_STUDENT_CD, and carries the HESA special student classification for the applicant. - CREATED_BY / CREATION_DATE / LAST_UPDATED_BY / LAST_UPDATE_DATE — Standard audit columns.
Common Use Cases and Queries
Typical usage involves extracting HESA admission detail for statutory returns, validating special student classifications, and reporting applicant demographic attributes. A representative query targeting the searched attribute is:
SELECT PERSON_NUMBER, ADMISSION_APPLICATION_NUMBER, NOMINATED_PROGRAM_CODE, SPECIAL_STUDENT_CODE FROM IGSBV_ST_HESA_ADMISSION_DETAIL WHERE SPECIAL_STUDENT_CODE IS NOT NULL;- Filtering by domicile or social class for equality and widening-participation reporting.
- Joining to other IGS student views on
PERSON_IDto enrich admission records with enrollment or progression data.
Given the obsolete status, new development should migrate to supported student records structures; the view remains useful only for legacy reporting and historical reconciliation.
-
View: IGSBV_ST_HESA_ADMISSION_DETAIL
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_HESA_ADMISSION_DETAIL, object_name:IGSBV_ST_HESA_ADMISSION_DETAIL, status:VALID, product: IGS - Student System , description: Base business view to allow queries on Student Admission Application HESA Details. , implementation_dba_data: APPS.IGSBV_ST_HESA_ADMISSION_DETAIL ,
-
View: IGSBV_ST_PROG_ATT_HESA_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGSBV_ST_PROG_ATT_HESA_DETAILS, object_name:IGSBV_ST_PROG_ATT_HESA_DETAILS, status:VALID, product: IGS - Student System , description: Base View for Student Program Attempt HESA Details , implementation_dba_data: APPS.IGSBV_ST_PROG_ATT_HESA_DETAILS ,
-
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_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 ,