Search Results oss_spec_stud
Overview
IGS_HE_AD_DTL2_V is an Oracle E-Business Suite view owned by the APPS schema and defined within the Oracle Student System (OSS) module of the Education and Training vertical (ETRM). Its name follows the module convention: "IGS" identifies the Student System product family, "HE_AD_DTL2" denotes a Higher Education admissions detail entity presented in a denormalized second variant, and the "_V" suffix confirms it is a read-only view rather than a base table.
The view serves as a reporting and integration layer over the IGS_HE_AD_DTL table. Rather than requiring report authors or downstream interfaces to understand the internal code values stored in the transactional table, it joins four internal lookup tables and resolves coded attributes into human-readable descriptions. This makes it suitable for concurrent programs, discoverer workbooks, OBIEE extracts, and outbound data feeds that must present legacy admissions data in a legible form. The view is registered in ETRM under the 12.2.2 documentation set.
Underlying Base Objects
The view is defined as a five-table join with outer joins against the code-value lookup table:
- IGS_HE_AD_DTL (alias A) — the primary transactional table holding admission application detail records. Provides all coded columns and audit columns.
- IGS_HE_CODE_VALUES (aliases B, C, D, E) — the same lookup table is referenced four times, once per coded attribute, each with an outer join (+) and a distinct
CODE_TYPEfilter.
Four code types are used: OSS_DOM for domicile, OSS_OCC for occupation, OSS_SOC for social class, and OSS_SPEC_STUD for special student. The user's search term "oss_spec_stud" corresponds directly to the fourth code type, which is filtered on alias E and produces the SPECIAL_STUDENT_DESC column. Because outer joins are used throughout, records whose codes have no matching lookup entry are still returned, with description columns set to null.
Key Columns
- ROW_ID — the ROWID of the underlying IGS_HE_AD_DTL row, usable as a unique identifier for update detection.
- HESA_SEQUENCE_ID, PERSON_ID, ADMISSION_APPL_NUMBER, SEQUENCE_NUMBER — the key identifiers linking the admission detail to a person and application.
- NOMINATED_COURSE_CD — the course nominated in the application.
- DOMICILE_CD / DOMICILE_DESC — the coded and decoded domicile, resolved via code type
OSS_DOM. - OCCUPATION_CD / OCCUPATION_DESC — coded and decoded occupation, via
OSS_OCC. - SOCIAL_CLASS_CD / SOCIAL_CLASS_DESC — coded and decoded social class, via
OSS_SOC. - SPECIAL_STUDENT_CD / SPECIAL_STUDENT_DESC — coded and decoded special student flag, via
OSS_SPEC_STUD, matching the user's search term. - CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
Common Use Cases and Queries
Typical scenarios include validating admissions extracts before submission to statutory bodies, producing data quality reports that highlight records with unresolvable codes, and feeding a reporting schema.
Records flagged for the special student code:
SELECT person_id, admission_appl_number, special_student_cd, special_student_desc FROM apps.igs_he_ad_dtl2_v WHERE special_student_cd IS NOT NULL;
Detecting orphans where the lookup failed:
SELECT person_id, admission_appl_number, domicile_cd, domicile_desc FROM apps.igs_he_ad_dtl2_v WHERE domicile_cd IS NOT NULL AND domicile_desc IS NULL;
Distinct decoded distributions across all four attributes:
SELECT social_class_desc, COUNT(*) FROM apps.igs_he_ad_dtl2_v GROUP BY social_class_desc;
Because ROW_ID exposes the base table ROWID, the view can also be joined back to IGS_HE_AD_DTL for update-driven incremental extracts.
-
VIEW: APPS.IGS_HE_AD_DTL2_V
12.1.1
-
VIEW: APPS.IGSFV_ST_HESA_ADMISSION_DETAIL
12.1.1
-
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: 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: 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_ST_SPA_DTLS_V
12.1.1
-
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_SPA_DTLS_V
12.2.2
product: IGS - Student System (Obsolete) , description: Student Program Attempt HESA Details , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGSFV_ST_PROG_ATT_HESA_DETAILS
12.1.1
-
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_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 ,
-
PACKAGE BODY: APPS.IGS_HE_SPA_LGCY_PUB
12.1.1
-
APPS.IGS_HE_SPA_LGCY_PUB dependencies on IGS_HE_CODE_VALUES_PKG
12.1.1
-
APPS.IGS_HE_SPA_LGCY_PUB dependencies on FND_MESSAGE
12.1.1
-
APPS.IGS_HE_SPA_LGCY_PUB dependencies on FND_MSG_PUB
12.1.1