Search Results igffv_ffelp_orig_responses




Overview

The view IGFFV_FFELP_ORIG_RESPONSES (owner APPS) is a Financial Aid module object within Oracle E-Business Suite, delivered under the IGF product. It is documented as the "Full View for the Entity that holds FFELP Origination Response Details." In the Federal Family Education Loan Program (FFELP) origination cycle, a school or servicer submits origination requests to a guarantor or the Common Origination and Disbursement (COD) process, and receives back response records confirming or adjusting the requested loan attributes. This view exposes the flattened, denormalized response side of that exchange, presenting borrower, student, loan, disbursement, and guarantee attributes in a single reporting surface.

Its role in EBS reporting and integration is primarily read-only: it serves as a data source for operational reports, reconciliation extracts, downstream interfaces, and ad hoc queries that need to reconcile what was returned by the guarantor against the institution's internal loan records. It is a "Full View," meaning it exposes the complete column set of the underlying entity rather than a narrow subset, which makes it suitable for both investigative querying and integration staging.

Underlying Base Objects

The ETRM metadata for this object records no documented referenced base objects, and the view text excerpt is expressed as a single SELECT over an alias RESP1 without a visible FROM clause or join graph. Consequently, the precise base table set cannot be enumerated from the provided metadata alone. In practice, the naming convention indicates a response-detail entity (the FFELP_ORIG_RESPONSES family) that stores parsed guarantor/COD origination response records, with the view layered directly over that entity.

Because the view is defined in the APPS schema and is reported as VALID, its dependency chain is maintained inside the EBS database; DBAs can enumerate actual dependencies through ALL_DEPENDENCIES and ALL_VIEWS where ETRM does not document them. The view text also performs inline lookup translation rather than separate joins visible in the excerpt.

Key Columns

The column list reflects the structure of an FFELP origination response. Grouped by purpose:

Common Use Cases and Queries

Typical uses include reconciling guaranteed amounts against certified and approved amounts, verifying guarantor-assigned loan numbers, extracting guarantee dates for financial reporting, and auditing adjustments flagged by GUARNT_ADJ_IND.

To inspect guarantee amounts by loan type for a period:

  • SELECT LOAN_NUMBER, CL_LOAN_TYPE, REQ_LOAN_AMT, GUARANTEE_AMT, GUARANTEE_DATE, GUARANTOR_ID FROM APPS.IGFFV_FFELP_ORIG_RESPONSES WHERE LOAN_PER_BEGIN_DATE >= :p_start;

To compare certified versus guaranteed principal and surface shortfalls:

  • SELECT LOAN_NUMBER, LENDER_ID, GUARANTOR_ID, (FLS_CERT_AMT + FLU_CERT_AMT) CERT_TOTAL, GUARANTEE_AMT FROM APPS.IGFFV_FFELP_ORIG_RESPONSES WHERE GUARNT_ADJ_IND = 'Y';

Because lookup columns are already translated, reports can select the derived meaning fields directly without additional joins to IGF_LOOKUPS_VIEW, simplifying extract logic for downstream interfaces and reconciliation worksheets.