Search Results jai_cmn_taxes_all
Overview
The JAI_CMN_TAXES_ALL table is a core master data object within the Oracle E-Business Suite Asia/Pacific Localizations module (Product JA). It serves as the central repository for defining and storing localization-specific tax regimes, particularly those mandated for countries like India. Its primary role is to establish and maintain the fundamental tax codes and rules that drive automated tax calculations, withholding (TDS), and reporting within localized financial transactions for both Payables (AP) and Receivables (AR). The table's "ALL" suffix indicates it is a multi-organization access enabled (MOAC) table, storing data partitioned by the ORG_ID column.
Key Information Stored
While the provided metadata does not list all columns, the primary and foreign key relationships reveal critical data points. The table is uniquely identified by TAX_ID (primary key) and TAX_NAME (unique key). Essential stored information includes the linkage to the general ledger via TAX_ACCOUNT_ID, which references GL_CODE_COMBINATIONS to determine the accounting flexfield for tax liability. For withholding tax scenarios, it stores vendor details through VENDOR_ID and VENDOR_SITE_ID, referencing HZ_PARTIES and HZ_PARTY_SITES respectively. Other typical columns in such a master table would include effective dates, tax rates, tax types (e.g., VAT, TDS, WCT), and jurisdiction indicators, which configure the tax's behavior across the localized transaction lifecycle.
Common Use Cases and Queries
This table is central to localization-specific tax processing. Common operational and reporting use cases include validating tax setup for a transaction, identifying the GL account for a specific tax, and analyzing all defined taxes for a legal entity. Sample SQL patterns often involve joining to related transaction tables.
- Tax Setup Validation:
SELECT tax_id, tax_name FROM jai_cmn_taxes_all WHERE org_id = :p_org_id AND enabled_flag = 'Y' ORDER BY tax_name; - Identifying Tax GL Account:
SELECT jct.tax_name, gcc.segment1, gcc.segment2 FROM jai_cmn_taxes_all jct, gl_code_combinations gcc WHERE jct.tax_account_id = gcc.code_combination_id AND jct.tax_id = :p_tax_id; - Transaction Tax Analysis: Joining to transaction detail tables like JAI_AR_TRX_TAX_LINES to report on applied taxes for invoices.
Related Objects
JAI_CMN_TAXES_ALL has extensive relationships, acting as a parent table for numerous transactional and setup entities within the localization, particularly for Indian Tax Deducted at Source (TDS) and Works Contract Tax (WCT). Key child tables, as per the foreign key metadata, include:
- Payables (AP) TDS Processing: JAI_AP_TDS_INVOICES, JAI_AP_TDS_PAYMENTS, JAI_AP_TDS_PREPAYMENTS, JAI_AP_TDS_VENDOR_HDRS, JAI_AP_ETDS_T.
- Payables Tax Matching: JAI_AP_MATCH_INV_TAXES, JAI_AP_TDS_INV_TAXES.
- Receivables (AR) Tax Processing: JAI_AR_TRX_TAX_LINES, JAI_AR_TRX_INS_LINES_T.
- Core Setup: It references master tables GL_CODE_COMBINATIONS and HZ_PARTIES for account and third-party data.
This network of dependencies underscores its critical role as the authoritative source of tax definitions for the JA localization module in both Oracle EBS 12.1.1 and 12.2.2.
-
Table: JAI_CMN_TAXES_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXES_ALL, object_name:JAI_CMN_TAXES_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Master table for Localization Taxes , implementation_dba_data: JA.JAI_CMN_TAXES_ALL ,
-
Table: JAI_CMN_TAXES_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXES_ALL, object_name:JAI_CMN_TAXES_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Master table for Localization Taxes , implementation_dba_data: JA.JAI_CMN_TAXES_ALL ,
-
Table: JAI_AP_TDS_PREPAYMENTS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_PREPAYMENTS, object_name:JAI_AP_TDS_PREPAYMENTS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of TDS processing for prepayment application and unapplication , implementation_dba_data: JA.JAI_AP_TDS_PREPAYMENTS ,
-
Table: JAI_AP_TDS_PREPAYMENTS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_PREPAYMENTS, object_name:JAI_AP_TDS_PREPAYMENTS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of TDS processing for prepayment application and unapplication , implementation_dba_data: JA.JAI_AP_TDS_PREPAYMENTS ,
-
Table: JAI_RCV_RGM_CLAIMS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_RGM_CLAIMS, object_name:JAI_RCV_RGM_CLAIMS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details of receipt claims by regime. , implementation_dba_data: JA.JAI_RCV_RGM_CLAIMS ,
-
Table: JAI_AR_SUP_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_SUP_TAXES, object_name:JAI_AR_SUP_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores SuppTransaction details of the individual taxes with the Orig INV dtls. , implementation_dba_data: JA.JAI_AR_SUP_TAXES ,
-
Table: JAI_RCV_RGM_CLAIMS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_RGM_CLAIMS, object_name:JAI_RCV_RGM_CLAIMS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details of receipt claims by regime. , implementation_dba_data: JA.JAI_RCV_RGM_CLAIMS ,
-
Table: JAI_AP_TDS_INV_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_TAXES, object_name:JAI_AP_TDS_INV_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of all the TDS taxes that are applicable on an invoice. , implementation_dba_data: JA.JAI_AP_TDS_INV_TAXES ,
-
View: JAI_PO_RCV_TAXES_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_PO_RCV_TAXES_V, object_name:JAI_PO_RCV_TAXES_V, status:VALID, product: JA - Asia/Pacific Localizations , description: View for PO RCV taxes , implementation_dba_data: APPS.JAI_PO_RCV_TAXES_V ,
-
Table: JAI_AP_TDS_INV_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_TAXES, object_name:JAI_AP_TDS_INV_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of all the TDS taxes that are applicable on an invoice. , implementation_dba_data: JA.JAI_AP_TDS_INV_TAXES ,
-
View: JAI_CMN_CESS_TRXS_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_CMN_CESS_TRXS_V, object_name:JAI_CMN_CESS_TRXS_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_CMN_CESS_TRXS_V ,
-
View: JAI_CMN_CESS_TRXS_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_CMN_CESS_TRXS_V, object_name:JAI_CMN_CESS_TRXS_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_CMN_CESS_TRXS_V ,
-
Table: JAI_CMN_TAX_CTG_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTG_LINES, object_name:JAI_CMN_TAX_CTG_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the tax lines for defined tax categories , implementation_dba_data: JA.JAI_CMN_TAX_CTG_LINES ,
-
Table: JAI_CRM_QUOTE_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CRM_QUOTE_TAXES, object_name:JAI_CRM_QUOTE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the quote tax information. , implementation_dba_data: JA.JAI_CRM_QUOTE_TAXES ,
-
Table: JAI_RETRO_TAX_CHANGES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RETRO_TAX_CHANGES, object_name:JAI_RETRO_TAX_CHANGES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table is used to store the Retroactive changes made for document taxes , implementation_dba_data: JA.JAI_RETRO_TAX_CHANGES ,
-
Table: JAI_CRM_QUOTE_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CRM_QUOTE_TAXES, object_name:JAI_CRM_QUOTE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the quote tax information. , implementation_dba_data: JA.JAI_CRM_QUOTE_TAXES ,
-
Table: JAI_OM_WSH_LINE_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_WSH_LINE_TAXES, object_name:JAI_OM_WSH_LINE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information for the tax lines corresponding to the picking line. , implementation_dba_data: JA.JAI_OM_WSH_LINE_TAXES ,
-
Table: JAI_OM_OE_RMA_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_RMA_TAXES, object_name:JAI_OM_OE_RMA_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds the tax details associated with a return order. , implementation_dba_data: JA.JAI_OM_OE_RMA_TAXES ,
-
Table: JAI_CMN_DOCUMENT_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_DOCUMENT_TAXES, object_name:JAI_CMN_DOCUMENT_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores the taxes for various India Localization transactions , implementation_dba_data: JA.JAI_CMN_DOCUMENT_TAXES ,
-
Table: JAI_RCV_TP_INV_DETAILS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_TP_INV_DETAILS, object_name:JAI_RCV_TP_INV_DETAILS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores Invoice Lines created as part of Third Party Receipt Taxes , implementation_dba_data: JA.JAI_RCV_TP_INV_DETAILS ,
-
Table: JAI_AP_TDS_INV_CANCELS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_CANCELS, object_name:JAI_AP_TDS_INV_CANCELS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of TDS Cancel processing when an invoice having TDS is cancelled. , implementation_dba_data: JA.JAI_AP_TDS_INV_CANCELS ,
-
Table: JAI_CMN_MATCH_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MATCH_TAXES, object_name:JAI_CMN_MATCH_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores recomputed excise tax based on Receipt matching with Sales shipments , implementation_dba_data: JA.JAI_CMN_MATCH_TAXES ,
-
Table: JAI_CMN_TAX_CTG_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTG_LINES, object_name:JAI_CMN_TAX_CTG_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the tax lines for defined tax categories , implementation_dba_data: JA.JAI_CMN_TAX_CTG_LINES ,
-
Table: JAI_PO_REQ_LINE_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQ_LINE_TAXES, object_name:JAI_PO_REQ_LINE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the data pertaining to the Taxes in the Requisition. , implementation_dba_data: JA.JAI_PO_REQ_LINE_TAXES ,
-
Table: JAI_AR_TRX_TAX_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_TAX_LINES, object_name:JAI_AR_TRX_TAX_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information about the actual taxes applicable for the invoice line. , implementation_dba_data: JA.JAI_AR_TRX_TAX_LINES ,
-
Table: JAI_RGM_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_TAXES, object_name:JAI_RGM_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores tax details for transactions having TCS tax type. , implementation_dba_data: JA.JAI_RGM_TAXES ,
-
Table: JAI_RGM_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RGM_TAXES, object_name:JAI_RGM_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores tax details for transactions having TCS tax type. , implementation_dba_data: JA.JAI_RGM_TAXES ,
-
Table: JAI_AR_TRX_TAX_CALC_T
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_TAX_CALC_T, object_name:JAI_AR_TRX_TAX_CALC_T, status:VALID, product: JA - Asia/Pacific Localizations , description: TempTable used for tax calc of the new price,new assessable price for suppl inv. , implementation_dba_data: JA.JAI_AR_TRX_TAX_CALC_T ,
-
Table: JAI_PO_REQUEST_T
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQUEST_T, object_name:JAI_PO_REQUEST_T, status:VALID, product: JA - Asia/Pacific Localizations , description: Used by JAINPOCR concurrent for defaulting taxes , implementation_dba_data: JA.JAI_PO_REQUEST_T ,
-
Table: JAI_RETRO_TAX_CHANGES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RETRO_TAX_CHANGES, object_name:JAI_RETRO_TAX_CHANGES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table is used to store the Retroactive changes made for document taxes , implementation_dba_data: JA.JAI_RETRO_TAX_CHANGES ,
-
Table: JAI_CMN_DOCUMENT_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_DOCUMENT_TAXES, object_name:JAI_CMN_DOCUMENT_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores the taxes for various India Localization transactions , implementation_dba_data: JA.JAI_CMN_DOCUMENT_TAXES ,
-
Table: JAI_AP_TDS_VENDOR_HDRS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_VENDOR_HDRS, object_name:JAI_AP_TDS_VENDOR_HDRS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores TDS info against a vendor including the default section and tax. , implementation_dba_data: JA.JAI_AP_TDS_VENDOR_HDRS ,
-
Table: JAI_AP_TDS_VENDOR_HDRS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_VENDOR_HDRS, object_name:JAI_AP_TDS_VENDOR_HDRS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores TDS info against a vendor including the default section and tax. , implementation_dba_data: JA.JAI_AP_TDS_VENDOR_HDRS ,
-
Table: JAI_OM_WSH_LINE_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_WSH_LINE_TAXES, object_name:JAI_OM_WSH_LINE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information for the tax lines corresponding to the picking line. , implementation_dba_data: JA.JAI_OM_WSH_LINE_TAXES ,
-
Table: JAI_AP_TDS_PAYMENTS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_PAYMENTS, object_name:JAI_AP_TDS_PAYMENTS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the details of TDS challan for payments to TDS authority. , implementation_dba_data: JA.JAI_AP_TDS_PAYMENTS ,
-
Table: JAI_OM_OE_RMA_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_RMA_TAXES, object_name:JAI_OM_OE_RMA_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds the tax details associated with a return order. , implementation_dba_data: JA.JAI_OM_OE_RMA_TAXES ,
-
Table: JAI_CMN_MATCH_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MATCH_TAXES, object_name:JAI_CMN_MATCH_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores recomputed excise tax based on Receipt matching with Sales shipments , implementation_dba_data: JA.JAI_CMN_MATCH_TAXES ,
-
Table: JAI_RCV_TP_INV_DETAILS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_TP_INV_DETAILS, object_name:JAI_RCV_TP_INV_DETAILS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores Invoice Lines created as part of Third Party Receipt Taxes , implementation_dba_data: JA.JAI_RCV_TP_INV_DETAILS ,
-
Table: JAI_AP_TDS_INVOICES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INVOICES, object_name:JAI_AP_TDS_INVOICES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores all TDS invoices generated at invoice validate against parent invoice. , implementation_dba_data: JA.JAI_AP_TDS_INVOICES ,
-
Table: JAI_AP_TDS_INVOICES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INVOICES, object_name:JAI_AP_TDS_INVOICES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores all TDS invoices generated at invoice validate against parent invoice. , implementation_dba_data: JA.JAI_AP_TDS_INVOICES ,
-
Table: JAI_AR_TRX_INS_LINES_T
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_INS_LINES_T, object_name:JAI_AR_TRX_INS_LINES_T, status:VALID, product: JA - Asia/Pacific Localizations , description: Table holds tax records after auto invoice, manual invoice is saved. , implementation_dba_data: JA.JAI_AR_TRX_INS_LINES_T ,
-
Table: JAI_PO_REQ_LINE_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQ_LINE_TAXES, object_name:JAI_PO_REQ_LINE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the data pertaining to the Taxes in the Requisition. , implementation_dba_data: JA.JAI_PO_REQ_LINE_TAXES ,
-
Table: JAI_AR_TRX_TAX_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_TAX_LINES, object_name:JAI_AR_TRX_TAX_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information about the actual taxes applicable for the invoice line. , implementation_dba_data: JA.JAI_AR_TRX_TAX_LINES ,
-
View: JAI_RCV_RGM_TAX_V
12.1.1
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_TAX_V, object_name:JAI_RCV_RGM_TAX_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RGM_TAX_V ,
-
Table: JAI_PO_REQUEST_T
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQUEST_T, object_name:JAI_PO_REQUEST_T, status:VALID, product: JA - Asia/Pacific Localizations , description: Used by JAINPOCR concurrent for defaulting taxes , implementation_dba_data: JA.JAI_PO_REQUEST_T ,
-
Table: JAI_AP_TDS_INV_CANCELS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_INV_CANCELS, object_name:JAI_AP_TDS_INV_CANCELS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of TDS Cancel processing when an invoice having TDS is cancelled. , implementation_dba_data: JA.JAI_AP_TDS_INV_CANCELS ,
-
Table: JAI_AP_TDS_F16_HDRS_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_F16_HDRS_ALL, object_name:JAI_AP_TDS_F16_HDRS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Header information for TDS certificates. , implementation_dba_data: JA.JAI_AP_TDS_F16_HDRS_ALL ,
-
Table: JAI_AR_TRX_INS_LINES_T
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_INS_LINES_T, object_name:JAI_AR_TRX_INS_LINES_T, status:VALID, product: JA - Asia/Pacific Localizations , description: Table holds tax records after auto invoice, manual invoice is saved. , implementation_dba_data: JA.JAI_AR_TRX_INS_LINES_T ,
-
View: JAI_RCV_RGM_TAX_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_RCV_RGM_TAX_V, object_name:JAI_RCV_RGM_TAX_V, status:VALID, product: JA - Asia/Pacific Localizations , implementation_dba_data: APPS.JAI_RCV_RGM_TAX_V ,
-
Table: JAI_RCV_LINE_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_RCV_LINE_TAXES, object_name:JAI_RCV_LINE_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: This Table holds the Information of the Receipt Taxes. , implementation_dba_data: JA.JAI_RCV_LINE_TAXES ,