CAC WIP Pending Cost Adjustment
Description
Categories: Enginatics
Repository: Github
Repository: Github
Report showing the potential standard cost changes for WIP discrete jobs, for the WIP completions, WIP component issues and WIP resource (labor) transactions. (Note that resource overheads / production overheads are not included in this report version.) The Cost Type (Old) defaults to your Costing Method Cost Type (Average, Standard, etc.); the Currency Conversion Dates default to the latest ope ...
more
Run
CAC WIP Pending Cost Adjustment and other Oracle EBS reports with Blitz Report™ on our demo environment
select nvl(gl.short_name, gl.name) Ledger, -- ========================================================== -- Get the Material_Cost and Value Cost Adjustments -- ========================================================== haou2.name Operating_Unit, mp.organization_code Org_Code, haou.name Organization_Name, sumwip.class_code WIP_Class, ml1.meaning Class_Type, we.wip_entity_name WIP_Job, ml2.meaning Job_Status, sumwip.date_released Date_Released, sumwip.date_completed Date_Completed, sumwip.last_update_date Last_Update_Date, msiv.concatenated_segments Item_Number, msiv.description Item_Description, &category_columns fcl.meaning Item_Type, misv.inventory_item_status_code_tl Item_Status, ml3.meaning Make_Buy_Code, ml4.meaning Supply_Type, sumwip.transaction_type Transaction_Type, sumwip.resource_code Resource_Code, sumwip.op_seq_num Operation_Seq_Number, sumwip.res_seq_num Resource_Seq_Number, ml5.meaning Basis_Type, gl.currency_code Currency_Code, muomv.uom_code UOM_Code, -- ========================================================== -- Select the new and old item costs from Cost_Type 1 and 2 -- ========================================================== round(nvl(cic1.material_cost,0),5) New_Material_Cost, round(nvl(cic2.material_cost,0),5) Old_Material_Cost, -- Revision for version 1.1, remove tl_material_overhead for -- assembly completions and only for WIP Standard Discrete Jobs case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.material_overhead_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.material_overhead_cost,0),5) end New_Material_Overhead_Cost, case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.material_overhead_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.material_overhead_cost,0),5) end Old_Material_Overhead_Cost, -- End revision for version 1.1 round(nvl(cic1.resource_cost,0),5) New_Resource_Cost, round(nvl(cic2.resource_cost,0),5) Old_Resource_Cost, round(nvl(cic1.outside_processing_cost,0),5) New_Outside_Processing_Cost, round(nvl(cic2.outside_processing_cost,0),5) Old_Outside_Processing_Cost, round(nvl(cic1.overhead_cost,0),5) New_Overhead_Cost, round(nvl(cic2.overhead_cost,0),5) Old_Overhead_Cost, -- Revision for version 1.1, remove tl_material_overhead for -- assembly completions and only for WIP Standard Discrete Jobs case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end New_Item_Cost, case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end Old_Item_Cost, -- ======================================================== -- Select the item costs from Cost_Type 1 and 2 and compare -- ======================================================== -- New_Item_Cost - Old_Item_Cost = Item_Cost_Difference case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end - case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end Item_Cost_Difference, --case -- when round((nvl(cic1.item_cost,0) - nvl(cic2.item_cost,0)),5) = 0 then 0 -- when round((nvl(cic1.item_cost,0) - nvl(cic2.item_cost,0)),5) = round(nvl(cic1.item_cost,0),5) then 100 -- when round((nvl(cic1.item_cost,0) - nvl(cic2.item_cost,0)),5) = round(nvl(cic2.item_cost,0),5) then -100 -- else round((nvl(cic1.item_cost,0) - nvl(cic2.item_cost,0)) / nvl(cic2.item_cost,0) * 100,1) --end Percent_Difference, round( case -- when new cost - old cost = 0 then 0 when case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end - case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end = 0 then 0 -- when new cost - old cost = new cost then 100 when case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end - case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end = case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end then 100 -- when new cost - old cost = old cost then -100 when case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end - case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end = case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end then -100 -- else (new cost - old cost) / old cost else (case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end - case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end) / case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end end,2) Percent_Difference, -- End of revision for version 1.1 -- =========================================================== -- Select the WIP quantities and values -- =========================================================== muomv.uom_code UOM_Code, -- Revision for version 1.2 -- Show the WIP Completion Quantity as a positive number -- to match the Oracle WIP Std Cost Adjustment Report -- decode(sumwip.txn_source, 'WIP Completion', -1 * sumwip.quantity, sumwip.quantity) WIP_Quantity, sumwip.quantity WIP_Quantity, -- End revision for version 1.2 -- Revision for version 1.3 decode(sumwip.txn_source, 'WIP Completion',-1,1) * ( -- Revision for version 1.1 round( case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic1.item_cost,0) - nvl(cic1.tl_material_overhead,0),5) else round(nvl(cic1.item_cost,0),5) end * sumwip.quantity ,2)) New_Onhand_Value, -- Revision for version 1.3 decode(sumwip.txn_source, 'WIP Completion',-1,1) * ( round( case when sumwip.txn_source = 'WIP Completion' and sumwip.class_type in (1,5) then round(nvl(cic2.item_cost,0) - nvl(cic2.tl_material_overhead,0),5) else round(nvl(cic2.item_cost,0),5) end * sumwip.quantity ,2)) Old_Onhand_Value, -- Revision for version 1.2 -- Show WIP Completion adjustments as negative to match the Oracle WIP Standard Cost Adjustment Report decode(sumwip.txn_source |