How can I get standard costs for inventory items a...
# suiteql
a
How can I get standard costs for inventory items and assemblies in suiteql?
a
You should be able to use the aggregateItemLocation table for this
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
a
Thanks!