Search Results mtl_abc_compile_status




Overview

APPS.MTL_ABC_COMPILE_HEADERS_V is a reporting and integration view in Oracle E-Business Suite (validated on 12.1.1 and 12.2.2) that exposes the header records of ABC (Activity-Based Costing) compile runs performed by the Oracle Inventory ABC analysis process. The underlying table, MTL_ABC_COMPILE_HEADERS, stores one row per ABC compile, capturing the parameters selected when the compilation was launched along with run statistics and the standard concurrent request audit columns. The view enriches those raw codes with human-readable lookup meanings so that reports, Discoverer workbooks, and downstream interfaces can present descriptive values without additional joins. It is owned by APPS and is commonly referenced by users searching for the lookup type MTL_ABC_COMPILE_TYPE, which classifies each compile run by its costing basis.

Underlying Base Objects

The view is defined over a single base table, MTL_ABC_COMPILE_HEADERS (exposed through the APPS synonym), outer-joined to four referencing objects that supply descriptive text:

The joins to MFG_LOOKUPS for compile type, compile status, and item scope are inner joins; the joins to the primary cost lookup and to CST_COST_TYPES are outer joins. This means a header row will not appear in the view if its compile type, status, or item scope code has no matching lookup entry, but missing cost code or cost type information does not suppress the row.

Key Columns

Common Use Cases and Queries

The view is typically queried to review the history of ABC compilations, to feed assignment reports, and to troubleshoot runs whose descriptions would otherwise require manual lookup decoding. A representative query listing recent compiles for an organization follows:

  • SELECT compile_id, compile_name, compile_type_description, compile_status_description, compile_date, compile_items FROM mtl_abc_compile_headers_v WHERE organization_id = :org_id ORDER BY compile_date DESC;
  • SELECT compile_id, item_scope_description, cost_type_description, cumulative_quantity, cumulative_value FROM mtl_abc_compile_headers_v WHERE compile_status = :status AND compile_type = :type;
  • Filtering on REQUEST_ID links a header back to the concurrent manager log for the ABC compile program.

Because the view performs no aggregation, each row corresponds to one compile header, making it suitable for direct use in Oracle Reports, BI Publisher data models, and custom interfaces that populate external ABC analysis repositories.