When Sale order is confirm. Select pick and Pack => Generate => Generate picking list.

Click on Ok.


A practitioner’s musings on Dynamics 365 Finance and Operations
by alirazazaidi
by alirazazaidi

After pick list Generation, Click on Pick and Pack => Generate => Picking list registration

Click on Updates => Update All.

After that click on end of form click x to close.

Then Click on Pick and Pack => Generate => Post Packing Slip.


Click ok, You find that Sale order status is now update to Delivered.

by alirazazaidi

Finally I found that in new Dynamics Ax finally statement introduce in exception handling statement.
try
{
}
catch
{
}
finally
{
}
It means, everything written in finally must be execute. For testing this functionality I just create a runnable class and written following code.
class HelloWorld
{
/// <summary>
/// Runs the class with the specified arguments.
/// </summary>
/// <param name = "_args">The specified arguments.</param>
public static void main(Args _args)
{
ColorDC dc = new ColorDC();
ColorSc Sc = new ColorSc();
try
{
dc.parmColorName("Red");
Sc.InsertColor(dc);
dc.parmColorName("Green");
Sc.InsertColor(dc);
} catch (Exception::Error)
{
info("error");
}
finally
{
info("finally");
}
}
}
When run the code.
I found Info box in browser as

by alirazazaidi

About Ax 7 and Cloud I found very nice paper at Inside Microsoft Dyanmics Ax Blog. They wrote about the paper
In the paper, Mr. Greenbaum explains how the next release of Microsoft Dynamics AX, running on the Microsoft Azure, positions cloud computing for a dramatic and meaningful shift. With a starting discussion of the long-standing customer promises and pain points with regard to ERP, Greenbaum explains the basics of our cloud offering and then describes the benefits to both partners and customers.
Paper link is as follow http://blogs.msdn.com/cfs-file.ashx/__key/communityserver-components-postattachments/00-10-62-70-38/Redefing-the-potential-of-enterprise-cloud-computing-WP-final.pdf
and original post is as follow
http://blogs.msdn.com/b/dax/archive/2015/07/10/read-analyst-joshua-greenbaum-s-perspective-on-microsoft-dynamics-ax-7.aspx
Picture above taking from paper mentioned above link.