Dynamics AX Blog - Posts from 2010
Tip: Convert job into classDid 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? |
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.
| ||||||||
startUpCmd=AutorunIf you want to run specific forms or classes when Dynamics AX is started, you could use the command-line-param autorun. This parameter awaits a xml-file containing the objects, which should be launched.
The corresponding xml-file startup.xml looks like this: Additional information are available at MSDN: http://msdn.microsoft.com/en-us/library/aa870082.aspx |
|
|
|
|
|
|
The global address book is probably one of the great new features in Dynamics AX 2009.
And especially when upgrading from earlier versions questions may occur.
Some of these questions are answered in the Microsoft white paper on the global address book, but certainly not all;-)
However, every developer and consultant should lead this White Paper once to mind. Because the whitepaper contains, for example, a description how to import customers / vendors or business relations via Excel.
http://www.microsoft.com/downloads/details.aspx?displaylang=en&FamilyID=052e9dda-667b-42bd-bd13-f8c5aa1bc0f0