Search Results no_autho




Overview

APPS.XTR_LIMITS_P is the core limit-checking engine of Oracle Treasury (ETRM) within Oracle E-Business Suite 12.1.1 and 12.2.2. The package body encapsulates the business rules that determine whether a proposed treasury deal, settlement, or counterparty exposure remains within the credit and trading limits defined by the treasury organization. It calculates home-currency-equivalent (HCE) exposure amounts, applies period-based weighting factors, evaluates exposures against every category of limit maintained in the system, and records any excess conditions for subsequent review. Because limits are a control point for counterparty credit risk, dealer authority, sovereign exposure, intra-day trading, and currency concentration, XTR_LIMITS_P is central to the compliance posture of the treasury module.

The package exposes nineteen documented procedures and functions, classified as OTHER in the ETRM metadata, and references thirteen limit-related tables through APPS synonyms. It is referenced by five other packages, confirming its role as a shared service consumed elsewhere in the treasury stack.

Key Procedures and Functions

Internally, the body declares exceptions ex_no_limit_exists and ex_auth_not_y, which signal missing limit definitions and unauthorized conditions during limit evaluation.

Tables Accessed

The package reads and writes limit definitions and exposure data across the following synonyms:

Usage Notes

XTR_LIMITS_P is not intended for direct end-user invocation but is called from Oracle Treasury forms, concurrent programs, and other treasury packages whenever a deal is entered, amended, settled, or validated. Limit-check forms trigger the GET_LIM_* family to evaluate exposures at save time, while batch processes such as limit revaluation and end-of-day excess reporting invoke LOG_FULL_LIMITS_CHECK and MAINTAIN_EXCESS_LOG to populate the excess log. Customizations and extensions should call the public functions rather than replicating the HCE conversion or weighting logic, ensuring consistent treatment of XTR_FX_PERIOD_WEIGHTINGS and XTR_PARTY_INFO. In both 12.1.1 and 12.2.2, the package ships under the APPS schema with the $Header tag indicating maintenance through 2012; because it is covered by the ETRM support policy, direct modification is discouraged and the standard Oracle APIs should be preserved.