Search Results xtr_company_limits
Overview
XTR_COMPANY_LIMITS is a Treasury (XTR) module table in Oracle E-Business Suite 12.1.1 and 12.2.2 that stores company limit definitions and their associated limit and utilization amounts. It is the operational record of authorized exposure thresholds assigned to legal entities or counterparty companies, together with the amounts already consumed against those thresholds. In ETRM functional terms, the table supports limit monitoring, exposure tracking, and authorization workflows used by treasury and risk personnel.
The table resides in the XTR schema and is documented as VALID in the ETRM data dictionary. Its primary key, XTR_COMPANY_LIMITS_PK, is composed of COMPANY_CODE and LIMIT_CODE, meaning a given company may hold many distinct limit records while each individual limit is uniquely identified by the combination of both columns. A second unique index, XTR_COMPANY_LIMITS_U1, enforces uniqueness on (LIMIT_CODE, COMPANY_CODE). Based on the foreign key structure and the presence of descriptive, amount, and audit columns, the heuristic Data Vault classification is satellite-leaning; the business key components COMPANY_CODE and LIMIT_CODE behave as hub keys, with LIMIT_AMOUNT, UTILISED_AMOUNT, and descriptive attributes functioning as satellite payload.
Key Information Stored
The table contains 28 documented columns. The most significant are:
- COMPANY_CODE — identifies the company or legal entity to which the limit applies; part of the composite primary key and of the unique index.
- LIMIT_CODE — identifies the specific limit record; second component of the composite primary key and the leading column of XTR_COMPANY_LIMITS_U1.
- LIMIT_TYPE — classifies the limit; foreign key to XTR_LIMIT_TYPES.
- LIMIT_AMOUNT — the authorized ceiling for the limit.
- UTILISED_AMOUNT — the amount already consumed against the limit, enabling utilization and headroom calculations.
- AUTHORISED — authorization status indicator for the limit record.
- NAME — descriptive label for the limit.
- AUDIT_INDICATOR — flags the record for audit attention.
- CREATED_BY, CREATED_ON, UPDATED_BY, UPDATED_ON — standard WHO audit columns tracking creation and last modification.
- ATTRIBUTE_CATEGORY and ATTRIBUTE1 through ATTRIBUTE15 — the standard Oracle EBS descriptive flexfield (DFF) columns, available for customer-specific extension without schema change.
The surrogate primary key is XTR_COMPANY_LIMITS_PK (COMPANY_CODE, LIMIT_CODE), while XTR_COMPANY_LIMITS_U1 (LIMIT_CODE, COMPANY_CODE) provides the business-key uniqueness constraint on the same columns in reverse order.
Common Use Cases and Queries
Typical reporting scenarios include limit utilization, headroom analysis, and counterparty exposure monitoring. A common pattern joins the limit table to its type definition:
- Limit utilization:
SELECT company_code, limit_code, limit_amount, utilised_amount, (limit_amount - utilised_amount) headroom FROM xtr_company_limits WHERE authorised = 'Y'; - Utilization ratio:
SELECT company_code, limit_code, ROUND(utilised_amount / NULLIF(limit_amount,0) * 100, 2) pct_used FROM xtr_company_limits; - Limit type enrichment:
SELECT c.company_code, c.limit_code, t.limit_type, c.limit_amount, c.utilised_amount FROM xtr_company_limits c, xtr_limit_types t WHERE c.limit_type = t.limit_type; - Audit review:
SELECT * FROM xtr_company_limits WHERE audit_indicator = 'Y' ORDER BY updated_on DESC;
These queries underpin risk dashboards, period-end treasury reporting, and exception reports for limits nearing or exceeding authorized values.
Related Objects
- XTR_LIMIT_TYPES — referenced by XTR_COMPANY_LIMITS.LIMIT_TYPE; provides the classification and definition of each limit category.
- XTR_COMPANY_LIMITS_PK / XTR_COMPANY_LIMITS_U1 — primary and unique indexes enforcing record identity and business-key uniqueness on COMPANY_CODE and LIMIT_CODE.
- XTR_COMPANIES / XTR_COMPANY relationships — the COMPANY_CODE column logically associates limits with company master records used across treasury transactions.
- Treasury transaction and exposure tables in XTR — consume limit and utilization data to evaluate exposure against authorized thresholds.
- ATTRIBUTE flexible field infrastructure — the ATTRIBUTE_CATEGORY and ATTRIBUTE1–15 columns integrate with the Oracle EBS DFF framework for client-specific extensions.
-
Table: XTR_COMPANY_LIMITS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COMPANY_LIMITS, object_name:XTR_COMPANY_LIMITS, status:VALID, product: XTR - Treasury , description: Company limits information including limit and utilization amounts , implementation_dba_data: XTR.XTR_COMPANY_LIMITS ,
-
Table: XTR_COMPANY_LIMITS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COMPANY_LIMITS, object_name:XTR_COMPANY_LIMITS, status:VALID, product: XTR - Treasury , description: Company limits information including limit and utilization amounts , implementation_dba_data: XTR.XTR_COMPANY_LIMITS ,
-
VIEW: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V
12.1.1
-
VIEW: XTR.XTR_COMPANY_LIMITS#
12.2.2
owner:XTR, object_type:VIEW, object_name:XTR_COMPANY_LIMITS#, status:VALID,
-
SYNONYM: APPS.XTR_COMPANY_LIMITS
12.2.2
owner:APPS, object_type:SYNONYM, object_name:XTR_COMPANY_LIMITS, status:VALID,
-
SYNONYM: APPS.XTR_COMPANY_LIMITS
12.1.1
owner:APPS, object_type:SYNONYM, object_name:XTR_COMPANY_LIMITS, status:VALID,
-
VIEW: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V
12.2.2
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.2.2
-
VIEW: APPS.XTR_COMPANY_LIMITS_V
12.1.1
-
VIEW: APPS.XTR_COMPANY_LIMITS_V
12.2.2
-
VIEW: XTR.XTR_COMPANY_LIMITS#
12.2.2
-
VIEW: APPS.XTR_LIMIT_EXCESS_LOG_DETAILS_V
12.1.1
-
TABLE: XTR.XTR_COMPANY_LIMITS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COMPANY_LIMITS, object_name:XTR_COMPANY_LIMITS, status:VALID,
-
TABLE: XTR.XTR_COMPANY_LIMITS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_COMPANY_LIMITS, object_name:XTR_COMPANY_LIMITS, status:VALID,
-
Table: XTR_LIMIT_TYPES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_TYPES, object_name:XTR_LIMIT_TYPES, status:VALID, product: XTR - Treasury , description: Information on defined limit types , implementation_dba_data: XTR.XTR_LIMIT_TYPES ,
-
Table: XTR_LIMIT_TYPES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LIMIT_TYPES, object_name:XTR_LIMIT_TYPES, status:VALID, product: XTR - Treasury , description: Information on defined limit types , implementation_dba_data: XTR.XTR_LIMIT_TYPES ,
-
TRIGGER: APPS.XTR_AU_COMPANY_LIMITS_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_COMPANY_LIMITS_T, status:VALID,
-
TRIGGER: APPS.XTR_AU_COMPANY_LIMITS_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_COMPANY_LIMITS_T, status:VALID,
-
View: XTR_COMPANY_LIMITS_EXCL_FX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_EXCL_FX_V, object_name:XTR_COMPANY_LIMITS_EXCL_FX_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V ,
-
View: XTR_COMPANY_LIMITS_EXCL_FX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_EXCL_FX_V, object_name:XTR_COMPANY_LIMITS_EXCL_FX_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V ,
-
View: XTR_COMPANY_LIMITS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_V, object_name:XTR_COMPANY_LIMITS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_COMPANY_LIMITS_V ,
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AD_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_TMP_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_TMP_T, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AD_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AU_MIRROR_DDA_LIMIT_ROW_T
12.2.2
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_MIRROR_DDA_LIMIT_ROW_T, 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 ,
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.1.1
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_LIMITS_P, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AU_MIRROR_DDA_LIMIT_ROW_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AU_MIRROR_DDA_LIMIT_ROW_T, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_TMP_T
12.1.1
owner:APPS, object_type:TRIGGER, object_name:XTR_AI_MIRROR_DDA_TMP_T, 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: XTR_COMPANY_LIMITS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_V, object_name:XTR_COMPANY_LIMITS_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_COMPANY_LIMITS_V ,
-
PACKAGE BODY: APPS.XTR_LIMITS_P
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:XTR_LIMITS_P, status:VALID,
-
TRIGGER: APPS.XTR_AU_COMPANY_LIMITS_T
12.2.2
-
VIEW: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_EXCL_FX_V, object_name:XTR_COMPANY_LIMITS_EXCL_FX_V, status:VALID,
-
TRIGGER: APPS.XTR_AU_COMPANY_LIMITS_T
12.1.1
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_TMP_T
12.2.2
-
VIEW: APPS.XTR_COMPANY_LIMITS_EXCL_FX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_COMPANY_LIMITS_EXCL_FX_V, object_name:XTR_COMPANY_LIMITS_EXCL_FX_V, status:VALID,
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.1.1
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.2.2
-
TRIGGER: APPS.XTR_AD_MIRROR_DDA_LIMIT_ROW_T
12.1.1
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_TMP_T
12.1.1
-
TRIGGER: APPS.XTR_AI_MIRROR_DDA_LIMIT_ROW_T
12.2.2
-
12.1.1 DBA Data
12.1.1
-
12.2.2 DBA Data
12.2.2
-
TRIGGER: APPS.XTR_AU_MIRROR_DDA_LIMIT_ROW_T
12.1.1
-
TABLE: XTR.XTR_FX_ROLL_PRE_DETAILS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_FX_ROLL_PRE_DETAILS, object_name:XTR_FX_ROLL_PRE_DETAILS, status:VALID,
-
TABLE: XTR.XTR_FX_ROLL_PRE_DETAILS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_FX_ROLL_PRE_DETAILS, object_name:XTR_FX_ROLL_PRE_DETAILS, status:VALID,
-
12.2.2 DBA Data
12.2.2