Search Results xtr_brokerage_categories
Overview
The XTR_BROKERAGE_CATEGORIES table is a core reference data object within the Oracle E-Business Suite Treasury (XTR) module. It functions as a master list or lookup table for categorizing the financial accounts associated with external Treasury parties, such as brokers, banks, and other counterparties. Its primary role is to enforce data integrity by providing a validated set of codes that can be assigned to parties, ensuring consistency in how brokerage and account types are classified across the system. This standardization is critical for accurate transaction processing, reporting, and financial controls within the Treasury management framework of Oracle EBS 12.1.1 and 12.2.2.
Key Information Stored
As a reference table, its structure is typically lean. The central column is BROKERAGE_CATEGORY, which serves as the primary key. This column stores the unique alpha-numeric code that identifies a specific category of financial account. While the provided metadata does not list additional descriptive columns, such tables commonly include fields like a description (e.g., BROKERAGE_CATEGORY_DESC) for the category name, enabled flags, and who-columns (CREATION_DATE, CREATED_BY). The table's existence is defined by the primary key constraint XTR_BROKERAGE_CATEGORIES_PK on the BROKERAGE_CATEGORY column.
Common Use Cases and Queries
The primary use case is the maintenance of valid brokerage categories via the application's front-end, which are then available for selection when setting up or updating party information. For reporting and data validation, common SQL patterns include joining this table to party details to generate descriptive lists. For instance, a query to list all parties with their assigned category description would be:
- SELECT pi.party_code, pi.party_name, bc.brokerage_category, bc.description FROM xtr_party_info pi, xtr_brokerage_categories bc WHERE pi.brokerage_category = bc.brokerage_category(+);
Administrative queries might also check for orphaned codes or validate data integrity before migrations.
Related Objects
Based on the documented foreign key relationships, the XTR_BROKERAGE_CATEGORIES table is directly referenced by two key party information tables in the XTR schema:
- XTR_PARTY_DEFAULTS: The column XTR_PARTY_DEFAULTS.BROKERAGE_CATEGORY references this table, linking a default brokerage account category to a party's general settings.
- XTR_PARTY_INFO: The column XTR_PARTY_INFO.BROKERAGE_CATEGORY references this table, assigning a specific brokerage account category to a treasury party record.
These relationships ensure that any brokerage category assigned to a party in the system must first be defined in the XTR_BROKERAGE_CATEGORIES master table, maintaining referential integrity.
-
Table: XTR_BROKERAGE_CATEGORIES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_BROKERAGE_CATEGORIES, object_name:XTR_BROKERAGE_CATEGORIES, status:VALID, product: XTR - Treasury , description: Alpha-numeric reference to financial accounts of Treasury parties. , implementation_dba_data: XTR.XTR_BROKERAGE_CATEGORIES ,
-
Table: XTR_BROKERAGE_CATEGORIES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_BROKERAGE_CATEGORIES, object_name:XTR_BROKERAGE_CATEGORIES, status:VALID, product: XTR - Treasury , description: Alpha-numeric reference to financial accounts of Treasury parties. , implementation_dba_data: XTR.XTR_BROKERAGE_CATEGORIES ,
-
View: XTR_BROKERAGE_CATEGORIES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BROKERAGE_CATEGORIES_V, object_name:XTR_BROKERAGE_CATEGORIES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_BROKERAGE_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 ,
-
View: XTR_BROKERAGE_CATEGORIES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_BROKERAGE_CATEGORIES_V, object_name:XTR_BROKERAGE_CATEGORIES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_BROKERAGE_CATEGORIES_V ,
-
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 ,
-
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 ,