on 2018 Oct 03 8:21 PM
We are implementing IBP for Inventory and we have a requirement to identify slow moving items. If shipment history (IOSALES) is less than 500 cases per month, then indicate that product as a slow moving item and use quantity (cases) instead of days for the shipment history. However, the indicator to mark it as a 1 in the month, not week, for the slow moving item is not working. Right now we have the below configured but it’s not putting a 1 when there is < 500 cases in the current monthly bucket. Do you know what could be wrong with the below equation?
IF(“PERIODID1” = “$$PERIOD1CU$$”, IF(“IOSALES@PERPRODLOC”) < 500, 1, 0), NULL)
Request clarification before answering.
Hi All,
We decided to use the Manage ABC/XYZ Segmentation tile and using the ABC and XYZ segment thresholds to fulfill this requirement.
Thanks,
Melanie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Melanie
can you share which time buckets you have available at all, just week and month?
Than periodid0 would be weeks and periodid1 would be month, and your formula should be ok.
And I understand your PER means months?
But if you have in addition e.g. year and quarter, than periodid1 would be the year and not the month, quarter would be periodid2 and month would be periodid3, and your formula would be on the wrong level.
Irmi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
You should use the AND operator for this kind of requirement. and you expression was also wrong. Please use the expression provided below and let me know the outcome.
IF("PERIODID1" = "$$PERIODID1CU$$" AND IF("IOSALES@PERPRODLOC" < 500, 1,0))
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Melanie, yes if you dont have WKPRODLOC configured it won't work as there will be inconsistency and it will require to change for corresponding input and output KF.
Can you share a screenshot of PERPRODLOC planning level, as I would like to see what is selected in it.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Ankur,
We don't have the planning level for WKPRODLOC as the configuration is all at PER not WK. Week is our lowest time profile level. When I try adding WKPRODLOC to the calculation, I get the error "the planning level for the output key figure and the planning level for the input key figure must match in the calculation definition."
Thanks,
Melanie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Melanie,
Can you try using below calculation, change planning level of IOSALES.
IF(“PERIODID1” = “$$PERIOD1CU$$”, IF(“IOSALES@WKPRODLOC”) < 500, 1, 0), NULL)
Regards
Ankur
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Anurag,
Apologies, below is actually how it is configured without the extra parenthesis. Do you know what else could be wrong with it? I'm not sure why the 1 isn't taking when the cases are < 500 for the given month.
IF(“PERIODID1” = “$$PERIOD1CU$$”, IF(“IOSALES@PERPRODLOC” < 500, 1, 0), NULL)
Thanks,
Melanie
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Melanie,
I see the syntax mismatch in the calc logic , There is an extra ")" in the calc.
Didn't ypu get any error?
Regards,
Anurag
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 12 | |
| 8 | |
| 4 | |
| 3 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.