Search Results zx_jurisdictions_tl_pk
Overview
The ZX_JURISDICTIONS_TL table is a core data object within the Oracle E-Business Tax (ZX) module for both EBS 12.1.1 and 12.2.2. It functions as a translation table, providing multilingual support (MLS) for tax jurisdiction definitions. Its primary role is to enable the storage, retrieval, and printing of jurisdiction names and descriptions in multiple languages, which is critical for global enterprises operating in regions with legal requirements for localized tax documentation. This table works in conjunction with its base table, ZX_JURISDICTIONS_B, to deliver a complete, language-aware representation of tax jurisdictions within the system.
Key Information Stored
The table stores translated text for jurisdiction attributes, keyed by the jurisdiction identifier and language. Based on the provided metadata, the critical columns include:
- TAX_JURISDICTION_ID: The unique identifier for the tax jurisdiction, serving as a foreign key to the ZX_JURISDICTIONS_B table. This column is part of the table's primary key.
- LANGUAGE: The language code (e.g., 'US' for American English, 'KO' for Korean) for the translated record. This column completes the primary key, ensuring a unique translation per jurisdiction per language.
- JURISDICTION_NAME (implied by standard TL table design): The translated name of the tax jurisdiction for the specified language.
- SOURCE_LANG (implied by standard MLS architecture): Typically indicates the original language in which the record was created.
The primary key constraint, ZX_JURISDICTIONS_TL_PK, is defined on TAX_JURISDICTION_ID and LANGUAGE, enforcing data integrity for translations.
Common Use Cases and Queries
A primary use case is generating tax reports or invoices in a user's preferred language. For instance, a French user would see jurisdiction names sourced from the French ('F') language records in this table. Common queries involve joining this table with its base table to retrieve a complete jurisdiction profile. A typical pattern for retrieving all Spanish translations for active jurisdictions would be:
- SELECT b.TAX_JURISDICTION_CODE, tl.JURISDICTION_NAME, tl.LANGUAGE
- FROM ZX_JURISDICTIONS_B b, ZX_JURISDICTIONS_TL tl
- WHERE b.TAX_JURISDICTION_ID = tl.TAX_JURISDICTION_ID
- AND tl.LANGUAGE = 'ES'
- AND b.ACTIVE_FLAG = 'Y';
Another critical scenario is data migration or setup, where this table is populated with translated values after the base jurisdiction data is loaded into ZX_JURISDICTIONS_B.
Related Objects
The ZX_JURISDICTIONS_TL table has a direct and essential relationship with its base table, as indicated by the shared primary key column.
- ZX_JURISDICTIONS_B: This is the primary related table. The TAX_JURISDICTION_ID column in ZX_JURISDICTIONS_TL is a foreign key referencing the TAX_JURISDICTION_ID in ZX_JURISDICTIONS_B. All translations are dependent on a corresponding record existing in this base table, which holds the non-translatable attributes and configuration.
This relationship ensures that every translation is anchored to a valid, configured tax jurisdiction within the E-Business Tax engine.
-
Table: ZX_JURISDICTIONS_TL
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_JURISDICTIONS_TL, object_name:ZX_JURISDICTIONS_TL, status:VALID, product: ZX - E-Business Tax , description: This table provides multilingual support (MLS) for each tax jurisdiction. MLS enables you to store and print data that you define in , implementation_dba_data: ZX.ZX_JURISDICTIONS_TL ,
-
Table: ZX_JURISDICTIONS_TL
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_JURISDICTIONS_TL, object_name:ZX_JURISDICTIONS_TL, status:VALID, product: ZX - E-Business Tax , description: This table provides multilingual support (MLS) for each tax jurisdiction. MLS enables you to store and print data that you define in , implementation_dba_data: ZX.ZX_JURISDICTIONS_TL ,