Search Results b_middle_name




Overview

APPS.IGFFV_FFELP_DISB_RESP_DETAILS is a read-only reporting view within the Oracle E-Business Suite (EBS) financial aid module, specifically belonging to the Oracle Student Financial Aid / FFELP (Federal Family Education Loan Program) component delivered through the IGF schema objects. The view consolidates disbursement response data held in the R8 response entity with borrower-level identity information held in the R1 response entity, producing a single denormalized result set suitable for inquiry screens, concurrent reports, and downstream integrations. In Oracle EBS 12.1.1 and 12.2.2, views such as this one are typically owned by APPS and granted to reporting and integration responsibilities, allowing external systems and custom reports to read loan disbursement responses without directly querying the underlying tables.

The view is defined with the WITH READ ONLY clause, confirming that it is strictly a query construct and cannot be used for DML. Its role is therefore analytical and integration-oriented: it surfaces the disbursement-level detail (dates, amounts, fees, and status) alongside the borrower and loan identifiers required to interpret each record in a business context.

Underlying Base Objects

Although the ETRM metadata documents no referenced base objects, the view text identifies two source objects joined in its FROM clause:

  • IGF_SL_CL_RESP_R8_ALL RESP8 — the R8 disbursement response table, providing disbursement dates, gross and net amounts, fee amounts, fee-paid indicators, hold-release and disbursement status codes, record status, and audit columns.
  • IGF_SL_CL_RESP_R1_ALL RESP1 — the R1 borrower/loan response table, providing the loan number, borrower name components, and Social Security Number.

The two objects are joined on the common key RESP1.CLRP1_ID = RESP8.CLRP1_ID. This inner join means the view returns only disbursement rows that have a matching borrower/loan header record on CLRP1_ID, which is the principal correlation identifier between the R1 and R8 entities. The _ALL suffix on both tables indicates that they are multi-organization (partitioned by org) tables, so the view's content is scoped by the organization context of the underlying data.

Key Columns

The most frequently referenced column is CLRP1_ID, the loan-level correlation identifier returned from RESP8 (and matched against RESP1). It is the anchor for joining this view back to loan header information and is the term the user searched for.

Common Use Cases and Queries

Typical uses include disbursement reconciliation reports, borrower-facing inquiries, and extraction of loan response data for integration. A representative query retrieving all disbursements for a given loan follows:

  • SELECT clrp1_id, loan_number, disb_date, disb_gross_amt, net_disb_amt, disb_status FROM apps.igffv_ffelp_disb_resp_details WHERE clrp1_id = :p_clrp1_id ORDER BY disb_date;
  • SELECT loan_number, b_last_name, b_ssn, SUM(net_disb_amt) FROM apps.igffv_ffelp_disb_resp_details GROUP BY loan_number, b_last_name, b_ssn;

Because the view is read-only and pre-translates lookup codes, it is well suited to reporting layer consumption and to joining with other IGF response views on CLRP1_ID or CLRP8_ID.