How to setup Fulfillment rule to partially fulfill a line up to the safety stock value?
Hello,
I would like to achieve the following goal in JDE fulfillment module:
- High priority customer orders (score >= 100) can consume safety stock
- Low priority customer orders (1 <= score < 100) must be fulfilled as much as possible, but withouth consuming safety stock
I imagined the setup below:
Sequence Score Safety_stock% OrderLineFulfillment%
10 100 0% 100%
20 1 100% 1000%
My concern is that with such a setup, low score orders will be fulfilled only if there is enough non-safety stock to fulfill 100% of the order line. If there is some non-safety stock available but not enough for the whole quantity, nothing is fulfilled at all.
If I setup for instance 75% instead of 100% for OrderLineFulfillment% in line 2, and if there is enough non-safety stock for the whole quantity, what will be allocated? 100% of the quantity, or only 75%? Will safety stock be consumed?