How can I get standard costs for inventory items and assemblies in suiteql?
a
Anthony (NimbusLabs)
02/28/2022, 3:49 PM
You should be able to use the aggregateItemLocation table for this
Anthony (NimbusLabs)
02/28/2022, 3:50 PM
select
i.id,
i.itemid,
i.displayname,
a.cost,
BUILTIN.DF(a.location) as location
from
item i
INNER JOIN aggregateItemLocation a on i.id = a.item
where
i.id = @itemId