Search Results loan_status_code
Overview
The view IGF_SL_LOANS_SUM_V (Loans Summary View) belongs to the IGF – Financial Aid product family, a module classified as Obsolete in the Oracle E-Business Suite 12.1.1 and 12.2.2 documentation set. The view consolidates student loan information for financial aid awards, joining loan-level detail from IGF_SL_LOANS with award data, loan origination records, financial aid base records, and person information sourced through IGS_PE_PERSON_BASE_V. Its stated purpose is to present a flattened, reporting-friendly summary of loan activity per award and per person, exposing both student (borrower) and payer/contributor person identifiers and names side by side.
Per the ETRM metadata, this object is not implemented in the database referenced by the documentation, and no base objects are formally documented as referenced. This indicates the view exists as historical metadata inherited from earlier releases (the IGS/IGF Financial Aid schema, later superseded by the Student Aid modules), and should be treated as informational rather than as a supported integration or reporting interface in current 12.1.1/12.2.2 environments.
Underlying Base Objects
Although the metadata lists no formally documented base objects, the embedded view text reveals the following join structure:
IGF_SL_LOANS— the primary loan detail table (alias LOANS).IGF_SL_LOR— loan origination records (alias LOR), supplying the originating batch and the payer person.IGF_AW_AWARD— award header data (alias AWD), providing accepted and paid amounts.IGF_AP_FA_BASE_REC— the financial aid base record (alias FABASE), linking calendar type, sequence number, and student person.IGS_PE_PERSON_BASE_V— the person base view, joined twice: once as S_PERSON (student, viaFABASE.PERSON_ID) and once as P_PERSON (payer, outer-joined viaLOR.P_PERSON_ID).
The outer join on the payer person means loans without an associated payer still return a row, with payer identifiers null. The user's search term, igs_pe_person_base_v, corresponds directly to this dual reference — the view depends on the person base view for both borrower and payer name resolution.
Key Columns
- ROW_ID, LOAN_ID, AWARD_ID, SEQ_NUM — identifiers linking the row to the loan and award hierarchy.
- ORIG_BATCH_ID_TXT, LOAN_NUMBER_TXT — originating batch and loan number (exposed as character text).
- LOAN_PER_BEGIN_DATE / LOAN_PER_END_DATE — the loan period boundaries.
- LOAN_STATUS_CODE / LOAN_STATUS_DESC — status code with decoded description via
IGF_AW_GEN.LOOKUP_DESC('IGF_SL_LOAN_STATUS', ...). - LOAN_STATUS_DATE, ACTIVE_FLAG, ACTIVE_DATE — status timing and active flag.
- LOAN_ACCEPTED_AMT / LOAN_PAID_AMT — accepted and disbursed award amounts.
- BASE_ID, CAL_TYPE, SEQUENCE_NUMBER — base record and academic calendar context.
- S_PERSON_ID, S_PERSON_NUMBER, S_FULL_NAME — the student.
- P_PERSON_ID, P_PERSON_NUMBER, P_FULL_NAME — the payer/contributor.
Common Use Cases and Queries
Typical usage would be loan summary reporting per student or per award, reconciliation of accepted versus paid amounts, or batch-level loan tracking. A representative query:
SELECT award_id, loan_number_txt, s_full_name, s_person_number, p_full_name, loan_status_desc, loan_accepted_amt, loan_paid_amt FROM igf_sl_loans_sum_v WHERE loan_status_code = 'A' ORDER BY s_full_name;- Summarization by student:
SELECT s_person_number, s_full_name, SUM(loan_paid_amt) FROM igf_sl_loans_sum_v GROUP BY s_person_number, s_full_name;
Given the Obsolete classification and the absence of a documented implementation, these queries are illustrative of the legacy design and should be validated against any surviving custom schema before reliance in production reporting.
-
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 ,