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.
- CLRP1_ID — loan/borrower correlation key linking the R8 disbursement row to its R1 header record.
- CLRP8_ID — the R8 disbursement-level identifier, uniquely identifying each disbursement response record.
- DISB_DATE — the date the disbursement was made or recorded.
- DISB_GROSS_AMT, NET_DISB_AMT — the gross disbursement amount and the net amount after fees.
- ORIG_FEE, GUARANTEE_FEE, ORIG_FEE_PAID, GUARNT_FEE_PAID — origination and guarantee fee amounts and the amounts actually paid.
- DISB_HOLD_REL_IND, DISB_STATUS — hold-release and disbursement status, exposed via lookup translation hints (
IGF_LOOKUPS_VIEWwith lookup typesIGF_SL_CL_DB_HOLD_REL_INDandIGF_SL_CL_DISB_STATUS) so that the view returns the lookup meaning rather than the raw code. - RESP_RECORD_STATUS — status of the underlying response record.
- LOAN_NUMBER, B_FIRST_NAME, B_LAST_NAME, B_MIDDLE_NAME, B_SSN — the borrower's loan number, name components, and Social Security Number.
- CREATED_BY, CREATION_DATE, LAST_UPDATED_BY, LAST_UPDATE_DATE — standard EBS audit columns.
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.
-
VIEW: APPS.IGFFV_FFELP_DISB_RESP_DETAILS
12.1.1
-
VIEW: APPS.IGF_SL_DL_MANIFEST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_MANIFEST, object_name:IGF_SL_DL_MANIFEST, status:VALID,
-
VIEW: APPS.IGF_SL_DL_MANIFEST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_MANIFEST_V, object_name:IGF_SL_DL_MANIFEST_V, status:VALID,
-
View: IGF_SL_DL_MANIFEST_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_MANIFEST_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_MANIFEST_V, object_name:IGF_SL_DL_MANIFEST_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_MANIFEST_V ,
-
TABLE: IGF.IGF_SL_DL_MANIFEST_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_MANIFEST_ALL, object_name:IGF_SL_DL_MANIFEST_ALL, status:VALID,
-
View: IGFFV_FFELP_DISB_RESP_DETAILS
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_DISB_RESP_DETAILS, object_name:IGFFV_FFELP_DISB_RESP_DETAILS, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds FFELP Disbursement Response Details , implementation_dba_data: APPS.IGFFV_FFELP_DISB_RESP_DETAILS ,
-
VIEW: APPS.IGFBV_ALT_ORIG_RESPONSES
12.1.1
-
View: IGF_SL_DL_MANIFEST
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_FFELP_DISB_RESP_DETAILS
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds FFELP Disbursement Response Details , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_DL_MANIFEST
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_DL_MANIFEST, object_name:IGF_SL_DL_MANIFEST, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_DL_MANIFEST ,
-
VIEW: APPS.IGFFV_ALT_ORIG_RESPONSES
12.1.1
-
VIEW: APPS.IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID,
-
View: IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_CL_RESP_R1 ,
-
VIEW: APPS.IGFBV_FFELP_ORIG_RESPONSES
12.1.1
-
View: IGF_SL_CL_RESP_R1
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
VIEW: APPS.IGFFV_FFELP_ORIG_RESPONSES
12.1.1
-
APPS.IGF_SL_DL_MANIFEST_PKG SQL Statements
12.1.1
-
View: IGF_DB_CL_DISB_RESP
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
View: IGF_DB_CL_DISB_RESP
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP, object_name:IGF_DB_CL_DISB_RESP, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_DB_CL_DISB_RESP ,
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
-
View: IGFBV_ALT_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds Alternate Loan Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_ALT_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds Alternate Loan Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
View: IGFBV_ALT_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_ALT_ORIG_RESPONSES, object_name:IGFBV_ALT_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds Alternate Loan Origination Response Details , implementation_dba_data: APPS.IGFBV_ALT_ORIG_RESPONSES ,
-
View: IGFFV_ALT_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_ALT_ORIG_RESPONSES, object_name:IGFFV_ALT_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds Alternate Loan Origination Response Details , implementation_dba_data: APPS.IGFFV_ALT_ORIG_RESPONSES ,
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_CL_RESP_R1, object_name:IGF_SL_CL_RESP_R1, status:VALID,
-
TABLE: IGF.IGF_DB_CL_DISB_RESP_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_DB_CL_DISB_RESP_ALL, object_name:IGF_DB_CL_DISB_RESP_ALL, status:VALID,
-
TABLE: IGF.IGF_SL_DL_RESP_DTLS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_DL_RESP_DTLS, object_name:IGF_SL_DL_RESP_DTLS, status:VALID,
-
View: IGFBV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFBV_FFELP_ORIG_RESPONSES, object_name:IGFBV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Base view for the entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFBV_FFELP_ORIG_RESPONSES ,
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGFFV_FFELP_ORIG_RESPONSES, object_name:IGFFV_FFELP_ORIG_RESPONSES, status:VALID, product: IGF - Financial Aid , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: APPS.IGFFV_FFELP_ORIG_RESPONSES ,
-
View: IGFBV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Base view for the entity that holds FFELP Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
View: IGFFV_FFELP_ORIG_RESPONSES
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Full View for the Entity that holds FFELP Origination Response Details , implementation_dba_data: Not implemented in this database ,
-
APPS.IGF_DB_CL_DISB_RESP_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_MANIFEST_PKG
12.1.1
-
TABLE: IGF.IGF_SL_CL_RESP_R1_ALL
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_CL_RESP_R1_ALL, object_name:IGF_SL_CL_RESP_R1_ALL, status:VALID,
-
APPS.IGF_SL_CL_RESP_R1_PKG SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_DB_CL_DISB_RESP_PKG
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_ORIG_ACK
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_RESP_R1_PKG
12.1.1
-
APPS.IGF_SL_DL_MANIFEST_PKG dependencies on IGF_SL_DL_MANIFEST_ALL
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on WF_EVENT
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on WF_PARAMETER_LIST_T
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,