Search Results xtr_deal_confo_types




Overview

The XTR_DEAL_CONFO_TYPES table is a core reference table within the Oracle E-Business Suite Treasury (XTR) module, specifically for versions 12.1.1 and 12.2.2. It functions as a master repository for defining the various types of deal confirmations that can be generated by the system. Its primary role is to support the configuration and generation of confirmation letter templates, which are critical legal documents sent to counterparties to formally verify the details of financial transactions such as foreign exchange deals, money market deals, or derivatives. The table provides a controlled list of confirmation types, ensuring data integrity and consistency across the confirmation generation process.

Key Information Stored

While the provided metadata does not list all column definitions, the structure centers on the CONFO_TYPE column, which serves as the table's primary key. This column stores the unique code or identifier for each valid confirmation type (e.g., 'FX_SPOT', 'MM_DEAL'). The table's description indicates it is used within confirmation letter templates, implying it likely contains descriptive or control attributes for each type. These may include a description field, flags to control template selection, or indicators for the deal product category. The integrity of this reference data is enforced by the primary key constraint XTR_DEAL_CONFO_TYPES_PK.

Common Use Cases and Queries

The primary use case is the dynamic selection and population of confirmation letter templates based on the deal type. When a treasury user initiates a confirmation run, the system references this table to determine the appropriate template logic. Common queries involve listing all available confirmation types for setup purposes or validating a given type. For instance, a report listing all confirmation types and their usage can be generated. A typical SQL pattern for joining to a transactional table would involve filtering or grouping by the confirmation type code.

  • Sample Query to List All Confirmation Types: SELECT confo_type FROM xtr.xtr_deal_confo_types ORDER BY 1;
  • Use in a Validation Join: This table is often referenced in WHERE clause subqueries or JOIN conditions to ensure that actions or details are only processed for valid, registered confirmation types.

Related Objects

The XTR_DEAL_CONFO_TYPES table is a central reference point for several key operational tables in the Treasury confirmation subsystem, as documented by its foreign key relationships. The CONFO_TYPE column is referenced by the following tables:

  • XTR_CONFIRMATION_ACTIONS: The ACTION_TYPE column in this table references XTR_DEAL_CONFO_TYPES, linking specific confirmation processing actions (e.g., print, transmit) to a valid confirmation type.
  • XTR_CONFIRMATION_DETAILS: The ACTION_TYPE column here also references this table, tying the detailed data populating a confirmation letter to its specific deal confirmation type.
  • XTR_LAYOUT_WHERE_CLAUSE: The ACTION_TYPE column references this table, associating conditional formatting or data selection rules (WHERE clauses) for report layouts with a particular confirmation type.

These relationships ensure that all confirmation-related data is governed by the master list defined in XTR_DEAL_CONFO_TYPES, maintaining referential integrity throughout the confirmation lifecycle.