Search Results igf_ap_fa_base_h_all_pk
Overview
The IGF.IGF_AP_FA_BASE_H_ALL table belongs to the IGF (Financial Aid) product family within Oracle E-Business Suite and is documented in the ETRM repository for releases 12.1.1 and 12.2.2. Its documented description is explicit and unambiguous: the table is obsolete. Oracle retains the definition in the data dictionary and in the ETRM object inventory for historical and upgrade-compatibility reasons, but it is no longer the active repository for financial aid base processing. Organizations performing upgrades from earlier releases may still encounter populated rows, which is why the object remains visible in the schema even though its functional role has been retired.
Where the table was once used, it served as the header or base-record store for financial aid applicant data, carrying admissions, enrollment, academic-standing, and need-analysis attributes keyed to a person. The primary key is defined as IGF_AP_FA_BASE_H_ALL_PK over the FABH_ID column, and a unique index IGF_AP_FA_BASE_H_ALL_U1 also exists on the same column. The table holds 76 documented columns. A heuristic Data Vault classification derived from its foreign-key structure places it as satellite-leaning, meaning it most closely resembles an attribute-bearing dependent of a parent record rather than a standalone hub or a pure associative link. This classification should be treated as a modeling suggestion, not a documented Oracle designation.
Key Information Stored
The most significant columns fall into several functional clusters:
- Identity:
FABH_IDis the surrogate primary key and the sole documented business-key candidate via the unique index.BASE_IDis the foreign key toIGF_AP_FA_BASE_REC_ALL, andPERSON_IDidentifies the individual to whom the record pertains. - Admissions:
ADMISSION_APPL_NUMBER,ADM_APPL_STATUS,ADMISSION_CAT,ADMISSION_PROCESS_TYPE,DECISION_DATE, and the offer-response pairADM_OFFER_RESP_STATUSandACTUAL_RESPONSE_DATEcapture the application lifecycle. - Enrollment:
CUR_ENROL_CREDIT_POINTS,ENRL_LOAD_CAL_TYPE,ENRL_LOAD_SEQ_NUM,ENRL_PRIMARY_PROG_COURSE_CD, andENRL_ATTEND_MODEdescribe the current registration context. - Academic standing:
CLASS_STANDING,CURRENT_GPA,CUMULATIVE_GPA,ACADEMIC_INDEX, andSAP_SELECTED_FLAGsupport satisfactory-academic-progress evaluation. - Demographics and eligibility:
VISA_TYPE,CITIZENSHIP_STATUS,RESIDENCY_STATUS,MIL_SERVICE_TYPE, andATB. - Program context:
PROGRAM_ID,PROGRAM_APPLICATION_ID,KEY_PROGRAM, andPROGRAM_UPDATE_DATE. - Audit:
CREATED_BY,CREATION_DATE,LAST_UPDATED_BY,LAST_UPDATE_DATE,LAST_UPDATE_LOGIN,REQUEST_ID, andORG_ID.
Common Use Cases and Queries
Because the object is obsolete, its practical uses are almost entirely archaeological: auditing historical aid records, validating a pre-upgrade data snapshot, or confirming row counts before an archive or purge decision. Any query should be written defensively against a table that may or may not be populated in a given environment.
- Volume and currency check:
SELECT COUNT(*), MIN(CREATION_DATE), MAX(LAST_UPDATE_DATE) FROM IGF.IGF_AP_FA_BASE_H_ALL; - Join back to the parent base record to confirm referential coverage:
SELECT h.FABH_ID, h.BASE_ID, r.* FROM IGF.IGF_AP_FA_BASE_H_ALL h JOIN IGF.IGF_AP_FA_BASE_REC_ALL r ON r.BASE_ID = h.BASE_ID; - Identify active persons in the historical data:
SELECT PERSON_ID, COUNT(*) FROM IGF.IGF_AP_FA_BASE_H_ALL GROUP BY PERSON_ID HAVING COUNT(*) > 1; - Extract audit trails for a given update window: filter on
LAST_UPDATED_BYandLAST_UPDATE_DATE, and correlate to concurrent requests viaREQUEST_ID.
The recommended reporting posture is to treat this table as read-only and to source current aid data from its replacement objects.
Related Objects
The documented relationship data identifies one foreign-key dependency and several columns that imply conventional EBS joins:
IGF.IGF_AP_FA_BASE_REC_ALL— referenced byIGF_AP_FA_BASE_H_ALL.BASE_ID; this is the only documented foreign key and the most important join partner.PER_ALL_PEOPLE_F— join onPERSON_IDto resolve the individual's name and current record.HR_ALL_ORGANIZATION_UNITS— join onORG_UNIT_CDvalues carried inADM_ORG_UNIT_CDandENRL_ORG_UNIT_CD.FND_CONCURRENT_REQUESTS— join onREQUEST_IDto trace the process that created or last touched the row.CS_CP_STUDENTand related Student System tables — historically the source of enrollment and program attributes surfaced in theENRL_*andPROG_ATT_*columns.- Replacement or successor IGF financial aid base tables introduced after the retirement of this header, which should be identified in the target release before any extract is commissioned.
-
Table: 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, product: IGF - Financial Aid , description: This table is obsolete now. , implementation_dba_data: IGF.IGF_AP_FA_BASE_H_ALL ,
-
Table: IGF_AP_FA_BASE_H_ALL
12.2.2
product: IGF - Financial Aid (Obsolete) , description: This table is obsolete now. , implementation_dba_data: Not implemented in this database ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,