Search Results lend_brc_description




Overview

IGF_SL_CL_RECIPIENT_V is a reporting and integration view owned by the APPS schema in Oracle E-Business Suite, associated with the Financial Aid / Student Loan (IGF) module — historically delivered as part of the Oracle Student System / Financial Aid subsystem. The view presents a denormalized, human-readable projection of recipient relationship records held in IGF_SL_CL_RECIPIENT, enriching each row with descriptive text for the lender, the lender branch, the guarantor, and the recipient. It serves as a curated access layer that shields reports, concurrent programs, and downstream integrations from the need to perform their own joins across the underlying lender, guarantor, and recipient entities.

The view is particularly relevant to users searching on the derived column lend_description, which exposes the descriptive name of the lender associated with each recipient relationship. Rather than exposing only numeric identifiers, the view surfaces the lender description alongside corresponding branch, guarantor, and recipient descriptions, making it well suited to output that must be intelligible to end users.

Underlying Base Objects

Based on the documented view text, IGF_SL_CL_RECIPIENT_V is defined over the following objects:

The use of NVL with a wildcard ('*') in the branch joins allows rows without a specific branch identifier to fall through to the branch-less record, while the outer join on the lender branch table permits recipient rows that have no matching branch.

Key Columns

Common Use Cases and Queries

Typical usage includes recipient relationship reports that must display descriptive names rather than internal identifiers, and integration extracts that feed downstream lending or servicing systems. A representative query listing enabled recipient relationships for a specific lender follows:

  • SELECT rcpt_id, lender_id, lend_description, guarantor_id, guarn_description, recipient_id, recip_description
  • FROM apps.igf_sl_cl_recipient_v
  • WHERE lender_id = :p_lender_id AND enabled = 'Y';

Analysts may also filter or group by recip_description or lend_brc_description to produce branch-level breakdowns, and use relationship_cd_desc to categorize recipients by relationship type. Because the view encapsulates the multi-table join logic, reports remain stable even as branch and recipient view definitions evolve.