Search Results zx_content_sources




Overview

The ZX_CONTENT_SOURCES table is a core repository within the Oracle E-Business Tax (ZX) module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It is designed to manage the metadata for external tax content providers, such as Vertex or Thomson Reuters, that supply standardized tax rates, rules, and jurisdictional data. The table's primary role is to store the mapping between a specific tax regime and the various sources from which configuration content for that regime can be loaded and applied. This enables organizations to leverage and integrate third-party tax content alongside custom-defined tax rules within a unified E-Business Tax framework, ensuring accurate and up-to-date tax determination.

Key Information Stored

While the full column list is not detailed in the provided metadata, the primary and foreign key relationships define its critical structure. The table's composite primary key consists of PROVIDER_ID and STANDARD_REGIME_CODE. The PROVIDER_ID column identifies the external content provider, typically linked to a party tax profile. The STANDARD_REGIME_CODE is the standard code for the tax regime (e.g., US_SALES_TAX) for which the provider supplies content. Additional columns, implied by the foreign keys and purpose, likely store details such as the provider's specific regime code (PROVIDER_REGIME_CODE), source type, effective dates, and synchronization status, forming a complete record for each content source-regime combination.

Common Use Cases and Queries

This table is central to tax content management operations. A common use case is auditing which external providers are configured for specific tax regimes, or identifying all regimes supported by a particular provider. Support and implementation consultants frequently query this table to troubleshoot content loading issues or verify setup. A typical diagnostic query would join to related regime and party tables:

  • SELECT zcs.standard_regime_code, zr.tax_regime_code, zptp.party_name
    FROM zx_content_sources zcs
    JOIN zx_regimes_b zr ON zcs.standard_regime_code = zr.tax_regime_code
    JOIN zx_party_tax_profile zptp ON zcs.provider_id = zptp.party_tax_profile_id
    WHERE zptp.party_name LIKE '%Vertex%';

This query helps map the standard regime codes used by E-Business Tax to the provider's internal codes and identifies the associated provider party.

Related Objects

The ZX_CONTENT_SOURCES table maintains defined foreign key relationships with other fundamental E-Business Tax tables, as documented in the metadata:

  • ZX_PARTY_TAX_PROFILE: Linked via PROVIDER_ID. This relationship ties the content source to the specific provider's tax profile, storing the provider's legal entity details.
  • ZX_REGIMES_B (First Relationship): Linked via PROVIDER_REGIME_CODE to TAX_REGIME_CODE. This maps the provider's own code for the regime to the standard regime.
  • ZX_REGIMES_B (Second Relationship): Linked via STANDARD_REGIME_CODE to TAX_REGIME_CODE. This is the primary link to the standard tax regime definition within EBS.

These relationships ensure data integrity and are essential for any join query involving provider content and regime definitions.

  • Table: ZX_CONTENT_SOURCES 12.2.2

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_CONTENT_SOURCES,  object_name:ZX_CONTENT_SOURCES,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores multiple sources from which tax configuration content can be loaded. Each row stores details about a content source for a specific regime. ,  implementation_dba_data: ZX.ZX_CONTENT_SOURCES

  • Table: ZX_CONTENT_SOURCES 12.1.1

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_CONTENT_SOURCES,  object_name:ZX_CONTENT_SOURCES,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores multiple sources from which tax configuration content can be loaded. Each row stores details about a content source for a specific regime. ,  implementation_dba_data: ZX.ZX_CONTENT_SOURCES

  • Table: ZX_REGIMES_B 12.2.2

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_REGIMES_B,  object_name:ZX_REGIMES_B,  status:VALID,  product: ZX - E-Business Taxdescription: This table defines and describes Tax Regime and related attributes. There will be one row per distinct tax regime. There are default entry columns to facilitate data entry process. ,  implementation_dba_data: ZX.ZX_REGIMES_B

  • Table: ZX_REGIMES_B 12.1.1

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_REGIMES_B,  object_name:ZX_REGIMES_B,  status:VALID,  product: ZX - E-Business Taxdescription: This table defines and describes Tax Regime and related attributes. There will be one row per distinct tax regime. There are default entry columns to facilitate data entry process. ,  implementation_dba_data: ZX.ZX_REGIMES_B

  • Table: ZX_PARTY_TAX_PROFILE 12.2.2

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_PARTY_TAX_PROFILE,  object_name:ZX_PARTY_TAX_PROFILE,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores tax profiles for third parties, third party sites, third party providers, first party legal entities, first party legal establishments, operating units and tax authorities. ,  implementation_dba_data: ZX.ZX_PARTY_TAX_PROFILE

  • Table: ZX_PARTY_TAX_PROFILE 12.1.1

    owner:ZX,  object_type:TABLE,  fnd_design_data:ZX.ZX_PARTY_TAX_PROFILE,  object_name:ZX_PARTY_TAX_PROFILE,  status:VALID,  product: ZX - E-Business Taxdescription: This table stores tax profiles for third parties, third party sites, third party providers, first party legal entities, first party legal establishments, operating units and tax authorities. ,  implementation_dba_data: ZX.ZX_PARTY_TAX_PROFILE