Search Results jai_cmn_tax_ctgs_all
Overview
JAI_CMN_TAX_CTGS_ALL is a transactional and setup table owned by the JA schema within the Oracle E-Business Suite Asia/Pacific Localizations module (product code JA). It stores tax categories and maintains the link between those categories and Excise item classes. In EBS 12.1.1 and 12.2.2, this object functions as the central definition repository from which India localization (and broader Asia/Pacific) tax determination logic derives tax treatment for inventory, purchasing, order management, receivables, payables, and shipping transactions.
The table is multi-organization aware through its ORG_ID column, which carries a foreign key to HR_ALL_ORGANIZATION_UNITS. Every row is uniquely identified by the surrogate primary key TAX_CATEGORY_ID, generated under the constraint JAI_CMN_TAX_CTGS_ALL_PK. From a Data Vault modeling perspective, the heuristic classification for this object is hub-leaning: it carries the stable business key for a tax category and is referenced by a large set of surrounding tables as a foreign-key target. Analytical models that normalize the JAI tax domain could reasonably treat JAI_CMN_TAX_CTGS_ALL as a hub, with descriptive attributes such as names, flags, and effective rates distributed as satellites.
Key Information Stored
The table contains 16 documented columns. The most significant are:
- TAX_CATEGORY_ID — surrogate primary key; the value propagated into all downstream transaction tables.
- TAX_CATEGORY_NAME and TAX_CATEGORY_DESC — the user-facing identifier and description of the tax category.
- ITEM_CLASS_CD — links the tax category to its associated Excise item class, the core India-localization concept this table was designed to capture.
- TAX_CLASSIFICATION — classifies the tax treatment applied to the category.
- INTER_STATE_FLAG — indicates whether the category applies to inter-state transactions, a key driver for CST vs. local tax determination.
- EFFECTIVE_TDS_RATE — the withholding (TDS) rate effective for the category.
- START_DATE and END_DATE — date-range effectiveness controlling when the category is active.
- ORG_ID — operating unit / organization identifier, foreign key to
HR_ALL_ORGANIZATION_UNITS. - OBJECT_VERSION_NUMBER — optimistic locking column used by the OAF/Forms-based maintenance UI.
- CREATION_DATE, CREATED_BY, LAST_UPDATE_DATE, LAST_UPDATED_BY, LAST_UPDATE_LOGIN — standard WHO audit columns.
Only TAX_CATEGORY_ID is documented as a unique index (business-key candidate) via JAI_CMN_TAX_CTGS_ALL_PK; no separate natural-key unique constraint is documented, so the surrogate remains the definitive identifier.
Common Use Cases and Queries
Typical scenarios include validating tax-category setups before go-live, reconciling transaction-level tax values, and reporting excise/TDS exposure. A common pattern joins the category definition to a transaction table:
SELECT c.TAX_CATEGORY_ID, c.TAX_CATEGORY_NAME, c.TAX_CLASSIFICATION,
c.INTER_STATE_FLAG, c.EFFECTIVE_TDS_RATE
FROM JA.JAI_CMN_TAX_CTGS_ALL c
WHERE c.ORG_ID = :p_org_id
AND TRUNC(SYSDATE) BETWEEN c.START_DATE AND NVL(c.END_DATE, TRUNC(SYSDATE));
A second pattern resolves categories referenced on invoice lines:
SELECT l.INVOICE_LINE_ID, x.TAX_CATEGORY_NAME FROM JA.JAI_AP_INVOICE_LINES l, JA.JAI_CMN_TAX_CTGS_ALL x WHERE l.TAX_CATEGORY_ID = x.TAX_CATEGORY_ID;
Reporting teams also use the table to audit inter-state flags against tax classification, and to detect overlapping effective-date ranges within the same organization.
Related Objects
The table is a heavily referenced parent, as the foreign-key relationships demonstrate:
- JAI_AP_INVOICE_LINES — references
TAX_CATEGORY_IDfor AP invoice tax lines. - JAI_AP_TDS_THHOLD_TAXES — withholding tax setup keyed by
TAX_CATEGORY_ID. - JAI_AR_TRX_LINES — receivables transaction line tax category.
- JAI_CMN_TAX_CTG_LINES — detail lines that depend on
TAX_CATEGORY_ID. - JAI_INV_ITM_TAXCTG_DTLS — inventory item-to-tax-category mapping.
- JAI_OM_OE_SO_LINES and JAI_OM_WSH_LINES_ALL — order management and shipping line tax categories.
- JAI_PO_LINE_LOCATIONS — purchasing line-location tax category.
- JAI_MTL_TRXS — inventory transactions carrying
TAXCATEGORY_ID. - JAI_CMN_MTAX_HDRS_ALL — migration/update header referencing both old and new tax categories.
Its own parent dependency is HR_ALL_ORGANIZATION_UNITS through ORG_ID. Any change to a row in this table therefore ripples across the AP, AR, PO, OM, INV, and shipping subledgers that consume the tax-category identifier.
-
Table: JAI_CMN_TAX_CTGS_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTGS_ALL, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores tax categories and their link to excise ITEM classes. , implementation_dba_data: JA.JAI_CMN_TAX_CTGS_ALL ,
-
Table: JAI_CMN_TAX_CTGS_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTGS_ALL, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores tax categories and their link to excise ITEM classes. , implementation_dba_data: JA.JAI_CMN_TAX_CTGS_ALL ,
-
VIEW: JA.JAI_CMN_TAX_CTGS_ALL#
12.2.2
owner:JA, object_type:VIEW, object_name:JAI_CMN_TAX_CTGS_ALL#, status:VALID,
-
Table: JAI_CMN_MTAX_HDRS_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MTAX_HDRS_ALL, object_name:JAI_CMN_MTAX_HDRS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores Mass Tax Changes requests with all inputs submitted , implementation_dba_data: JA.JAI_CMN_MTAX_HDRS_ALL ,
-
Table: JAI_CMN_MTAX_UPD_DTLS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MTAX_UPD_DTLS, object_name:JAI_CMN_MTAX_UPD_DTLS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the lines processed by Mass Tax Changes with details along with errors , implementation_dba_data: JA.JAI_CMN_MTAX_UPD_DTLS ,
-
Table: JAI_CMN_MTAX_UPD_DTLS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MTAX_UPD_DTLS, object_name:JAI_CMN_MTAX_UPD_DTLS, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the lines processed by Mass Tax Changes with details along with errors , implementation_dba_data: JA.JAI_CMN_MTAX_UPD_DTLS ,
-
SYNONYM: APPS.JAI_CMN_TAX_CTGS_ALL
12.1.1
owner:APPS, object_type:SYNONYM, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID,
-
Table: JAI_CMN_MTAX_HDRS_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_MTAX_HDRS_ALL, object_name:JAI_CMN_MTAX_HDRS_ALL, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores Mass Tax Changes requests with all inputs submitted , implementation_dba_data: JA.JAI_CMN_MTAX_HDRS_ALL ,
-
VIEW: JA.JAI_CMN_TAX_CTGS_ALL#
12.2.2
-
VIEW: APPS.JAI_BOE_DETAILS_V
12.2.2
-
SYNONYM: APPS.JAI_CMN_TAX_CTGS_ALL
12.2.2
owner:APPS, object_type:SYNONYM, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID,
-
TABLE: JA.JAI_CMN_TAX_CTGS_ALL
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTGS_ALL, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID,
-
TABLE: JA.JAI_CMN_TAX_CTGS_ALL
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAX_CTGS_ALL, object_name:JAI_CMN_TAX_CTGS_ALL, status:VALID,
-
APPS.JAI_GST_TAX_DEFAULTATION_PKG SQL Statements
12.2.2
-
Table: JAI_CMN_TAXCTG_UPDATES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXCTG_UPDATES, object_name:JAI_CMN_TAXCTG_UPDATES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores details of tax updates in tax categories , implementation_dba_data: JA.JAI_CMN_TAXCTG_UPDATES ,
-
Table: JAI_AR_TRX_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_LINES, object_name:JAI_AR_TRX_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information about the transaction lines. , implementation_dba_data: JA.JAI_AR_TRX_LINES ,
-
Table: JAI_PO_REQ_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQ_LINES, object_name:JAI_PO_REQ_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the localization information of requisition lines and tax amounts , implementation_dba_data: JA.JAI_PO_REQ_LINES ,
-
Table: JAI_OM_OE_RMA_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_RMA_LINES, object_name:JAI_OM_OE_RMA_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds the line details of the return orders. , implementation_dba_data: JA.JAI_OM_OE_RMA_LINES ,
-
PACKAGE: APPS.JAI_PA_TAX_PKG
12.1.1
owner:APPS, object_type:PACKAGE, object_name:JAI_PA_TAX_PKG, status:VALID,
-
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_CMN_VENDOR_SITES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_VENDOR_SITES, object_name:JAI_CMN_VENDOR_SITES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores excise account related information about vendors. , implementation_dba_data: JA.JAI_CMN_VENDOR_SITES ,
-
Table: JAI_PA_DRAFT_INVOICE_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PA_DRAFT_INVOICE_LINES, object_name:JAI_PA_DRAFT_INVOICE_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores draft invoice line attributes related to india localization , implementation_dba_data: JA.JAI_PA_DRAFT_INVOICE_LINES ,
-
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_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_PO_LINE_LOCATIONS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_LINE_LOCATIONS, object_name:JAI_PO_LINE_LOCATIONS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores the localization information at PO line shipment level. , implementation_dba_data: JA.JAI_PO_LINE_LOCATIONS ,
-
Table: JAI_OM_OE_SO_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_SO_LINES, object_name:JAI_OM_OE_SO_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores localization information for the sales orders. , implementation_dba_data: JA.JAI_OM_OE_SO_LINES ,
-
Table: JAI_CMN_TAXCTG_UPDATES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_TAXCTG_UPDATES, object_name:JAI_CMN_TAXCTG_UPDATES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores details of tax updates in tax categories , implementation_dba_data: JA.JAI_CMN_TAXCTG_UPDATES ,
-
Table: JAI_AR_TRX_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AR_TRX_LINES, object_name:JAI_AR_TRX_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores information about the transaction lines. , implementation_dba_data: JA.JAI_AR_TRX_LINES ,
-
Table: JAI_INV_ITM_TAXCTG_DTLS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_INV_ITM_TAXCTG_DTLS, object_name:JAI_INV_ITM_TAXCTG_DTLS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores info about the items and the tax category attached to it. , implementation_dba_data: JA.JAI_INV_ITM_TAXCTG_DTLS ,
-
Table: JAI_INV_ITM_TAXCTG_DTLS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_INV_ITM_TAXCTG_DTLS, object_name:JAI_INV_ITM_TAXCTG_DTLS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores info about the items and the tax category attached to it. , implementation_dba_data: JA.JAI_INV_ITM_TAXCTG_DTLS ,
-
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_OM_OE_SO_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_SO_LINES, object_name:JAI_OM_OE_SO_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores localization information for the sales orders. , implementation_dba_data: JA.JAI_OM_OE_SO_LINES ,
-
Table: JAI_AP_INVOICE_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_INVOICE_LINES, object_name:JAI_AP_INVOICE_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table is used to store the taxes related with standalone payables invoices , implementation_dba_data: JA.JAI_AP_INVOICE_LINES ,
-
Table: JAI_AP_TDS_THHOLD_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TAXES, object_name:JAI_AP_TDS_THHOLD_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of taxes applicable for a particular slabrate by operating unit. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TAXES ,
-
Table: JAI_MTL_TRXS
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_MTL_TRXS, object_name:JAI_MTL_TRXS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds India tax related data pertaining to inter organization transfers done , implementation_dba_data: JA.JAI_MTL_TRXS ,
-
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_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_AP_INVOICE_LINES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_INVOICE_LINES, object_name:JAI_AP_INVOICE_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table is used to store the taxes related with standalone payables invoices , implementation_dba_data: JA.JAI_AP_INVOICE_LINES ,
-
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_LINE_LOCATIONS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_LINE_LOCATIONS, object_name:JAI_PO_LINE_LOCATIONS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table stores the localization information at PO line shipment level. , implementation_dba_data: JA.JAI_PO_LINE_LOCATIONS ,
-
Table: JAI_CMN_VENDOR_SITES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_CMN_VENDOR_SITES, object_name:JAI_CMN_VENDOR_SITES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores excise account related information about vendors. , implementation_dba_data: JA.JAI_CMN_VENDOR_SITES ,
-
Table: JAI_PO_REQ_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_REQ_LINES, object_name:JAI_PO_REQ_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the localization information of requisition lines and tax amounts , implementation_dba_data: JA.JAI_PO_REQ_LINES ,
-
Table: JAI_PO_TAXES
12.1.1
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_TAXES, object_name:JAI_PO_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the information of localization tax lines at a PO line location level. , implementation_dba_data: JA.JAI_PO_TAXES ,
-
Table: JAI_PO_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_PO_TAXES, object_name:JAI_PO_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores the information of localization tax lines at a PO line location level. , implementation_dba_data: JA.JAI_PO_TAXES ,
-
PACKAGE BODY: APPS.JAI_GST_TAX_DEFAULTATION_PKG
12.2.2
owner:APPS, object_type:PACKAGE BODY, object_name:JAI_GST_TAX_DEFAULTATION_PKG, status:VALID,
-
Table: JAI_MTL_TRXS
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_MTL_TRXS, object_name:JAI_MTL_TRXS, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds India tax related data pertaining to inter organization transfers done , implementation_dba_data: JA.JAI_MTL_TRXS ,
-
Table: JAI_OM_OE_RMA_LINES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_OM_OE_RMA_LINES, object_name:JAI_OM_OE_RMA_LINES, status:VALID, product: JA - Asia/Pacific Localizations , description: This table holds the line details of the return orders. , implementation_dba_data: JA.JAI_OM_OE_RMA_LINES ,
-
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_THHOLD_TAXES
12.2.2
owner:JA, object_type:TABLE, fnd_design_data:JA.JAI_AP_TDS_THHOLD_TAXES, object_name:JAI_AP_TDS_THHOLD_TAXES, status:VALID, product: JA - Asia/Pacific Localizations , description: Stores details of taxes applicable for a particular slabrate by operating unit. , implementation_dba_data: JA.JAI_AP_TDS_THHOLD_TAXES ,
-
PACKAGE: APPS.JAI_PA_TAX_PKG
12.2.2
owner:APPS, object_type:PACKAGE, object_name:JAI_PA_TAX_PKG, status:VALID,