Search Results xtr_tax_categories
Overview
The XTR_TAX_CATEGORIES table is a core reference table within the Oracle E-Business Suite Treasury (XTR) module. Its primary function is to define and maintain distinct tax categories, which serve as master groupings for the configuration of tax calculation methods and applicable rates. This table acts as a centralized control point, ensuring consistency in how tax rules are applied across various treasury transactions and party-level setups. By categorizing tax treatments, it enables the system to streamline complex tax compliance and reporting requirements inherent to financial operations in a multinational environment.
Key Information Stored
While the provided metadata does not list specific column names beyond the primary key, the table's structure is centered on the tax category definition. The primary column is TAX_CATEGORY, which serves as the unique identifier (Primary Key: XTR_TAX_CATEGORIES_PK) for each category. Typical supplemental columns in such a reference table would include a description (e.g., TAX_CATEGORY_DESC), an effective start date, an end date for enabling or disabling categories, and potentially attributes linking to specific calculation engines or legal jurisdictions. The data stored directly influences downstream tax determination logic for treasury instruments.
Common Use Cases and Queries
This table is primarily referenced during the setup and maintenance of treasury system parameters and party information. A common operational use case is validating or reporting on all active tax categories configured in the system. For instance, a query to list all defined categories would be fundamental for setup audits. Furthermore, this table is often joined to party information tables to analyze or troubleshoot the tax profile assigned to specific counter-parties. Sample SQL to retrieve all categories and their associated party defaults would leverage the documented foreign key relationship.
SELECT cat.tax_category,
def.party_code
FROM xtr_tax_categories cat,
xtr_party_defaults def
WHERE cat.tax_category = def.tax_category(+)
ORDER BY cat.tax_category;
Related Objects
The XTR_TAX_CATEGORIES table is a parent reference for several key treasury tables, as defined by its foreign key relationships. These relationships ensure referential integrity for tax category assignments at the party level. The documented dependent objects are:
- XTR_PARTY_DEFAULTS: The TAX_CATEGORY column in this table references XTR_TAX_CATEGORIES.TAX_CATEGORY. This links the master tax category to the default settings for a treasury party.
- XTR_PARTY_INFO: The TAX_CATEGORY column in this table references XTR_TAX_CATEGORIES.TAX_CATEGORY. This links the tax category directly to specific, detailed party information records.
These relationships indicate that the TAX_CATEGORY value is a critical attribute propagated to party master data, governing the default tax treatment for financial transactions with those entities.
-
Table: XTR_TAX_CATEGORIES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_TAX_CATEGORIES, object_name:XTR_TAX_CATEGORIES, status:VALID, product: XTR - Treasury , description: Tax categories used for grouping the calculation methods and rates , implementation_dba_data: XTR.XTR_TAX_CATEGORIES ,
-
Table: XTR_TAX_CATEGORIES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_TAX_CATEGORIES, object_name:XTR_TAX_CATEGORIES, status:VALID, product: XTR - Treasury , description: Tax categories used for grouping the calculation methods and rates , implementation_dba_data: XTR.XTR_TAX_CATEGORIES ,
-
View: XTR_TAX_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_CATEGORIES_V, object_name:XTR_TAX_CATEGORIES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_TAX_CATEGORIES_V ,
-
Table: XTR_PARTY_DEFAULTS
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARTY_DEFAULTS, object_name:XTR_PARTY_DEFAULTS, status:VALID, product: XTR - Treasury , description: Counterparty default settlement information , implementation_dba_data: XTR.XTR_PARTY_DEFAULTS ,
-
Table: XTR_PARTY_DEFAULTS
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARTY_DEFAULTS, object_name:XTR_PARTY_DEFAULTS, status:VALID, product: XTR - Treasury , description: Counterparty default settlement information , implementation_dba_data: XTR.XTR_PARTY_DEFAULTS ,
-
Table: XTR_PARTY_INFO
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARTY_INFO, object_name:XTR_PARTY_INFO, status:VALID, product: XTR - Treasury , description: Created from Entity XTR PARTY by ORACLE on 06-MAY-93 , implementation_dba_data: XTR.XTR_PARTY_INFO ,
-
View: XTR_TAX_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_TAX_CATEGORIES_V, object_name:XTR_TAX_CATEGORIES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_TAX_CATEGORIES_V ,
-
Table: XTR_PARTY_INFO
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_PARTY_INFO, object_name:XTR_PARTY_INFO, status:VALID, product: XTR - Treasury , description: Created from Entity XTR PARTY by ORACLE on 06-MAY-93 , implementation_dba_data: XTR.XTR_PARTY_INFO ,