We have a scenario where an order line on the picking list gets split
automatically. Is this possible? Not all orders get affected, a random few.
We are using auto-reservations, and the tick on the Inventory Management >
Setup > Parameters, "Automatic addition" is switched on and use warehouse,
colour and size item dimensions.
We are using AX2009.
Thanking you in advance
Regards,
Anisha
If this is causing major problems for your operations you could look at the
method wmsOrderTrans.sumup() which summarizes the lines if the can be summed
up. This of course requires a small customization.
--
This posting is provided "As-is" with no warranty
Thank you so much :)
I heard as well that because we are using automatic picking as well, AX
looks for stock in the FIFO order thus causing the picking list lines to
split. Can this be valid as well?
There is a field on the inventtrans table called "InventDim fixed", do you
know what this field does and where it gets the data from?
Thanking you
Regards,
Anisha
The field InventDimFixed stores an integer which in a single value
represents the inventory dimensions that were fixed. You can use this small
job to print what the value is:
static void printFixedDimensions(Args _args)
{
InventDimParm inventDimParm;
InventDimFixed inventDimFixed = 256; //site
;
inventDimParm.initFromInventDimFixed(inventDimFixed);
info(inventDimParm.toString());
inventDimFixed = 8;//palletID
inventDimParm.initFromInventDimFixed(inventDimFixed);
info(inventDimParm.toString());
}
You can also open the reservation form for a line and see what dimensions
are marked as Locked.
The inventDimFixed can be specified through code so the value depends a bit
on where the reservation is done. For the case where automatic reservation is
used the values are based on the dimensions specified on the salesLine.
The wms reservation will respect the fixed dimensions. This means that if
you on a salesLine has specified a location, the wms reservation will not try
to find another, and potentially more optimal location, to reserve from.
So to get an idea on why your picking lines are split, you should try to
look at your inventory transactions to see if they are split