report_inventory_valuation โ Inventory Valuation
Total value of on-hand stock, valued at each item's cost price and rolled up by item group.
This is a Named SQL Query (SAP
/SQLQueries) โ dynamic
aggregate SQL returning per-query rows, not a fixed Service Layer entity.Inventory-valuation report โ the total value of on-hand stock, valued at each item’s cost
price and rolled up by item group. Returns one row per item group with group_name and
total_value (sum of on-hand quantity ร unit cost across the group’s stocked items), highest
value first. A balance-sheet-style snapshot of how much capital is tied up in inventory. Only
items that carry stock are included.
Try these prompts
- “what is our inventory worth?”
- “stock value by product group”
- “how much capital is tied up in inventory?”
- “inventory valuation by category”
ื ืกื ืื ืืขืืจืืช
- “ืื ืฉืืื ืืืืื ืฉืื ื?”
- “ืฉืืื ืืืื ืืคื ืงืืืฆืช ืืืฆืจืื”
- “ืืื ืืื ืชืงืืข ืืืืื?”
Arguments
No arguments.
Example result
$142k tied up in inventory. Finished Goods โ $96,000. Raw Materials โ $34,000. Packaging โ $12,000.
Result columns
| Column | Type | Meaning |
|---|---|---|
group_name | text | The item group the stock rolls up to. |
total_value | number | On-hand quantity ร cost price, summed across that group’s stocked items. |
Charts
- bar: x=group_name, y=total_value, title=“Stock value by item group”
- pie: x=group_name, y=total_value, title=“Share of stock value”
Related
get_stock_coverageโ how long stock lasts, not its money value.get_gross_marginโ profitability per item.