Skip to main content
Question

Is there Cost history details for Shop Orders?

  • August 24, 2026
  • 1 reply
  • 18 views

arebbeadle
Hero (Customer)
Forum|alt.badge.img+14

Is there Cost history details for Shop Orders? Can I export all cost bucket detail for shop orders from the last 2 years? Where is the data stored? I need the cost data for all shop orders.

 

 

1 reply

Abdul
Superhero (Partner)
Forum|alt.badge.img+20
  • Superhero (Partner)
  • August 24, 2026

Hi ​@arebbeadle,

Please check following screens,

  1. Shop Order Actual Cost Details
  2. Shop Orders Costs - Run Aggregate Shop Order Costs per Shop Order process to populate data.
  3. Additionally, you can create a simple quick for Shop Order Cost » Overview Unit Cost tab. You can use below sql statement
SELECT T.* FROM SHOP_ORDER_COST_DETAIL T
WHERE SHOP_ORD_API.Get_Close_Date(T.ORDER_NO,T.RELEASE_NO,T.SEQUENCE_NO) BETWEEN TO_DATE('&FROM_DATE','DD/MM/YYYY') AND TO_DATE('&TO_DATE','DD/MM/YYYY')

Hope this will help.