Search Results igf_sl_loan_status
Overview
IGF_SL_LOANS_SUM_V is a supplementary view owned by the APPS schema in Oracle E-Business Suite, registered in FND Design Data under the identifier IGF.IGF_SL_LOANS_SUM_V. It belongs to the Financial Aid module of the Oracle iGovernment / ETRM product family, specifically the Student Loan processing area (IGF_SL prefix). The view is classified as a "supplementary view used to simplify forms coding," meaning it was created primarily to flatten and denormalize loan data so that Oracle Forms-based user interfaces could retrieve loan summary information in a single query rather than joining several base tables.
The view presents a consolidated, one-row-per-loan picture: loan identifiers, loan period dates, current loan status, accepted and paid amounts, the originating disbursement batch, and both student and borrower party details. Because it exposes the LOAN_STATUS_DESC column, it is frequently referenced by users and developers who are searching for loan_status_desc as a source of human-readable loan status text without having to join to a lookup or status code table manually.
Oracle explicitly warns that this view is not intended for direct querying or data manipulation by customers and that its definition may change dramatically between minor or major releases. Any custom report, interface, or integration built against it must therefore be treated as release-sensitive and validated during upgrades from 12.1.1 to 12.2.2.
Underlying Base Objects
The documented metadata lists no explicitly referenced base objects, but the view source clearly derives its ROW_ID column from the IGF_SL_LOANS_ALL table, as stated in the column comment: "Row ID of the IGF_SL_LOANS_ALL table." IGF_SL_LOANS_ALL is the primary student loan entity table in the Financial Aid schema and is the most likely core table underlying this view. Supporting columns such as student and borrower person identifiers and full names are typically resolved through joins to person or party tables (for example, PER_ALL_PEOPLE_F or a Financial Aid person summary object), while calendar columns (CAL_TYPE, SEQUENCE_NUMBER) and base identifiers (BASE_ID) would be resolved from award and award-year calendar structures. Because the definitive join path is not published in the ETRM documentation, the view should be treated as an opaque convenience layer whose internal dependencies are subject to change.
Key Columns
- ROW_ID – Row ID from IGF_SL_LOANS_ALL, used for row identification in forms.
- LOAN_ID / AWARD_ID / SEQ_NUM – Primary loan identifier, parent award identifier, and loan sequence number.
- ORIG_BATCH_ID_TXT / LOAN_NUMBER_TXT – Origination batch identifier and the loan number text.
- LOAN_PER_BEGIN_DATE / LOAN_PER_END_DATE – Begin and end dates of the loan period.
- LOAN_STATUS_CODE / LOAN_STATUS_DESC / LOAN_STATUS_DATE – The loan status code, its descriptive text (up to 4000 characters), and the date the status was set. LOAN_STATUS_DESC is the column most commonly searched for by report authors.
- ACTIVE_FLAG / ACTIVE_DATE – Indicator and date of the active record state.
- LOAN_ACCEPTED_AMT / LOAN_PAID_AMT – Accepted loan amount versus amount actually paid/disbursed.
- BASE_ID, CAL_TYPE, SEQUENCE_NUMBER – Award-year calendar key fields identifying the academic period.
- S_PERSON_ID / S_PERSON_NUMBER / S_FULL_NAME – Student identifier, person number, and full name.
- P_PERSON_ID / P_PERSON_NUMBER / P_FULL_NAME – Borrower identifier, person number, and full name.
Common Use Cases and Queries
Typical usage includes form-based loan summary display, ad-hoc reporting on loan status, reconciliation of accepted versus paid amounts, and data extracts for downstream financial aid interfaces. The following query retrieves active loans with their status description:
SELECT loan_number_txt, s_full_name, p_full_name, loan_status_code, loan_status_desc, loan_accepted_amt, loan_paid_amt FROM apps.igf_sl_loans_sum_v WHERE active_flag = 'Y';SELECT loan_status_desc, COUNT(*) FROM apps.igf_sl_loans_sum_v GROUP BY loan_status_desc;SELECT loan_number_txt, loan_per_begin_date, loan_per_end_date, loan_status_date FROM apps.igf_sl_loans_sum_v WHERE loan_status_code = :p_status AND loan_per_begin_date >= :p_from_date;
Because the view is a supplementary, non-supported interface, queries should be used for inquiry and reporting only, never for direct DML, and results should be retested whenever the EBS release or Financial Aid patch level changes.
-
Lookup Type: IGF_SL_LOAN_STATUS
12.2.2
product: IGF - Financial Aid (Obsolete) , meaning: Loan Status Codes , description: Loan Status Codes ,
-
Lookup Type: IGF_SL_LOAN_STATUS
12.1.1
product: IGF - Financial Aid , meaning: Loan Status Codes , description: Loan Status Codes ,
-
VIEW: APPS.IGF_SL_LOANS_SUM_V
12.1.1
-
VIEW: APPS.IGF_SL_PLUS_LOAN_DETAILS_V
12.1.1
-
VIEW: APPS.IGF_SL_LOANS_V
12.1.1
-
View: IGF_SL_LOANS_SUM_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: Loans Summary View , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_LOANS_SUM_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_SUM_V, object_name:IGF_SL_LOANS_SUM_V, status:VALID, product: IGF - Financial Aid , description: Loans Summary View , implementation_dba_data: APPS.IGF_SL_LOANS_SUM_V ,
-
View: IGF_SL_PLUS_LOAN_DETAILS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , description: PLUS Loan Details View , implementation_dba_data: Not implemented in this database ,
-
View: IGF_SL_PLUS_LOAN_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_PLUS_LOAN_DETAILS_V, object_name:IGF_SL_PLUS_LOAN_DETAILS_V, status:VALID, product: IGF - Financial Aid , description: PLUS Loan Details View , implementation_dba_data: APPS.IGF_SL_PLUS_LOAN_DETAILS_V ,
-
View: IGF_SL_LOANS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:IGF.IGF_SL_LOANS_V, object_name:IGF_SL_LOANS_V, status:VALID, product: IGF - Financial Aid , implementation_dba_data: APPS.IGF_SL_LOANS_V ,
-
View: IGF_SL_LOANS_V
12.2.2
product: IGF - Financial Aid (Obsolete) , implementation_dba_data: Not implemented in this database ,
-
12.1.1 FND Design Data
12.1.1
-
12.2.2 FND Design Data
12.2.2
-
APPS.IGF_SL_DL_ORIG_ACK SQL Statements
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on IGF_AW_GEN
12.1.1
-
APPS.IGF_SL_CL_CHG_FILE dependencies on IGF_GR_GEN
12.1.1
-
APPS.IGF_SL_CL_CHG_FILE dependencies on IGF_AW_GEN
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on FND_MESSAGE
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_ORIG_ACK
12.1.1
-
APPS.IGF_SL_DL_ORIG_ACK dependencies on FND_FILE
12.1.1
-
APPS.IGF_SL_DL_LI_IMP_PKG dependencies on IGF_AP_GEN
12.1.1
-
APPS.IGF_SL_CL_LI_IMP_PKG dependencies on IGF_AP_GEN
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_CL_CHG_FILE
12.1.1
-
PACKAGE BODY: APPS.IGF_SL_DL_LI_IMP_PKG
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