Hi,
Since our live going months ago we are tortured with strange errors in our inventory. Today we have a production order with item X only once. The production order has a quantity of 18 with 1 item X on each BOM line.
We get strange error when releasing to warehouse, although there is plenty in stock:
item x: 482,00 cannot be reserved because only 405,00 are available in the inventory.
throw error(strFmt("@WAX3104", movement.itemId(), -reservation, -(reservation + abs(qtyLeftToReserve))));
No location errors on work for this item.
Any ideas?
J.
if (qtyLeftToReserve && !this.parmAllowReserveReduction())
{
setPrefix("@SYS70390");
if (inventDimCriteria.preFix())
{
setPrefix(inventDimCriteria.preFix());
}
if (!this.parmThrowOnInsufficientOnHand())
{
throw error(strFmt("@WAX3104", movement.itemId(), -reservation, -(reservation + abs(qtyLeftToReserve))));
}
else
{
warning(strFmt("@WAX3104", movement.itemId(), -reservation, -(reservation + abs(qtyLeftToReserve))));
}
reservationFailed = true;
}
*This post is locked for comments
I have the same question (0)