Search Results occupation_desc
Overview
IGS_HE_AD_DTL2_V is a reporting view within the Oracle E-Business Suite (EBS) IGS – Student System product, documented in ETRM as "Hesa Admission Details." HESA refers to the Higher Education Statistics Agency, the body that mandates standardized returns from UK higher education institutions. This view exposes admission-related statistical attributes captured against applicant and student records so that institutions can satisfy statutory HESA reporting obligations without querying the transactional admission schema directly.
The view does not introduce new data; it denormalizes coded values into human-readable descriptions by joining the admission detail table to a shared code-values lookup. This design pattern is characteristic of EBS reporting views, which exist to simplify extraction and to insulate downstream reports and integrations from surrogate identifier lookups. The metadata explicitly flags the IGS – Student System module as obsolete in ETRM 12.2.2, so the view should be regarded as legacy. It is documented as "Not implemented in this database," meaning it exists in the object definition catalog but is not present in the reference environment used to produce the metadata.
Underlying Base Objects
The view is defined over two documented objects. The primary base table is IGS_HE_AD_DTL, which stores the admission-level HESA attributes keyed by HESA_SEQUENCE_ID and PERSON_ID. The secondary object is IGS_HE_CODE_VALUES, referenced four times with the aliases B, C, D, and E, once per coded column.
All four code-value joins are outer joins, denoted by the (+) operator on the lookup side. Each is further constrained by a CODE_TYPE filter: 'OSS_DOM' for domicile, 'OSS_OCC' for occupation, 'OSS_SOC' for social class, and 'OSS_SPEC_STUD' for special student status. Because the joins are outer, an admission row is never suppressed when a code value is missing; the corresponding description column simply returns null. No other base objects, and no database links or synonyms, are documented for this view.
Key Columns
- ROW_ID – the ROWID of the underlying IGS_HE_AD_DTL row, used as a unique row identifier.
- HESA_SEQUENCE_ID – the sequence identifier for the HESA admission record.
- PERSON_ID – the party identifier linking the admission record to the person.
- ADMISSION_APPL_NUMBER – the admission application number.
- NOMINATED_COURSE_CD – the course nominated on the application.
- SEQUENCE_NUMBER – the sequence number within the admission record.
- DOMICILE_CD / DOMICILE_DESC – the domicile code and its decoded description.
- OCCUPATION_CD / OCCUPATION_DESC – the occupation code and its decoded description.
- SOCIAL_CLASS_CD / SOCIAL_CLASS_DESC – the social class code and its decoded description.
- SPECIAL_STUDENT_CD / SPECIAL_STUDENT_DESC – the special student code and its decoded description.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN – standard EBS audit columns for who created and last modified the row.
Common Use Cases and Queries
The principal use case is extraction of HESA admission statistics, where decoded descriptions are consumed directly by reports rather than resolving codes at report runtime. A second use case is data-quality auditing, identifying admission records with null or unmapped codes.
Retrieve decoded admission detail for a person:
SELECT person_id, admission_appl_number, nominated_course_cd,
domicile_desc, occupation_desc, social_class_desc,
special_student_desc
FROM igs_he_ad_dtl2_v
WHERE person_id = :p_person_id;
Audit rows where a HESA code has no matching lookup value:
SELECT hesa_sequence_id, person_id, domicile_cd, occupation_cd FROM igs_he_ad_dtl2_v WHERE domicile_desc IS NULL OR occupation_desc IS NULL;
Count admissions by domicile for an extraction year:
SELECT domicile_desc, COUNT(*) admission_count FROM igs_he_ad_dtl2_v GROUP BY domicile_desc ORDER BY admission_count DESC;
Because the module is obsolete, any new development should confirm availability in the target instance before relying on this view.
-
View: IGS_HE_AD_DTL2_V
12.2.2
product: IGS - Student System (Obsolete) , description: Hesa Admission Details , implementation_dba_data: Not implemented in this database ,
-
View: IGS_HE_AD_DTL2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_AD_DTL2_V, object_name:IGS_HE_AD_DTL2_V, status:VALID, product: IGS - Student System , description: Hesa Admission Details , implementation_dba_data: APPS.IGS_HE_AD_DTL2_V ,
-
VIEW: APPS.IGS_HE_AD_DTL2_V
12.1.1
-
VIEW: APPS.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,
-
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_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: APPS.IGS_HE_AD_DTL2_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGS.IGS_HE_AD_DTL2_V, object_name:IGS_HE_AD_DTL2_V, status:VALID,
-
VIEW: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL
12.1.1
-
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 ,
-
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: APPS.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,
-
VIEW: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
-
APPS.PAY_NL_NSI_PROCESS SQL Statements
12.2.2
-
APPS.PAY_NL_NSI_PROCESS SQL Statements
12.1.1
-
APPS.PAY_NL_NSI_PROCESS dependencies on PER_ASSIGNMENT_EXTRA_INFO
12.1.1
-
APPS.PAY_NL_NSI_PROCESS dependencies on PER_ASSIGNMENT_EXTRA_INFO
12.2.2
-
APPS.PAY_NL_NSI_PROCESS dependencies on HR_GENERAL
12.1.1
-
APPS.PAY_NL_NSI_PROCESS dependencies on HR_GENERAL
12.2.2
-
PACKAGE BODY: APPS.PAY_NL_NSI_PROCESS
12.2.2
-
PACKAGE BODY: APPS.PAY_NL_NSI_PROCESS
12.1.1
-
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'. ,