Search Results jai_om_oe_rma_taxes
Overview
The JAI_OM_OE_RMA_TAXES table is a core data object within the Oracle E-Business Suite (EBS) Asia/Pacific (JA) Localizations module. It is specifically designed to store detailed tax information associated with Return Material Authorizations (RMAs) or return orders. In the context of EBS 12.1.1 and 12.2.2, this table plays a critical role in ensuring accurate tax calculation, reporting, and compliance for product returns in jurisdictions with complex tax regulations, such as those in India. It acts as a child table, linking tax records directly to individual return order lines, thereby maintaining a complete audit trail for all tax adjustments during the returns process.
Key Information Stored
While the full column list is not detailed in the provided metadata, the documented primary and foreign key structure reveals the essential data relationships. The table's composite primary key, JAI_OM_OE_RMA_TAXES_PK, consists of RMA_LINE_ID and TAX_ID. This indicates that for each return order line (RMA_LINE_ID), the table can store multiple tax records, each identified by a specific TAX_ID. The foreign key on DELIVERY_DETAIL_ID to WSH_DELIVERY_DETAILS suggests the table can also associate tax details with specific delivery or shipment lines, which is crucial for tracking taxes against physically returned inventory. Typical columns in such a table would include tax rates, calculated tax amounts (like tax_base_amount, tax_amount), tax jurisdiction codes, and indicators for recoverable or non-recoverable tax.
Common Use Cases and Queries
This table is primarily accessed for tax inquiry, audit reporting, and reconciliation related to customer returns. Common operational and reporting scenarios include generating tax reports for filed returns, reconciling tax credits issued to customers, and auditing the tax impact of return transactions. A typical query would join this table to its parent to analyze tax details by return order.
Sample Query Pattern:
SELECT rma_taxes.*, rma_lines.return_line_id
FROM jai_om_oe_rma_taxes rma_taxes,
jai_om_oe_rma_lines rma_lines
WHERE rma_taxes.rma_line_id = rma_lines.rma_line_id
AND rma_lines.return_header_id = :p_return_header_id;
This query retrieves all tax records for a specific return order header, which is essential for creating a comprehensive return tax document or credit memo.
Related Objects
The JAI_OM_OE_RMA_TAXES table is centrally connected to several key EBS entities through documented foreign key relationships:
- JAI_OM_OE_RMA_LINES: This is the direct parent table. The join column JAI_OM_OE_RMA_TAXES.RMA_LINE_ID references JAI_OM_OE_RMA_LINES, anchoring every tax record to a specific line on a return order.
- JAI_CMN_TAXES_ALL: The join column JAI_OM_OE_RMA_TAXES.TAX_ID references this table, which is the central repository for tax definitions and rates within the localization, ensuring tax calculations use the correct master data.
- WSH_DELIVERY_DETAILS: The join column JAI_OM_OE_RMA_TAXES.DELIVERY_DETAIL_ID links to this Shipping Execution module table. This relationship is vital for associating tax liabilities with the specific shipment or delivery line that triggered the return, enabling granular logistics-based tax tracking.
-
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_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_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 ,
-
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_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 ,