Search Results limit_group
Overview
XTR_LIMIT_OVERVIEW_V is an APPS-owned reporting view within the Oracle E-Business Suite Treasury (XTR) module. It consolidates limit exposure information from several distinct limit-tracking categories into a single, uniformly shaped result set. According to ETRM metadata, the view "shows a subset of columns from counterparty, sovereign, global, currency, group and settlement limits." This makes it the primary consolidated source for limit utilisation reporting across the Treasury product. Its status is VALID in both 12.1.1 and 12.2.2, and the view text is identical across the two releases.
The view is implemented as a set of UNION ALL branches, each selecting from a different underlying limit table and projecting that table's native columns into a common column list. A literal LIMIT_TYPE discriminator column identifies which branch produced each row, allowing consumers to filter or group by limit category without knowing the physical table layout.
Underlying Base Objects
The documented base objects referenced by XTR_LIMIT_OVERVIEW_V are:
- XTR_COUNTERPARTY_LIMITS — counterparty limit definitions and utilisation.
- XTR_COUNTRY_COMPANY_LIMITS — sovereign/country limit definitions per company.
- XTR_COMPANY_LIMITS — global company-level limits.
- XTR_GROUP_LIMITS — limit group definitions (relevant to the "limit_group" search term).
- XTR_MASTER_CURRENCIES — currency limit definitions.
- XTR_SETTLEMENTS_V — settlement limit source view.
- XTR_PARTIES_V — party master, joined for country code on counterparty limits.
- XTR_PRO_PARAM and XTR_USER_ACCESS — supporting parameter and security objects.
The counterparty branch joins XTR_COUNTERPARTY_LIMITS to XTR_PARTIES_V on PARTY_CODE = CPARTY_CODE, excludes rows where LIMIT_CODE = 'SETTLE', and suppresses rows where both LIMIT_AMOUNT and UTILISED_AMOUNT are zero.
Key Columns
- LIMIT_TYPE — discriminator literal identifying the limit category ('COUNTERPARTY', 'SOVEREIGN', 'GLOBAL', and so on).
- LIMIT_PARTY — the counterparty code for counterparty limits; 'N/A' for other branches.
- COUNTRY — uppercased country code from XTR_PARTIES_V or the country limit table; 'N/A' where not applicable.
- LIMIT_CODE — the limit identifier; 'N/A' for sovereign limits.
- COMPANY — the company code owning the limit.
- LIMIT_GROUP — populated from the limit type for global limits and from group limit definitions; 'N/A' elsewhere.
- CURRENCY — currency code for currency limits; 'N/A' for other branches.
- LIMIT_AMT / UTILISED / AVAILABLE — the limit amount, utilised amount, and the computed difference (LIMIT_AMOUNT minus UTILISED_AMOUNT), each wrapped in NVL(...,0).
- EFFECTIVE_DATE — populated as TRUNC(SYSDATE), reflecting the report run date.
- ATTRIBUTE1–ATTRIBUTE15 — descriptive flexfield columns, populated only for counterparty limits and NULL for other branches.
Common Use Cases and Queries
The view is typically used for limit utilisation dashboards, exposure monitoring, and downstream feeds into risk reporting. A common query retrieves available headroom by limit type:
SELECT limit_type, company, limit_party, currency, limit_amt, utilised, available FROM apps.xtr_limit_overview_v WHERE available < 0 ORDER BY available;SELECT limit_group, SUM(utilised) FROM apps.xtr_limit_overview_v WHERE limit_type = 'GLOBAL' GROUP BY limit_group;SELECT * FROM apps.xtr_limit_overview_v WHERE limit_type = 'COUNTERPARTY' AND country = 'US';
Because ATTRIBUTE columns are only populated on the counterparty branch, queries relying on descriptive flexfield values should constrain LIMIT_TYPE = 'COUNTERPARTY'.
-
View: XTR_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_OVERVIEW_V, object_name:XTR_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: XTR_LIMIT_OVERVIEW_V shows a subset of columns from counterparty, sovereign, global, currency, group and settlement limits. , implementation_dba_data: APPS.XTR_LIMIT_OVERVIEW_V ,
-
VIEW: APPS.XTR_LIMIT_OVERVIEW_V
12.1.1
-
VIEW: APPS.XTR_LIMIT_OVERVIEW_V
12.2.2
-
View: XTR_LIMIT_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_OVERVIEW_V, object_name:XTR_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: XTR_LIMIT_OVERVIEW_V shows a subset of columns from counterparty, sovereign, global, currency, group and settlement limits. , implementation_dba_data: APPS.XTR_LIMIT_OVERVIEW_V ,
-
VIEW: APPS.XTR_DISC_LIMIT_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DISC_LIMIT_OVERVIEW_V, object_name:XTR_DISC_LIMIT_OVERVIEW_V, status:VALID,
-
VIEW: APPS.XTR_DISC_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DISC_LIMIT_OVERVIEW_V, object_name:XTR_DISC_LIMIT_OVERVIEW_V, status:VALID,
-
VIEW: APPS.XTR_BIS_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_LIMIT_OVERVIEW_V, object_name:XTR_BIS_LIMIT_OVERVIEW_V, status:VALID,
-
VIEW: APPS.XTR_BIS_LIMIT_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_LIMIT_OVERVIEW_V, object_name:XTR_BIS_LIMIT_OVERVIEW_V, status:VALID,
-
VIEW: APPS.XTR_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_OVERVIEW_V, object_name:XTR_LIMIT_OVERVIEW_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_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LIMIT_OVERVIEW_V, object_name:XTR_LIMIT_OVERVIEW_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.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_DISC_LIMIT_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DISC_LIMIT_OVERVIEW_V, object_name:XTR_DISC_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: Limit amount versus limit utilization amounts for all limit areas, where user access to company information is enforced. , implementation_dba_data: APPS.XTR_DISC_LIMIT_OVERVIEW_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,
-
View: XTR_BIS_LIMIT_OVERVIEW_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_LIMIT_OVERVIEW_V, object_name:XTR_BIS_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: This view shows the limit and utilization amount information for counterparty, sovereign, global, currency, group, and settlement limits. , implementation_dba_data: APPS.XTR_BIS_LIMIT_OVERVIEW_V ,
-
View: XTR_BIS_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BIS_LIMIT_OVERVIEW_V, object_name:XTR_BIS_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: This view shows the limit and utilization amount information for counterparty, sovereign, global, currency, group, and settlement limits. , implementation_dba_data: APPS.XTR_BIS_LIMIT_OVERVIEW_V ,
-
View: XTR_DISC_LIMIT_OVERVIEW_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_DISC_LIMIT_OVERVIEW_V, object_name:XTR_DISC_LIMIT_OVERVIEW_V, status:VALID, product: XTR - Treasury , description: Limit amount versus limit utilization amounts for all limit areas, where user access to company information is enforced. , implementation_dba_data: APPS.XTR_DISC_LIMIT_OVERVIEW_V ,
-
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 ,