CAC WIP Material Usage Variance
Description:
Report your material usage variances for your open and closed WIP jobs. This report replicates the Material Variance Section for the Oracle Discrete Job Value - Standard Costing report.
If the job is open the Report Type column displays “Valuation”, as this WIP job and potential material usage variance is still in your WIP inventory balances. If the job has been closed during the reporting period, the Report Type column displays “Variance”, as this WIP job was written off on a WIP Job Close Variance transaction. You can report prior periods and this report will automatically adjust the assembly completion quantities and component issue quantities to reflect the quantities for the specified accounting period, as well as report only jobs which were open or closed during that prior period.
Closed, Pending Close, Cancelled, Complete and Complete No Charges WIP job statuses use the completion quantities. All other WIP jobs use the parameter “Use Completion Quantities”.
Parameters:
Report Option: Open jobs, Closed jobs or All jobs. Use this to limit the size of the report. (mandatory) Period Name: the accounting period you wish to report. (mandatory) Cost Type: defaults to your Costing Method; if the cost type is missing component costs the report will find any missing item costs from your Costing Method cost type. (optional) Include Scrap Quantities: for calculating your completion quantities and component quantity requirements, include or exclude any scrapped assembly quantities. (mandatory) Include Unreleased Jobs: include jobs which have not been released and are not started. (mandatory) Include Bulk Supply Items: include Bulk items to match the results from the Oracle Discrete Job Value Report; exclude knowing that Bulk items are usually not issued to the WIP job. (mandatory) Use Completion Qtys: for jobs in a released status, use the completion quantities for the material usage and configuration variance calculations. Useful if you backflush your materials based on your completion quantities. Complete, Complete - No Charges, Cancelled, Closed, Pending Close or Failed Close alway use the completion quantities for the variance calculations. (mandatory) Category Set 1: any item category you wish (optional). Category Set 2: any item category you wish (optional). Class Code: specific type of WIP class to report (optional). Job Status: specific WIP job status (optional). WIP Job: specific WIP job (optional). Assembly Number: specific assembly number you wish to report (optional) Component Number: specific component item you wish to report (optional) Organization Code: any inventory organization, defaults to your session’s inventory organization (optional). Operating Unit: specific operating unit (optional) Ledger: specific ledger (optional)
/* +=============================================================================+ – | Copyright 2009 - 2024 Douglas Volz Consulting, Inc. – | All rights reserved. – | Permission to use this code is granted provided the original author is acknowledged. – +=============================================================================+ – | Version Modified on Modified by Description – | ======= =========== =============== ========================================= – | 1.0 12 Oct 2020 Douglas Volz Initial Coding Based on ICP WIP Component – | Variances and ICP WIP Component Valuation – | 1.24 02 Feb 2022 Douglas Volz Fix for non-standard jobs, there are no rows in wip_operations if there is no routing. – | 1.25 20 Jun 2024 Douglas Volz Remove tabs, reinstall parameters and inventory org access controls. – | ======= =========== =============== =========================================
Parameters
Report Option, Period Name, Cost Type, Include Scrap Quantities, Include Unreleased Jobs, Include Bulk Supply Items, Use Completion Quantities, Category Set 1, Category Set 2, Category Set 3, Organization Code, Class Code, Job Status, WIP Job, Component Number, Assembly Number, Operating Unit, Ledger
Used tables
wip_discrete_jobs, org_acct_periods, mtl_parameters, wip_accounting_classes, mtl_material_transactions, org_access_view, mtl_system_items_vl, wdj00, wdj0, wdj, cst_item_costs, cst_item_cost_details, cst_cost_types, wdj_assys, dual, mtl_cst_actual_cost_details
Categories
Dependencies
If you would like to try one of these Oracle EBS SQLs without having Blitz Report installed, note that some of the reports require functions from utility package xxen_util.
Example Report
CAC WIP Material Usage Variance 10-Jul-2022 165408.xlsx
Report SQL
www.enginatics.com/reports/cac-wip-material-usage-variance/
Blitz Report™ import options
CAC_WIP_Material_Usage_Variance.xml
Case Study & Technical Analysis: CAC WIP Material Usage Variance
Executive Summary
The CAC WIP Material Usage Variance report is a deep-dive analytical tool for manufacturing cost control. It focuses specifically on the “Material” component of WIP variance, which is often the largest driver of manufacturing cost deviations. Unlike the high-level “WIP Account Summary,” this report drills down to the component level, comparing what should have been used (Standard Quantity) against what was actually used (Issued Quantity). It replicates and enhances the logic of the standard Oracle “Discrete Job Value Report” but in a flat, exportable format.
Business Challenge
Material variance is a key performance indicator (KPI) for the shop floor, but it’s hard to diagnose.
- Usage vs. Configuration: If a job has a $1,000 variance, is it because the operator used 10 extra bolts (Usage), or because they substituted a more expensive steel grade (Configuration)?
- Timing Issues: Standard reports often show the current state of the job. If you are analyzing last month’s close, you need a report that “rolls back” the quantities to show the status as of that period end.
- Open vs. Closed: Finance treats open jobs (Valuation) differently from closed jobs (Variance). Open job variances sit on the balance sheet; closed job variances hit the P&L.
The Solution
This report provides a precise, component-level variance analysis.
- Variance Decomposition:
- Usage Variance:
(Standard Qty - Actual Qty) * Standard Cost. This highlights efficiency issues (scrap, theft, over-issue). - Configuration Variance: Highlights when a component was not in the original BOM or was substituted.
- Usage Variance:
- Time-Travel Logic: The report uses transaction history (
MTL_MATERIAL_TRANSACTIONS) to calculate the “Applied Quantity” and “Completed Quantity” exactly as they were at the end of the selected period. This makes it perfect for retrospective month-end analysis. - Flexible Baselines: The
Use Completion Quantitiesparameter allows users to calculate standard requirements based on what was actually built, rather than what was planned. This is crucial for environments where yield varies significantly.
Technical Architecture (High Level)
The query is complex because it must reconstruct the state of every job at a past point in time.
- CTEs for Job State:
wdj00&wdj0: These Common Table Expressions filter the jobs to be reported (Open, Closed, or All) and establish the job header details (Status, Quantities) relative to the reporting period.
- Component Logic:
- It joins
WIP_REQUIREMENT_OPERATIONS(the BOM) to determine the Standard requirement. - It sums
MTL_MATERIAL_TRANSACTIONS(the Issues/Returns) to determine the Actual usage.
- It joins
- Costing Logic: It joins to
CST_ITEM_COSTSto value the quantities. It defaults to the organization’s Costing Method but allows an optionalCost Typeoverride for simulation. - Variance Calculation:
Target Qty = (Qty Completed + Qty Scrapped) * BOM Quantity per Assembly.Usage Variance = (Target Qty - Actual Issued Qty) * Item Cost.
Parameters & Filtering
- Report Option: Toggle between Open (Valuation), Closed (Variance), or All.
- Period Name: The anchor point for the “As of” calculation.
- Include Scrap/Unreleased: Fine-tunes the requirement calculation.
- Use Completion Qtys: Determines if the standard is based on the Start quantity or the Completed quantity.
Performance & Optimization
- Materialized CTEs: The
/*+ materialize */hint in the initial CTEs forces the database to build the list of relevant jobs once, preventing repeated scans of theWIP_DISCRETE_JOBStable for each component calculation. - Transaction Filtering: The summation of material transactions is strictly bounded by the
Period Namedates, ensuring the “As of” calculation is accurate and efficient.
FAQ
Q: Why does the report show “Valuation” for some rows and “Variance” for others? A: This depends on the job status in the selected period. If the job was Open, the variance is still “Valuation” (an asset/liability on the balance sheet). If the job Closed during the period, the variance is finalized and written off to the P&L.
Q: How does it handle “Bulk” items?
A: Bulk items (like grease or fasteners) are often expensed upon receipt and not issued to specific jobs. The Include Bulk Supply Items parameter allows you to exclude them to avoid showing massive “favorable” variances (since the system expects usage but sees zero issues).
Q: Why is my “Standard Quantity” zero? A: This usually happens if the component was added to the job ad-hoc (not in the BOM). In this case, the entire cost of the issued material is treated as a variance.
Oracle E-Business Suite Reporting Library
We provide an open source Oracle EBS SQLs as a part of operational and project implementation support toolkits for rapid Excel reports generation.
Blitz Report™ is based on Oracle EBS forms technology, and hence requires minimal training. There are no data or performance limitations since the output files are created directly from the database without going through intermediate file formats such as XML.
Blitz Report can be used as BI Publisher and Oracle Discoverer replacement tool. Standard Oracle BI Publisher and Discoverer reports can also be imported into Blitz Report for immediate output to Excel. Typically, reports can be created and version tracked within hours instead of days. The concurrent request output automatically opens upon completion without the need for re-formatting.
The Filters, Columns, Rows and Values fields are used to create and deliver the data in pivot table format with full drill down to details.

The Excel template upload functionality in Blitz Report allows users to create their own layouts by uploading an Excel template with additional sheets and charts, automatically refreshed when the report runs again. This allows to create custom dashboards and more advanced visualizations of report data.

You can download and use Blitz Report free of charge for your first 30 reports.
The installation and implementation process usually takes less than 1 hour; you can refer to our installation and user guides for specific details.
If you would like to optimize your Oracle EBS implementation and or operational reporting you can visit www.enginatics.com to review great ideas and example usage in blog. Or why not try for yourself in our demo environment.
Useful Links
Blitz Report™ – World’s fastest data upload and reporting for Oracle EBS
Oracle Discoverer replacement – importing worksheets into Blitz Report™
Blitz Report™ Questions & Answers
Supply Chain Hub by Blitz Report™
© 2025 Enginatics