Inventory Aging Report 11i
Aim : The below is the query to get the Inventory Aging Report and the aging has been calculated with seven different bucket periods, with sub inventory details, unit cost and organization etc. Script: SELECT name, organization_name, item_code, item_type, uom, subinventory_code, description, inventory_item_id, organization_id, item_cost unit_cost, on_hand_quantity, CASE WHEN b1 < 0 THEN 0 ELSE b1 END b1, CASE WHEN b2 < 0 THEN 0 ELSE b2 END b2, CASE WHEN b3 < 0 THEN 0 ELSE b3 END…
Read More