Search Results flu_cert_amt
Overview
IGF_SL_CL_RESP_R1 is a database view delivered within the Oracle E-Business Suite IGF (Financial Aid) module. The ETRM metadata classifies it under the product heading "IGF - Financial Aid (Obsolete)" and records the description field as empty, indicating that the object carries no formal descriptive narrative in the data dictionary. The view belongs to the Student Loan (SL) family of financial aid objects, as reflected in the "SL_CL" naming segment, which corresponds to the CommonLine loan response and origination processing area of the legacy financial aid subsystem.
Its functional purpose is to denormalize and expose the borrower, student, school, lender, and guarantor data captured on a CommonLine loan response record (the CLRESPR1 structure) in a single flat row suitable for reporting, extract generation, and downstream integration with loan servicing or guarantee agencies. Because the object is flagged as obsolete, it is retained only for backward compatibility and historical reference in EBS 12.1.1 and 12.2.2 environments where the older financial aid schemas were still present. The searched term "act_interest_rate" does not correspond to any column documented in the available view text, and readers should treat that string as unverified against this object.
Underlying Base Objects
The ETRM view metadata records no referenced base objects, and the documented implementation note states "Not implemented in this database." This means the view's dependency chain is not registered in the data dictionary copy consulted, and the object may not exist at all in the instance from which the metadata was harvested. The view text, however, makes the primary source explicit: every projected column is qualified with the alias CLRESPR1, so the view is defined over a single underlying table or structure named CLRESPR1, with an additional implicit dependency on the ROWID pseudo-column for the ROW_ID expression.
Because no base objects are documented, join paths cannot be asserted from the metadata alone. The base structure represented by CLRESPR1 stores one row per CommonLine response record, with a surrogate key CLRP1_ID and a related identifier CBTH_ID. Practically, any use of this view should begin with a dependency verification query against the database before it is embedded in a report.
Key Columns
- ROW_ID — the ROWID of the underlying CLRESPR1 record; useful for identifying the physical source row.
- CLRP1_ID, CBTH_ID, LOAN_NUMBER, CL_SEQ_NUMBER — primary identifiers linking the response record to its batch and loan sequence.
- REC_CODE, REC_TYPE_IND — record classification codes governing how the response is interpreted.
- B_LAST_NAME, B_FIRST_NAME, B_MIDDLE_NAME, B_SSN, B_DATE_OF_BIRTH, B_PERMT_ADDR1/2, B_PERMT_CITY, B_PERMT_STATE, B_PERMT_ZIP, B_PERMT_ZIP_SUFFIX, B_PERMT_PHONE — borrower identity and permanent address attributes.
- S_LAST_NAME, S_FIRST_NAME, S_MIDDLE_NAME, S_SSN, S_DATE_OF_BIRTH — student identity attributes.
- CL_LOAN_TYPE, REQ_LOAN_AMT, REQ_SERIAL_LOAN_CODE, DEFER_REQ_CODE — requested loan terms.
- FLS_CERT_AMT, FLU_CERT_AMT, FLP_CERT_AMT, ALT_CERT_AMT — certified amounts by loan component (subsidized, unsubsidized, PLUS).
- FLS_APPROVED_AMT, FLU_APPROVED_AMT, FLP_APPROVED_AMT, ALT_APPROVED_AMT — lender-approved amounts corresponding to those components.
- LENDER_ID, DUNS_LENDER_ID, GUARANTOR_ID, DUNS_GUARNT_ID, DUNS_SCHOOL_ID, SCHOOL_ID — participating party identifiers.
- GUARANTEE_DATE, GUARANTEE_AMT, GUARNT_ADJ_IND — guarantee execution and adjustment data.
Common Use Cases and Queries
Typical scenarios include reconciliation of certified versus approved loan amounts, borrower/student match reviews, and extracts destined for guarantee agencies. A representative query is:
SELECT ROW_ID, LOAN_NUMBER, B_LAST_NAME, B_FIRST_NAME,
CL_LOAN_TYPE, REQ_LOAN_AMT,
FLS_CERT_AMT, FLS_APPROVED_AMT,
GUARANTEE_DATE, GUARANTEE_AMT
FROM IGF_SL_CL_RESP_R1
WHERE REC_TYPE_IND = :p_rec_type
AND SCHOOL_ID = :p_school_id;
For aggregation by loan component:
SELECT CL_LOAN_TYPE,
SUM(NVL(FLS_CERT_AMT,0) + NVL(FLU_CERT_AMT,0)
+ NVL(FLP_CERT_AMT,0) + NVL(ALT_CERT_AMT,0)) CERT_TOTAL
FROM IGF_SL_CL_RESP_R1
GROUP BY CL_LOAN_TYPE;
The absence of any documented interest-rate column should be noted explicitly; queries referencing "act_interest_rate" will not resolve against this view.
-
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
-
VIEW: APPS.IGF_SL_CL_RESP_R1
12.1.1
-
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,
-
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 ,
-
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
-
TABLE: IGF.IGF_SL_LI_ORIG_INTS
12.1.1
owner:IGF, object_type:TABLE, fnd_design_data:IGF.IGF_SL_LI_ORIG_INTS, object_name:IGF_SL_LI_ORIG_INTS, status:VALID,
-
PACKAGE BODY: APPS.IGF_SL_CL_RESP_R1_PKG
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK SQL Statements
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_ORIG_ACK
12.1.1
-
APPS.IGF_SL_CL_ORIG_ACK dependencies on FND_DATE
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_LI_IMP_PKG
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on FND_MESSAGE
12.1.1
-
eTRM - IGF Tables and Views
12.1.1
description: Holds pays only unit details for a pays only program ,