Search Results clprl_id




Overview

The IGF_SL_CL_PREF_LENDERS table is a core data structure within the Oracle E-Business Suite (EBS) 12.1.1 and 12.2.2, specifically for the Federal Family Education Loan Program (FFELP) functionality in the Student Loan (IGF) module. It serves as the setup and assignment table for defining preferred lender relationships for recipients. This table enables the system to manage and track which lenders are designated as preferred for specific individuals or entities over defined periods, a critical component for processing and administering student loans according to program rules.

Key Information Stored

The table stores the definitive record of preferred lender assignments. Its primary columns include the system-generated primary key CLPRL_ID, which uniquely identifies each lender assignment record. The PERSON_ID column holds the identifier for the party (often a school or recipient) to whom the lender is assigned, linking to the Trading Community Architecture (HZ_PARTIES). The RELATIONSHIP_CD defines the type of relationship, referencing valid codes from the IGF_SL_CL_RECIPIENT lookup. Temporal validity is managed via START_DATE and END_DATE. The table also includes standard EBS columns for auditing (CREATED_BY, LAST_UPDATE_DATE, etc.), concurrency control (OBJECT_VERSION_NUMBER), and concurrent program tracking.

Common Use Cases and Queries

Primary use cases involve the administration and reporting of lender relationships. Functional setups use this table to configure which lenders are available for specific schools or programs. Operational reporting queries this table to determine active preferred lenders for a given entity or to audit historical assignments. A common query pattern retrieves all active assignments for a specific person:

  • SELECT CLPRL_ID, PERSON_ID, RELATIONSHIP_CD, START_DATE, END_DATE FROM IGF.IGF_SL_CL_PREF_LENDERS WHERE PERSON_ID = :p_person_id AND SYSDATE BETWEEN START_DATE AND NVL(END_DATE, SYSDATE);

Another critical use case is integration with loan item processing, where the CLPRL_ID is referenced to apply the correct lender terms to a transaction.

Related Objects

The table maintains defined relationships with other key EBS objects, primarily through foreign key constraints. It references foundational tables to ensure data integrity:

  • HZ_PARTIES: The PERSON_ID column is a foreign key to this TCA table, linking the lender assignment to a specific party record.
  • IGF_SL_CL_RECIPIENT: The RELATIONSHIP_CD column references this lookup to validate the relationship type code.

Furthermore, the table is referenced by downstream transactional objects:

  • IGF_AP_TD_ITEM_INST_ALL: This table holds a foreign key (CLPRL_ID) to IGF_SL_CL_PREF_LENDERS, linking individual loan item instances to their assigned preferred lender setup record.