Search Results transaction_costed_date




Overview

The view AX_CST_ACTUAL_COST_DETAILS_V1 is a Global Accounting Engine (AX) reporting and integration view in Oracle E-Business Suite. It exposes the detailed actual-costing rows generated when inventory transactions are processed, with a particular focus on sending and receiving transactions of an inter-organization transfer. In this context, an inter-organization transfer generates a cost relief (sending) transaction in the shipping organization and a cost receipt (receiving) transaction in the destination organization. The view surfaces the per-element actual cost values, prior and new costs, and any resulting variance for those transfer lines.

Because the AX product interfaces the subledger costing results into the Global Accounting Engine, this view functions as a normalized presentation layer over the underlying cost detail table. It allows AX accounting programs, reconciliation queries, and downstream reporting to retrieve transfer-related cost detail without embedding direct dependencies on internal costing structures. The view is documented as not implemented in this database, meaning the metadata describes the object definition even where the physical view may not be instantiated in a given environment; deployments that have the AX costing integration enabled will include it.

Underlying Base Objects

Per the ETRM metadata, the view is defined solely over the base table MTL_CST_ACTUAL_COST_DETAILS:

  • MTL_CST_ACTUAL_COST_DETAILS — the transaction-level actual cost detail table that stores one row per transaction, cost element, and level type, capturing the costed amounts and variances produced by the costing engine.

The view is a column-projected selection over this single base table; no joins, unions, or additional referenced objects are documented. Consequently, the row granularity of the view matches the base table exactly: one record per transaction identifier and cost element (and level type) combination. All key and audit columns present in the base table are passed through unchanged.

Key Columns

The following columns are exposed by the view and carry the primary costing semantics:

Common Use Cases and Queries

Typical usage includes reconciling inter-organization transfer costs between sending and receiving organizations, auditing the actual cost and variance produced for transfer transactions, and feeding AX accounting entries.

A representative query retrieving transfer cost detail for a given transaction follows:

  • SELECT transaction_id, organization_id, inventory_item_id, cost_element_id, actual_cost, prior_cost, new_cost, variance_amount, transaction_costed_date FROM ax_cst_actual_cost_details_v1 WHERE transaction_id = :p_transaction_id;

To isolate sending versus receiving actions for a transfer organization pair:

  • SELECT organization_id, transaction_action_id, SUM(actual_cost) FROM ax_cst_actual_cost_details_v1 WHERE transaction_id = :p_transaction_id GROUP BY organization_id, transaction_action_id;

And to review variances across a costing period:

  • SELECT organization_id, inventory_item_id, variance_amount FROM ax_cst_actual_cost_details_v1 WHERE transaction_costed_date BETWEEN :p_start AND :p_end AND variance_amount <> 0;

The view is read-only in practice and should be joined to transaction and item master tables via TRANSACTION_ID and INVENTORY_ITEM_ID for descriptive reporting.