Search Results limiting_amount
Overview
APPS.XTR_LIMIT_EXCESS_LOG_V is a reporting view in the Oracle E-Business Suite Treasury (ETRM) module. It presents a projection of treasury limit-check excess events — records generated when a deal, transaction, or position breaches a configured counterparty or company limit. The view exposes the audit and authorisation attributes associated with each excess, including who authorised the exception, when dual authorisation occurred, and the currency of the relevant amounts. Because it surfaces the column LIMITING_AMOUNT (the threshold value applied at the time of the check) alongside EXCEEDED_BY_AMOUNT, it is the natural object to query when investigating "limiting_amount" values, reconciling why a given excess was raised, or building reporting and integration extracts around limit breaches. In Oracle EBS 12.1.1 and 12.2.2 the object is owned by APPS and is intended for read-only query and reporting use rather than transactional maintenance.
Underlying Base Objects
The documented metadata identifies a single referenced base object: the synonym XTR_LIMIT_EXCESS_LOG. The view is defined as a straightforward SELECT over that table, selecting every listed column without joins, filters, aggregation, or calculated expressions. It therefore does not alter or enrich the underlying data — it is a 1:1 projection of the base table's documented column set. Practical implications follow directly: any row visible in the view corresponds to exactly one row in XTR_LIMIT_EXCESS_LOG, and any DML or column addition must be performed against the base table (subject to ETRM's supported extension practices). No additional ETRM tables such as deal, counterparty, or limit definition tables are joined within the view, so descriptive attributes must be resolved separately by the consumer.
Key Columns
The view exposes eighteen columns. The most significant include:
LOG_ID— primary identifier for the excess log entry.LIMITING_AMOUNT— the limit threshold that was applied during the limit check; this is the value the searched term "limiting_amount" refers to.EXCEEDED_BY_AMOUNT— the monetary amount by which the limit was breached.HCE_AMOUNTandAMOUNT_DATE— the measured exposure amount and its as-of date.LIMIT_CHECK_TYPE,EXCEPTION_TYPE, andEXCEEDED_ON_DATE— classification of the check performed, the exception raised, and the date of the breach.DEAL_NUMBER,TRANSACTION_NUMBER,COMPANY_CODE,LIMIT_CODE,LIMIT_PARTY, andDEALER_CODE— business context identifying the deal, transaction, company, limit, counterparty, and dealer involved.AUTHORISED_BY,DUAL_AUTHORISED_BY, andDUAL_AUTHORISED_ON— approval and dual-authorisation audit trail.CURRENCY— currency in which the amounts are expressed.
Common Use Cases and Queries
Typical uses include excess reporting for treasury operations, exception audit review, and feeds into risk or compliance extracts.
- List excesses with their thresholds:
SELECT LOG_ID, LIMIT_CODE, LIMIT_PARTY, LIMITING_AMOUNT, EXCEEDED_BY_AMOUNT, CURRENCY FROM APPS.XTR_LIMIT_EXCESS_LOG_V WHERE EXCEEDED_ON_DATE >= :p_from_date; - Identify large breaches:
... WHERE EXCEEDED_BY_AMOUNT > :p_threshold ORDER BY EXCEEDED_BY_AMOUNT DESC; - Review authorisation status:
SELECT LOG_ID, EXCEPTION_TYPE, AUTHORISED_BY, DUAL_AUTHORISED_BY, DUAL_AUTHORISED_ON FROM APPS.XTR_LIMIT_EXCESS_LOG_V WHERE DUAL_AUTHORISED_ON IS NULL; - Analyse breaches by counterparty and limit:
SELECT LIMIT_PARTY, LIMIT_CODE, COUNT(*), SUM(EXCEEDED_BY_AMOUNT) FROM APPS.XTR_LIMIT_EXCESS_LOG_V GROUP BY LIMIT_PARTY, LIMIT_CODE;
Because descriptive deal and limit data reside elsewhere, these queries are often joined to deal and limit definition tables on DEAL_NUMBER, LIMIT_CODE, and LIMIT_PARTY to produce complete management reporting.
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_V
12.2.2
-
VIEW: XTR.XTR_LIMIT_EXCESS_LOG#
12.2.2
-
View: XTR_LIMIT_EXCESS_LOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_V, object_name:XTR_LIMIT_EXCESS_LOG_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_V ,
-
VIEW: XTR.XTR_LIMIT_EXCESS_LOG#
12.2.2
owner:XTR, object_type:VIEW, object_name:XTR_LIMIT_EXCESS_LOG#, status:VALID,
-
APPS.XTR_LIMITS_P SQL Statements
12.1.1
-
View: XTR_LIMIT_EXCESS_LOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_V, object_name:XTR_LIMIT_EXCESS_LOG_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_V ,
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_V
12.1.1
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_V, object_name:XTR_LIMIT_EXCESS_LOG_V, status:VALID,
-
APPS.XTR_LIMITS_P SQL Statements
12.2.2
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_V, object_name:XTR_LIMIT_EXCESS_LOG_V, status:VALID,
-
View: XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V ,
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID,
-
View: XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V ,
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG_DETAILS_V, object_name:XTR_LIMIT_EXCESS_LOG_DETAILS_V, status:VALID,
-
TABLE: XTR.XTR_LIMIT_EXCESS_LOG
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG, object_name:XTR_LIMIT_EXCESS_LOG, status:VALID,
-
TABLE: XTR.XTR_LIMIT_EXCESS_LOG
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_EXCESS_LOG, object_name:XTR_LIMIT_EXCESS_LOG, status:VALID,
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.2.2
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.1.1
-
APPS.XTR_LIMITS_P dependencies on XTR_LIMIT_EXCESS_LOG
12.1.1
-
APPS.XTR_LIMITS_P dependencies on XTR_LIMIT_EXCESS_LOG
12.2.2
-
eTRM - XTR Tables and Views
12.1.1
description: Created on 29-OCT-96 ,
-
eTRM - XTR Tables and Views
12.2.2
description: Created on 29-OCT-96 ,