Hello,
I am working on nav 2013 with Rollup 2.
In function QtyAvailabletoPromise (CU 5790 Available to Promise) MS made some changes in Rollup 2:
Form Lines:
Inventory := CalcInventory(Item);
ScheduledReceipt := CalcScheduledReceipt(Item);
GrossRequirement := CalcGrossRequirement(Item);
To Lines:
Inventory := CalcInventory(Item);
ScheduledReceipt := CalcScheduledReceipt(Item) + CalcInboundReservations(Item);
GrossRequirement := CalcGrossRequirement(Item) + CalcOutboundReservations(Item);
And now my Availability on Sales Order Page show me wrong Quantities:
I have 21 pcs in warehouse (from Item ledger entry).
I have 2 purch. orders: first for 1 pcs and second for 2 pcs before my new SO Shipment date.
So my Inventory + Schedule Recipt = 24 pcs.
Now i am adding SO for 10 pcs (item with reservatiion = always) and at the end my Availability = 4 pcs.
If only i delete my reservation my Availabilyty is 14 pcs?
Anybody has the same case?
In Cronus db without Rollup 2 my availability is 14 no mather of reservation.
Maybe i am missing somethig :-k