Dynamics AX Blog - Dynamics AX 2012 - Posts from 2010
These posts are machine-translated.
Currently, only posts are displayed, which are relevant for Dynamics AX version »Dynamics AX 2012« 
RSS-Feed of this version

RSS-Feed of this version
Currently, only posts from »2010« are displayed
Move pallet using X++Using the following code, you will be able to move a pallet per code. WMSPalletMove wmsPalletMove = new wmsPalletMove();
wmsPalletMove.parmWMSPalletId('00000022_117'); wmsPalletMove.parmToInventLocationId('300'); wmsPalletMove.parmToLocationId('01'); if(wmsPalletMove.validate()) { wmsPalletMove.run(); }
|
What is the difference between update and doUpdate?What is the difference between update() and doUpdate()? You canfind the answer on MSDN or you take a look at the following table.
| ||||||||
|
|
|
|
|
|
Did you know that you can easily convert a job to a class simply by copying the job to classes-node in AOT using drag & drop?