Search Results enrl_uset_course_cd
Overview
APPS.IGF_AP_FA_BASE_H is a reporting and integration view in Oracle E-Business Suite (12.1.1 / 12.2.2) that exposes a denormalized, security-filtered projection of the base table IGF_AP_FA_BASE_H_ALL. It belongs to the Oracle Student System / Financial Aid functional area (the IGF / IG* prefix family) and is used to surface a consolidated, single-row-per-financial-aid-base record for a person, combining admission, program, enrollment, and residency/citizenship attributes. Because the underlying object is "_ALL", it is a multi-org (Operating Unit) table; the view applies an ORG_ID predicate based on the session's CLIENT_INFO, thereby enforcing Operating Unit data security at the database level. This makes IGF_AP_FA_BASE_H the preferred read-only access point for financial aid base records for any user whose session context is correctly established, while centralizing the multi-org filter and eliminating the need for callers to repeat it.
Underlying Base Objects
The published view text shows the view is defined exclusively over IGF_AP_FA_BASE_H_ALL FABH. No other base objects are documented, and the ETRM metadata lists no additional referenced objects. The view is a straight column projection (it exposes nearly every column of the table, including ROWID and all standard WHO/audit columns) plus the multi-org WHERE clause. The descriptive "_H" suffix indicates a header or "base" record level, as opposed to a detail/child level; relationships to person (PERSON_ID) and program (PROGRAM_ID, PROGRAM_APPLICATION_ID, BASE_ID) are carried as keys in this single row rather than resolved by joins within the view.
Key Columns
- Identifiers: FABH_ID (view/table primary key), BASE_ID, PERSON_ID, PROGRAM_APPLICATION_ID, PROGRAM_ID, KEY_PROGRAM, ORG_ID.
- Admission: ADMISSION_APPL_NUMBER, ADM_APPL_STATUS/S_ADM_APPL_STATUS, APPL_DT, ADMISSION_CAT, ADM_ORG_UNIT_CD, ADM_OUTCOME_STATUS/S_ADM_OUTCOME_STATUS, DECISION_DATE, ADM_OFFER_RESP_STATUS/S_ADM_OFFER_RESP_STATUS, ACTUAL_RESPONSE_DATE, ADM_FEE_STATUS/S_ADM_FEE_STATUS.
- Enrollment: ENRL_PRIMARY_PROG_COURSE_CD and ENRL_PRIMARY_PROG_VER_NUM (the primary program of study the student is enrolled in), ENRL_PROGRAM_TYPE, ENRL_USET_COURSE_CD/ENRL_USET_VER_NUM, ENRL_COURSE_ATTEMPT_STATUS, ENRL_LOAD_CAL_TYPE/ENRL_LOAD_SEQ_NUM, ENRL_ORG_UNIT_CD, ENRL_ATTEND_MODE, ENRL_LOCATION_CD, PROG_ATT_* (program attempt / attendance details).
- Achievement: CURRENT_GPA, CUMULATIVE_GPA, ACHEIVED_CR_PTS, CUR_ENROL_CREDIT_POINTS, ENRL_TOTAL_CP, ENRL_CUML_CP, ENRL_CUML_TRANS_CP, CLASS_STANDING, PRED_CLASS_STANDING, ACADEMIC_INDEX.
- Demographics / status: VISA_TYPE, CITIZENSHIP_STATUS, RESIDENCY_STATUS, MIL_SERVICE_TYPE, PERSON_TYPE, ENCUMBRANCE_TYPE, TRANSFERED, ATB.
- Audit / process: CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE, LAST_UPDATE_LOGIN, REQUEST_ID, REC_LAST_UPDATED, SAP_* columns.
Common Use Cases and Queries
The view is used for admissions/financial-aid reporting, student program-of-study analysis, and extracts feeding downstream systems. The search term enrl_primary_prog_course_cd identifies the column carried as ENRL_PRIMARY_PROG_COURSE_CD, which represents the code of the program the student is primarily enrolled in.
List primary enrolled programs per person (Operating Unit filter applied automatically):
SELECT person_id, enrl_primary_prog_course_cd, enrl_primary_prog_ver_numFROM apps.igf_ap_fa_base_hWHERE enrl_primary_prog_course_cd IS NOT NULLORDER BY person_id;
Current financial-aid base record with GPA and standing:
SELECT fabh_id, person_id, base_id, current_gpa, cumulative_gpa, class_standingFROM apps.igf_ap_fa_base_hWHERE person_id = :p_person_id AND primary_rec = 'Y';
Admissions outcome extract joined to person for reporting:
SELECT f.admission_appl_number, f.adm_outcome_status, f.decision_date, p.full_nameFROM apps.igf_ap_fa_base_h f, apps.per_all_people_f pWHERE f.person_id = p.person_id AND f.adm_outcome_status IS NOT NULL;
Because ORG_ID security is embedded in the view, there is no need to add an Operating Unit predicate to these queries; callers must simply ensure the correct session context is initialized before querying.
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
-
View: IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H ,
-
View: IGF_AP_FA_BASE_H
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID,
-
VIEW: APPS.IGF_AP_FA_BASE_H
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H, object_name:IGF_AP_FA_BASE_H, status:VALID,
-
View: IGF_AP_FA_BASE_H_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_AP_FA_BASE_H_V, object_name:IGF_AP_FA_BASE_H_V, status:VALID, product: IGF - Financial Aid , description: This view is obsolete now. , implementation_dba_data: APPS.IGF_AP_FA_BASE_H_V ,
-
View: IGF_AP_FA_BASE_H_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This view is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
TABLE: IGF.IGF_AP_FA_BASE_H_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_AP_FA_BASE_H_ALL, object_name:IGF_AP_FA_BASE_H_ALL, status:VALID,
-
APPS.IGF_AP_OSS_INTR_DTLS SQL Statements
12.1.1
-
PACKAGE: APPS.IGF_AP_OSS_INTR_DTLS
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_AS_SU_SETATMPT
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_EN_STDNT_PS_ATT_ALL
12.1.1
-
PACKAGE BODY: APPS.IGF_AP_OSS_INTR_DTLS
12.1.1
-
APPS.IGF_AP_OSS_INTR_DTLS dependencies on IGS_PS_VER_ALL
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,