axdevposts.blogspot.com
AX Developer tips: October 2013
http://axdevposts.blogspot.com/2013_10_01_archive.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Thursday, October 17, 2013. Summary update "Invoice account" doesn't work for intercompany sales orders. I have discovered a strange behavior of AX (AX2012) with regards to intercompany orders and summary update. SO 101 - PO 102 - SO 102. Intercompany is configured to post packing slip (product receipt) through the whole chain. Doing that we faced some severe performance problems, related to the ...
axdevposts.blogspot.com
AX Developer tips: Changing remaining quantity on sales line (intercompany)
http://axdevposts.blogspot.com/2013/11/changing-remaining-quantity-on-sales.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Wednesday, November 27, 2013. Changing remaining quantity on sales line (intercompany). While investigating intercompany processes in AX2012 I've found an interesting thing. Let's assume the scenario from my previous post. An intercompany direct delivery. Out supply chain looks like this:. The right code is placed into the form "Update delivery remainder", which can be called from the order line:.
axdevposts.blogspot.com
AX Developer tips: LINQ in X++
http://axdevposts.blogspot.com/2009/03/linq-in-x.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Saturday, March 7, 2009. LINQ (Language INtegrated Query) was introduced in C# 3.0 and was created for unified SQL-like inquiry interface to any data source: database, XML files, or object collections. In C# it can be performed in SQL-like format or through extention methods:. Collection.Where(.), collection.Select(.). Lets imageine we have simple class QueryListTEST. Flag = flag;. Nam = name;.
axdevposts.blogspot.com
AX Developer tips: Updating records without FORUDATE statement
http://axdevposts.blogspot.com/2008/06/updating-records-without-forudate.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Monday, June 2, 2008. Updating records without FORUDATE statement. I had an experience on previous project when I couldn't have inserted record in database because it was selected from another scope on server with forupdate. The error saying that record was not selected for update was thrown. But solution can be found in "Inside Dynamics AX" book. Method can be called with parameter true.
axdevposts.blogspot.com
AX Developer tips: March 2009
http://axdevposts.blogspot.com/2009_03_01_archive.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Saturday, March 7, 2009. LINQ (Language INtegrated Query) was introduced in C# 3.0 and was created for unified SQL-like inquiry interface to any data source: database, XML files, or object collections. In C# it can be performed in SQL-like format or through extention methods:. Collection.Where(.), collection.Select(.). Lets imageine we have simple class QueryListTEST. Flag = flag;. Nam = name;.
axdevposts.blogspot.com
AX Developer tips: CLR Interoperbility. Problem with Assembly Versions
http://axdevposts.blogspot.com/2008/07/clr-interoperbility-problem-with.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Wednesday, July 2, 2008. CLR Interoperbility. Problem with Assembly Versions. If you're using CLR interoperability to access external logic, you can perform construct objectes two possible ways:. And then construct needed object. Microsoft.Office.Interop.Outlook. Apllication appl = new Microsoft.Office.Interop.Outlook.ApllicationClass();. 2 Also you can use. Subscribe to: Post Comments (Atom).
axdevposts.blogspot.com
AX Developer tips: June 2008
http://axdevposts.blogspot.com/2008_06_01_archive.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Monday, June 2, 2008. Updating records without FORUDATE statement. I had an experience on previous project when I couldn't have inserted record in database because it was selected from another scope on server with forupdate. The error saying that record was not selected for update was thrown. But solution can be found in "Inside Dynamics AX" book. Method can be called with parameter true. New CLR...
axdevposts.blogspot.com
AX Developer tips: Summary update "Invoice account" doesn't work for intercompany sales orders
http://axdevposts.blogspot.com/2013/10/summary-update-invoice-account-doesnt.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Thursday, October 17, 2013. Summary update "Invoice account" doesn't work for intercompany sales orders. I have discovered a strange behavior of AX (AX2012) with regards to intercompany orders and summary update. SO 101 - PO 102 - SO 102. Intercompany is configured to post packing slip (product receipt) through the whole chain. Doing that we faced some severe performance problems, related to the ...
axdevposts.blogspot.com
AX Developer tips: July 2008
http://axdevposts.blogspot.com/2008_07_01_archive.html
This blog provides some developer tips and HOWTOs for Dynamics AX developers. I hope you'll enjoy reading it. Sunday, July 13, 2008. Dynamics AX Performance issue. Cross object references drawbacks. Recently I'm working on framework for Dynamics AX 4.0. Project includes form tree control data viewing. Basically tree framework includes class representing the whole tree and each tree node. After throughly debugging I discovered that there were huge delays in object assignment. Wednesday, July 2, 2008.