Search Results zx_taxes_tl




Overview

The ZX_TAXES_TL table is a core component of the E-Business Tax (ZX) module within Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It functions as a translation table, providing multilingual support (MLS) for tax definitions. Its primary role is to store language-specific textual attributes for tax records, enabling the system to store, display, and print tax-related data in multiple languages. This table works in conjunction with its base table, ZX_TAXES_B, which holds the language-independent transactional data. The existence of this table is critical for global implementations where tax names and descriptions must be presented in the language of the transaction or report.

Key Information Stored

The table stores translated versions of descriptive columns for a tax record. Its structure is defined by a composite primary key consisting of TAX_ID and LANGUAGE. The TAX_ID column is a foreign key that links each translation row back to a specific master tax record in the ZX_TAXES_B table. The LANGUAGE column holds the language code (e.g., 'US' for American English, 'FR' for French) for the translation. While the specific descriptive columns are not detailed in the provided metadata, typical translation tables in EBS include columns such as TAX_NAME, DESCRIPTION, and potentially other user-facing text fields. These columns hold the translated values corresponding to the specified LANGUAGE for the given TAX_ID.

Common Use Cases and Queries

The primary use case is retrieving a tax's name or description in a specific language for user interfaces, reports, and transactional documents. A common SQL pattern joins this table with ZX_TAXES_B to fetch a complete, language-specific tax record. For example, to retrieve the French name for all taxes, a query might be:

  • SELECT b.tax_regime_code, tl.tax_name, tl.description FROM zx_taxes_b b, zx_taxes_tl tl WHERE b.tax_id = tl.tax_id AND tl.language = 'FR';

Another critical use is during data migration or setup, where translation data must be populated for each installed language. Reporting on the completeness of translations for a given set of taxes is also a frequent administrative task, ensuring all required languages are populated for global compliance.

Related Objects

The ZX_TAXES_TL table has a direct and essential relationship with the ZX_TAXES_B table, as defined by its foreign key constraint. ZX_TAXES_B.TAX_ID is the parent key for ZX_TAXES_TL.TAX_ID. This table is also referenced by various E-Business Tax application programming interfaces (APIs) and user interfaces that manage tax setup. While not listed in the metadata, it is common for public views (such as ZX_TAXES_VL, where 'VL' typically denotes "View Localized") to be built upon this table and its base table to simplify querying translated data. Any programmatic or reporting logic requiring a tax description in a user's session language will ultimately query this table.

  • Table: ZX_TAXES_TL 12.1.1

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_TAXES_TL,  object_name:ZX_TAXES_TL,  status:VALID,  product: ZX - E-Business Taxdescription: This table provides multilingual support (MLS) for each tax. MLS enables you to store and print data that you define in multiple languages. ,  implementation_dba_data: ZX.ZX_TAXES_TL

  • Table: ZX_TAXES_TL 12.2.2

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_TAXES_TL,  object_name:ZX_TAXES_TL,  status:VALID,  product: ZX - E-Business Taxdescription: This table provides multilingual support (MLS) for each tax. MLS enables you to store and print data that you define in multiple languages. ,  implementation_dba_data: ZX.ZX_TAXES_TL

  • Table: ZX_TAXES_B 12.1.1

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_TAXES_B,  object_name:ZX_TAXES_B,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores taxes for multiple configuration owners. Each row stores a tax for a specific regime and configuration owner. ,  implementation_dba_data: ZX.ZX_TAXES_B

  • Table: ZX_TAXES_B 12.2.2

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_TAXES_B,  object_name:ZX_TAXES_B,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores taxes for multiple configuration owners. Each row stores a tax for a specific regime and configuration owner. ,  implementation_dba_data: ZX.ZX_TAXES_B