Skip to main content

Notifications

Transfer Orders and Pallets (AX2009 and AX2012)

When you create a transfer order in AX2012 or AX2009, and using Pallet Id’s, the system does not include the pallet number on the receiving warehouse. This means you need to create a new pallet and re-process everything on the pallet as part of the receiving process.

I have found that a number of customers want to keep the pallet number and the contents the same.

this can be achieved with a small modification to the system. Under Table InventTransferLine, method: inventDimMergeWarehouse there is a block of code towards the bottom:

if (_inventLocationId == _inventTransferTable.InventLocationIdTo)
{
inventDim.wmsPalletId = ”;
}

If you comment these lines out then the pallet number will stay present on the receiving inventory transaction for the final destination warehouse.


Comments

*This post is locked for comments