Currently the Facts - Analytics Currency → Unit Cost is Avg(Global Puom Unit Cost). We really need the non average cost or actual cost of the items on hand which would be PRIMARY_ONHAND_QUANTITY * GLOBAL_PUOM_UNIT_COST or just having the GLOBAL_ONHAND_VALUE available would work as well.
In this example these are the parameters, I XX out the org parameters:
1. Fiscal Calendar Name = ‘XX’
2. Fiscal Year = ‘2024’
3. Fiscal Quarter = ‘202Q34’
4. Fiscal Period = ‘Jul-24’
5. Business Unit Name = ‘XX’
6. Inventory Organization = ‘XXXX’
7. Item Primary UOM = ‘KT’
The issue this is causing is this:
SNAPSHOT_PERIOD_END_DATE | PRIMARY_UOM_CODE | PRIMARY_ONHAND_QUANTITY | PRIMARY_SALES_QUANTITY | GLOBAL_ONHAND_VALUE | GLOBAL_SALES_VALUE | GLOBAL_PUOM_UNIT_COST |
|---|
31-Jul-24 | KT | 0 | 0 | 0 | 0 | 24.57 |
31-Jul-24 | KT | 0 | 0 | 0 | 0 | 47.07 |
31-Jul-24 | KT | 2 | 1 | 10.38 | 5.19 | 5.19 |
31-Jul-24 | KT | 2 | 0 | 50 | 0 | 25 |
31-Jul-24 | KT | 274 | 55 | 3294.028 | 661.21 | 12.022 |
| | 278 | | 3354.408 | | 22.7704 |
Taken from the 25R1_SCM_Metric_Calculation_Logic excel:
SCM - Inventory Turns | Unit Cost | Avg(Global Puom Unit Cost) |
|---|
SCM - Inventory Turns | Inventory Onhand Value | "Inventory Onhand Quantity" * "Unit Cost" |
This is taken from our production data. The way this is currently working is taking the:
Avg(Global Puom Unit Cost) * Inventory Onhand Value
22.7704 * 278 = 6330.1712
Whereas the actual onhand value is 3354.408, as you can see this is causing a discrepancy for our actual onhand values. When this is done across all of our items in inventory it is making our on hand value way off.