Search Results zx_exemptions
Overview
The ZX_EXEMPTIONS table is a core data repository within the ZX (E-Business Tax) module of Oracle E-Business Suite releases 12.1.1 and 12.2.2. It is the definitive system of record for storing and managing tax exemption rules. Its primary role is to define the conditions under which a party, a party site, or an inventory item is wholly or partially exempt from a specific tax rate. By centralizing exemption logic, this table enables the E-Business Tax engine to accurately calculate tax liabilities during transaction processing, ensuring compliance with complex tax regulations that vary by jurisdiction, product, and entity.
Key Information Stored
Each record in ZX_EXEMPTIONS represents a unique exemption rule. The table's structure links an exemption to a specific tax regime, tax, and tax rate via the DET_FACTOR_TEMPL_CODE, which references the ZX_DET_FACTOR_TEMPL_B table. The exemption is then applied to a specific entity, identified by columns such as PARTY_ID, PARTY_SITE_ID, PRODUCT_ID, and INVENTORY_ORG_ID. The critical TAX_EXEMPTION_PCT column stores the exemption percentage (e.g., 100 for a full exemption, 50 for a 50% reduction). Other essential columns include the primary key TAX_EXEMPTION_ID, effective date ranges (EFFECTIVE_FROM, EFFECTIVE_TO), and control attributes like ENABLED_FLAG and EXCLUSIVE_FLAG, which determine the rule's activity and precedence in relation to other exemptions.
Common Use Cases and Queries
A primary use case is troubleshooting tax calculation errors by verifying applicable exemptions for a given transaction. Analysts often query this table to audit exemption setups or generate compliance reports. Common SQL patterns include identifying all exemptions for a specific item or party, and validating active exemptions for a tax rate.
- Find all active exemptions for a specific inventory item:
SELECT * FROM zx_exemptions WHERE product_id = <item_id> AND enabled_flag = 'Y' AND SYSDATE BETWEEN effective_from AND NVL(effective_to, SYSDATE); - List exemptions for a customer party and site:
SELECT tax_exemption_id, tax_exemption_pct, det_factor_templ_code FROM zx_exemptions WHERE party_id = <cust_id> AND party_site_id = <site_id>;
Related Objects
ZX_EXEMPTIONS is a central hub within the E-Business Tax schema, with key relationships to transactional and master data tables. As per the provided metadata, its primary foreign key relationships are:
- ZX_LINES and ZX_LINES_SUMMARY: These transactional tables reference TAX_EXEMPTION_ID to record which exemption was applied to a calculated tax line, creating a critical audit trail.
- ZX_DET_FACTOR_TEMPL_B: Linked via DET_FACTOR_TEMPL_CODE, this table provides the detailed tax rate to which the exemption percentage is applied.
- MTL_SYSTEM_ITEMS_B and HR_ALL_ORGANIZATION_UNITS: These references tie exemptions to specific inventory items and the organizations that own them, enabling product- and org-level tax rules.
-
Table: ZX_EXEMPTIONS
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_EXEMPTIONS, object_name:ZX_EXEMPTIONS, status:VALID, product: ZX - E-Business Tax , description: This table stores tax exemptions for parties, party sites and items. Each record contains an exemption percentage of a specific tax rate for a party, party site or an item. , implementation_dba_data: ZX.ZX_EXEMPTIONS ,
-
Table: ZX_EXEMPTIONS
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_EXEMPTIONS, object_name:ZX_EXEMPTIONS, status:VALID, product: ZX - E-Business Tax , description: This table stores tax exemptions for parties, party sites and items. Each record contains an exemption percentage of a specific tax rate for a party, party site or an item. , implementation_dba_data: ZX.ZX_EXEMPTIONS ,
-
Table: ZX_DET_FACTOR_TEMPL_B
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_DET_FACTOR_TEMPL_B, object_name:ZX_DET_FACTOR_TEMPL_B, status:VALID, product: ZX - E-Business Tax , description: This table stores templates for usage of determining factors. Each record represents one determining factor template. , implementation_dba_data: ZX.ZX_DET_FACTOR_TEMPL_B ,
-
Table: ZX_DET_FACTOR_TEMPL_B
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_DET_FACTOR_TEMPL_B, object_name:ZX_DET_FACTOR_TEMPL_B, status:VALID, product: ZX - E-Business Tax , description: This table stores templates for usage of determining factors. Each record represents one determining factor template. , implementation_dba_data: ZX.ZX_DET_FACTOR_TEMPL_B ,
-
Table: ZX_LINES_SUMMARY
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_LINES_SUMMARY, object_name:ZX_LINES_SUMMARY, status:VALID, product: ZX - E-Business Tax , description: This table stores the summarized tax lines for transactions of multiple event classes. , implementation_dba_data: ZX.ZX_LINES_SUMMARY ,
-
Table: ZX_LINES_SUMMARY
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_LINES_SUMMARY, object_name:ZX_LINES_SUMMARY, status:VALID, product: ZX - E-Business Tax , description: This table stores the summarized tax lines for transactions of multiple event classes. , implementation_dba_data: ZX.ZX_LINES_SUMMARY ,
-
Table: ZX_LINES
12.1.1
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_LINES, object_name:ZX_LINES, status:VALID, product: ZX - E-Business Tax , description: This table stores detail tax lines for transactions of multiple event classes. , implementation_dba_data: ZX.ZX_LINES ,
-
Table: ZX_LINES
12.2.2
owner:ZX, object_type:TABLE, fnd_design_data:ZX.ZX_LINES, object_name:ZX_LINES, status:VALID, product: ZX - E-Business Tax , description: This table stores detail tax lines for transactions of multiple event classes. , implementation_dba_data: ZX.ZX_LINES ,