Search Results igf_sl_cl_chg_prc




Overview

The package body APPS.IGF_SL_CL_CHG_PRC is a component of the Oracle E-Business Suite Financial Aid module, specifically within the Student Loan (IGF_SL) subsystem that supports the administration of guaranteed student loans. It functions as a processing engine for "closeout change" records, applying validation and token-based parsing logic against the loan, recipient, guarantor, and lender data that participate in the student loan lifecycle. The package is classified as OTHER within the documented API taxonomy, indicating that it is an internal processing utility rather than a published public API intended for third-party integration. Its status is VALID in the APPS schema, confirming that the compiled body is present and usable on the 12.1.1 and 12.2.2 releases. Because it depends heavily on the ETRM (Enterprise Transaction Repository Model) family of IGF tables and the FND diagnostic and messaging infrastructure, the package sits at the intersection of business rule enforcement and operational logging for the loan closeout change process.

Key Procedures and Functions

The documented package exposes two procedures within the package body.

  • VALIDATE_CHG — Performs validation of a closeout or change record prior to processing. It evaluates the record against loan, recipient, guarantor, and lender data to confirm that the change is permissible and consistent, raising or logging exceptions through the standard FND/APP_EXCEPTION mechanism when validation fails.
  • PARSE_TOKENS — Provides token parsing functionality, decomposing structured strings or delimited values into their component parts so they can be mapped to the appropriate loan or demographic attributes. This is typically used to interpret coded or concatenated data encountered in closeout change processing.

No explicit parameter lists are documented in the ETRM metadata, and they are intentionally omitted here.

Tables Accessed

The package references a substantial set of EBS and ETRM tables through APPS synonyms.

Usage Notes

Because IGF_SL_CL_CHG_PRC is not referenced by any database object, it is invoked indirectly — most commonly from the student loan closeout change concurrent program or from the EBS forms that manage loan closeout. The package is also referenced by five other packages, which suggests it is called as a subroutine by higher-level IGF_SL processing logic. It relies on FND_FILE, FND_LOG, and FND_MESSAGE for output and error reporting, typical of concurrent-program code. Customizations should treat it as internal and avoid direct invocation unless the loan closeout change workflow explicitly requires subcontracting the VALIDATE_CHG or PARSE_TOKENS logic.