Search Results xtr_layout_values
Overview
The XTR_LAYOUT_VALUES table is a core data object within the Oracle E-Business Suite (EBS) Treasury (XTR) module. It functions as a repository for common variables used in the generation of confirmation templates. These templates are critical for producing standardized financial documents, such as deal confirmations and settlement advices, which communicate transaction details to counterparties. The table's role is to store the mapping between logical variable names and the actual data elements or formulas required to populate those variables within a template, thereby enabling dynamic and consistent document generation for treasury operations.
Key Information Stored
The table's structure is defined by its primary key and stores configuration data for template variables. The primary key consists of two columns: TEMPLATE_TYPE and FIELD_NAME. This design allows for the definition of distinct sets of variables for different types of confirmation documents. The FIELD_NAME column holds the identifier for the common variable. While the provided metadata does not list all columns, a typical implementation would include a column (often named FIELD_VALUE or similar) to store the actual value, SQL fragment, or reference that the variable name resolves to during the template rendering process. This value dictates what data is inserted into the document when the variable is called.
Common Use Cases and Queries
The primary use case is the automated generation of treasury confirmations. When a confirmation process runs for a specific TEMPLATE_TYPE, the system queries this table to resolve all associated FIELD_NAME variables. Common administrative queries include auditing the defined variables for a template or troubleshooting generation errors. A sample query to list all variables for a 'SWAP' confirmation template would be:
- SELECT field_name FROM xtr.xtr_layout_values WHERE template_type = 'SWAP';
For reporting, this table is often joined with transaction data tables or the related XTR_LAYOUT_WHERE_CLAUSE table to understand the complete template logic and data sourcing.
Related Objects
The most directly related object, as indicated by the foreign key, is the XTR_LAYOUT_WHERE_CLAUSE table. The foreign key from XTR_LAYOUT_VALUES.TEMPLATE_TYPE to XTR_LAYOUT_WHERE_CLAUSE suggests a relationship where template types defined in XTR_LAYOUT_VALUES have corresponding where clause definitions stored separately, likely to filter or specify data subsets for the template. This table is integral to the broader confirmation template engine within the XTR module and would be referenced by the various PL/SQL packages and programs responsible for document generation and treasury settlement workflows.
-
Table: XTR_LAYOUT_VALUES
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LAYOUT_VALUES, object_name:XTR_LAYOUT_VALUES, status:VALID, product: XTR - Treasury , description: Common variables for the confirmation templates , implementation_dba_data: XTR.XTR_LAYOUT_VALUES ,
-
Table: XTR_LAYOUT_VALUES
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LAYOUT_VALUES, object_name:XTR_LAYOUT_VALUES, status:VALID, product: XTR - Treasury , description: Common variables for the confirmation templates , implementation_dba_data: XTR.XTR_LAYOUT_VALUES ,
-
View: XTR_LAYOUT_VALUES_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LAYOUT_VALUES_V, object_name:XTR_LAYOUT_VALUES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LAYOUT_VALUES_V ,
-
View: XTR_LAYOUT_VALUES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:XTR.XTR_LAYOUT_VALUES_V, object_name:XTR_LAYOUT_VALUES_V, status:VALID, product: XTR - Treasury , implementation_dba_data: APPS.XTR_LAYOUT_VALUES_V ,
-
Table: XTR_LAYOUT_WHERE_CLAUSE
12.2.2
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LAYOUT_WHERE_CLAUSE, object_name:XTR_LAYOUT_WHERE_CLAUSE, status:VALID, product: XTR - Treasury , description: SQL select statement and where clause for each template type , implementation_dba_data: XTR.XTR_LAYOUT_WHERE_CLAUSE ,
-
Table: XTR_LAYOUT_WHERE_CLAUSE
12.1.1
owner:XTR, object_type:TABLE, fnd_design_data:XTR.XTR_LAYOUT_WHERE_CLAUSE, object_name:XTR_LAYOUT_WHERE_CLAUSE, status:VALID, product: XTR - Treasury , description: SQL select statement and where clause for each template type , implementation_dba_data: XTR.XTR_LAYOUT_WHERE_CLAUSE ,