Search Results jai_ar_trx_tax_lines
Overview
The JAI_AR_TRX_TAX_LINES table is a core transactional data object within the Asia/Pacific Localizations (JA) module of Oracle E-Business Suite (EBS) releases 12.1.1 and 12.2.2. It serves as the definitive repository for detailed tax calculations applied to individual invoice lines. Its primary role is to store the final, computed tax amounts and associated tax identifiers for each line item on a transaction, enabling accurate tax reporting, compliance, and reconciliation specific to regional statutory requirements. This table is essential for generating localized tax reports and forms mandated by countries within the Asia/Pacific region.
Key Information Stored
The table's structure is centered on linking an invoice line to its specific tax liabilities. The primary key is a composite of CUSTOMER_TRX_LINE_ID and TAX_ID, ensuring a unique record for each distinct tax applied to a given line. Key columns include CUSTOMER_TRX_LINE_ID, which references the source invoice line in RA_CUSTOMER_TRX_LINES_ALL, and TAX_ID, which links to the master tax definition in JAI_CMN_TAXES_ALL. Another critical column, LINK_TO_CUST_TRX_LINE_ID, provides a foreign key reference back to RA_CUSTOMER_TRX_LINES_ALL, potentially for handling complex tax scenarios like tax-on-tax calculations or linking tax lines to their original freight or adjustment lines. The table will also typically contain columns for the calculated tax amount, tax rate, and potentially taxable basis, though these specific columns are implied by the table's purpose rather than explicitly listed in the provided metadata.
Common Use Cases and Queries
This table is primarily accessed for tax inquiry and detailed compliance reporting. A common use case is to analyze the tax breakdown for a specific invoice or a set of transactions within a period for audit purposes. Development and support activities often involve querying this table to diagnose tax calculation issues. A typical SQL pattern joins this table to the transaction lines and tax master tables:
- Tax Detail by Invoice: SELECT trx_line.customer_trx_id, trx_line.line_number, tax_line.tax_id, cmn_tax.tax_name, tax_line.tax_amount FROM jai_ar_trx_tax_lines tax_line, ra_customer_trx_lines_all trx_line, jai_cmn_taxes_all cmn_tax WHERE tax_line.customer_trx_line_id = trx_line.customer_trx_line_id AND tax_line.tax_id = cmn_tax.tax_id AND trx_line.customer_trx_id = :p_trx_id;
- Tax Summary for a Legal Entity: Queries aggregating tax amounts from JAI_AR_TRX_TAX_LINES, grouped by TAX_ID and period, form the basis for statutory tax summary reports required by local authorities.
Related Objects
JAI_AR_TRX_TAX_LINES sits at the intersection of transactional and tax master data. Its most critical relationships, as defined by its foreign keys, are with RA_CUSTOMER_TRX_LINES_ALL (the standard Oracle Receivables transaction lines table) and JAI_CMN_TAXES_ALL (the localized tax definitions table). It is a child table to RA_CUSTOMER_TRX_LINES_ALL, with two distinct foreign key relationships: one via CUSTOMER_TRX_LINE_ID and another via LINK_TO_CUST_TRX_LINE_ID. This table is also likely referenced by various localized JA reporting views and interfaces that extract detailed tax data for submission to government systems or for internal financial analysis. Any customizations or extensions involving detailed Asia/Pacific line-level tax data will invariably interact with this table.
-
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_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 ,
-
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 ,
-
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 ,
-
View: JAI_AR_TRX_AEL_V
12.2.2
owner:APPS, object_type:VIEW, fnd_design_data:JA.JAI_AR_TRX_AEL_V, object_name:JAI_AR_TRX_AEL_V, status:VALID, product: JA - Asia/Pacific Localizations , description: Base view of OFI AR transaction , implementation_dba_data: APPS.JAI_AR_TRX_AEL_V ,