Search Results cst_inv_layers_n1




Overview

CST_INV_LAYERS is a core costing table owned by the BOM schema in Oracle E-Business Suite 12.1.1 and 12.2.2. It stores the inventory cost layers generated for each receipt transaction. One inventory layer is created for every receipt into inventory, and each layer is scoped within an organization, item, and cost group. The table records both the quantity and cost information associated with that layer, forming the basis for periodic costing, layer consumption, and cost group valuation.

CST_INV_LAYERS is physically stored in the APPS_TS_TX_DATA tablespace with a PCT Free of 10. Its indexes reside in APPS_TS_TX_IDX. The heuristic Data Vault classification for this object is standalone, meaning it does not participate as a conventional hub, link, or satellite in the mined relationship model. This classification reflects that CST_INV_LAYERS primarily links to CST_QUANTITY_LAYERS via LAYER_ID, but is not itself a dependent child of a broader integration hub.

Key Information Stored

The table contains 23 documented columns. The most significant include:

Common Use Cases and Queries

Cost accountants and supply chain analysts use CST_INV_LAYERS to trace inventory valuation, reconcile layer balances, and audit receipt-driven costing. Typical queries include:

  • Retrieving layers for an item and organization: SELECT inv_layer_id, layer_quantity, layer_cost FROM bom.cst_inv_layers WHERE organization_id = :org AND inventory_item_id = :item;
  • Identifying remaining quantity by layer to assess consumption: filtering on LAYER_QUANTITY > 0.
  • Reconciling back to the parent quantity layer: joining to CST_QUANTITY_LAYERS on LAYER_ID.
  • Auditing receipts by transaction source: joining TRANSACTION_SOURCE_TYPE_ID to MTL_TXN_SOURCE_TYPES.
  • Analyzing overhead split using BURDEN_COST and UNBURDENED_COST for period-end valuation reporting.

Related Objects

The primary key CST_INV_LAYERS_PK (INV_LAYER_ID) and unique indexes CST_INV_LAYERS_U1 and CST_INV_LAYERS_U2 enforce layer identity and support efficient joins across the costing subsystem.