Results for “igf_sl_plus_loan_details_v”

21 results




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

Overview

The view IGF_SL_PLUS_LOAN_DETAILS_V belongs to the IGF — Financial Aid product family within Oracle E-Business Suite (documented as obsolete in ETRM 12.2.2). It exposes consolidated PLUS loan (Parent Loan for Undergraduate Students) detail records for financial aid borrowers and is intended to support reporting, reconciliation, and integration of federal PLUS loan disbursement and award data. The view does not store data; it is a reporting projection that joins loan, award, fund, calendar, borrower, and person records into a single denormalized result set.

Because it is documented as obsolete and "not implemented in this database" in the ETRM metadata, the object is typically encountered only in legacy 12.1.1 or 12.2.2 environments where the student financial aid module was seeded. Its principal role is to provide downstream extracts — for example, third-party loan servicing interfaces and financial aid audit reports — with a flat, human-readable PLUS loan record.

Underlying Base Objects

The view text is defined over the following base objects:

A critical filter is FCAT.FED_FUND_CODE IN ('DLP','FLP'), which restricts the result set to Direct PLUS and Federal PLUS loans respectively, distinguishing this view from other loan detail views.

Key Columns

Common Use Cases and Queries

Typical scenarios include reconciliation of disbursed PLUS loans per borrower, extraction feeds to loan servicers, and audit reporting on accepted versus originated amounts. A representative query follows:

SELECT LOAN_NUMBER,
       LOAN_TYPE_NUM,
       LOAN_STATUS_DESC,
       ACCEPTED_AMT,
       FULL_NAME,
       PERSON_NUMBER,
       FED_FUND_CODE,
       EXTERNAL_LOAN_ID_TXT
FROM   IGF_SL_PLUS_LOAN_DETAILS_V
WHERE  LOAN_PER_BEGIN_DATE >= :p_from_date
AND    FED_FUND_CODE IN ('DLP','FLP')
AND    ACTIVE = 'Y';

Additional uses include joining to award and disbursement tables by AWARD_ID, producing borrower-level summaries via aggregation on PERSON_NUMBER, and filtering LEGACY_RECORD_FLAG to isolate pre-migration data. Since the object is obsolete, new development should reference the successor Financial Aid schema objects; existing queries should be reviewed before any upgrade to confirm continued availability.