Results for “igf_ap_efc_det_v”

19 results




AI-generated from documented ETRM metadata — verify critical details on the linked pages.

Overview

The view IGF_AP_EFC_DET_V belongs to the Oracle E-Business Suite module IGF – Financial Aid, which is identified in the ETRM metadata as obsolete. It exposes the computed end result of the Expected Family Contribution (EFC) for each student across all need-analysis methodologies supported by the legacy Financial Aid application. In reporting and integration terms, the view served as a denormalized, presentation-ready read layer over the raw Institutional Student Information Record (ISIR) and financial aid base data, allowing downstream reports, packaging logic, and extracts to consume a single row per student per award-year instance without re-implementing the joins or the SSN lookup logic.

The metadata explicitly notes that the object is not implemented in the current database. This is consistent with the obsolescence of the IGF product line: the view exists only as a historical artifact in the ETRM repository and in older 12.1.1 / 12.2.2 instances where Financial Aid was still licensed and installed.

Underlying Base Objects

Although the ETRM record lists no referenced base objects, the view text documents its underlying tables directly. It is defined over the following:

The view also invokes the packaged function IGS_EN_GEN_003.ENRP_GET_ENCMBRD_IND to derive the encumbered indicator, and applies an ORG_ID security predicate based on USERENV('CLIENT_INFO'), a pattern typical of multi-org (MOAC) secured financial aid views.

Key Columns

The documented column list is truncated, but the view text and column names establish the following:

Common Use Cases and Queries

The view supported need-analysis reconciliation, EFC comparison across methodologies, and student-level financial aid reporting. Typical usage filters by calendar instance and only returns active-ISIR students:

  • Comparing EFC results across methodologies for a given award year.
  • Extracting student demographics (name, SSN, person number) alongside the computed contribution for downstream packaging or letters.
  • Identifying encumbered or deceased students prior to disbursement activities.

Because the object is obsolete and not implemented, the following query is illustrative only:

SELECT person_number, ssn, full_name, ci_cal_type, ci_sequence_number, method_code, conte
FROM igf_ap_efc_det_v
WHERE ci_cal_type = :cal_type
AND ci_sequence_number = :seq_num
AND active_isir = 'Y';

Any migration off IGF should replace this view with direct queries against the current student financial aid tables or the successor product's need-analysis views.