Search Results jai_ap_tds_vendor_hdrs




Overview

The JAI_AP_TDS_VENDOR_HDRS table is a core data object within the Oracle E-Business Suite Asia/Pacific (JA) Localizations module, specifically designed for the Indian Tax Deducted at Source (TDS) functionality. Its primary role is to store and manage default TDS configurations at the vendor level within the Accounts Payable (AP) system. The table acts as a central repository for linking a vendor and their specific site to a default TDS section and corresponding tax rate, ensuring consistent and automated tax withholding during the invoice and payment processes in Oracle EBS releases 12.1.1 and 12.2.2.

Key Information Stored

The table's structure is defined by a composite primary key and critical foreign key relationships. The primary key consists of VENDOR_ID and VENDOR_SITE_ID, enforcing a unique TDS configuration per vendor site. Essential columns include VENDOR_ID, which references the trading entity in HZ_PARTIES, and VENDOR_SITE_ID, linking to the specific physical or remittance address in HZ_PARTY_SITES. The TAX_ID column is a foreign key to JAI_CMN_TAXES_ALL, storing the identifier for the default TDS tax record that dictates the applicable section and rate. Additional columns, inferred from standard practice, would typically store creation and last update dates, user IDs, and potentially flags for active status or certification details.

Common Use Cases and Queries

This table is pivotal during invoice entry and payment processing, where the system references it to automatically propose the correct TDS deduction based on the vendor and site. Common operational and reporting queries include identifying vendors missing a default TDS setup or auditing configured rates. A typical SQL pattern retrieves the default tax information for a specific vendor site:

  • SELECT vh.vendor_id, vh.vendor_site_id, vh.tax_id, t.tax_name FROM jai_ap_tds_vendor_hdrs vh, jai_cmn_taxes_all t WHERE vh.tax_id = t.tax_id AND vh.vendor_id = :p_vendor_id;

Another common use case involves data validation scripts to ensure all active vendor sites used in procure-to-pay cycles have a corresponding record in this table to prevent processing errors.

Related Objects

JAI_AP_TDS_VENDOR_HDRS is integrally connected to several foundational and localization tables through documented foreign key constraints. Its primary relationship is with the Trading Community Architecture (TCA) tables for vendor master data: HZ_PARTIES (via VENDOR_ID) and HZ_PARTY_SITES (via VENDOR_SITE_ID). The critical link to the tax engine is established through the JAI_CMN_TAXES_ALL table via the TAX_ID column, which holds the definitive TDS tax definitions. This table is also a likely parent to transactional TDS detail tables (such as those storing invoice-level withholding calculations), though these are not explicitly listed in the provided metadata. The defined relationships ensure data integrity and enable joins for comprehensive vendor TDS reporting.