Content Preview: rss
11 hours ago
Today I received a mail from MS approving my AX Blog as a Microsoft Dynamics Related Community site. It gives me immense pleasure to announce you that my blog is a Microsoft Dynamics Related Community site. My Microsoft Dynamics Related Community site can be viewed from the following link https://community.dynamics.com/content/axblogs.aspx?groupid=21 Also a blog post is written introducing me to the MS community: https://community.dynamics.com/blogs/axnews/archive/2009/11/23/introducing-our-newest-ax-blogger.aspx Thank you to one and all for your constant support.9 days ago
The Application Integration Framework allows us to create/update/delete or read data. Now in AX2009 we have a facility of creating/deleting records using AIF Service classes. There is "NO ADDITIONAL AIF SETUP"(Like Enabling Endpoints etc.) required to execute the code via service class. The services can be used to read/write data in AX. X++ service class job is illustrated below. static void Services_CustTable_Create (Args _args) { // Customer Service class CustCustomerService custService; CustCustomer customer; // Data object of Service class CustCustomer_CustTable custTable; AifEntityKeyList entityKeyList; AccountNum accountNum; ; //Service instance custService = CustCustomerService::construct(); customer = new CustCustomer(); customer.createCustTable(); custTable = ...
11 days ago
The Technical white paper "Documentation resources for Microsoft Dynamics AX 2009" has been published. This white paper provides information about the documentation that is available for users, IT administrators, and developers. Download Center: http://www.microsoft.com/downloads/details.aspx?FamilyID=f4471844-dc4b-4e19-b2c9-c19442ab2991 Customer Source: https://mbs.microsoft.com/customersource/documentation/whitepapers/ax2009_docresources.htm Partner Source: https://mbs.microsoft.com/partnersource/deployment/documentation/whitepapers/ax2009_docresources.htm Technical white paper document provides the links on all of the following in a single click . Documentation resource for users. Documentation resource for IT Administrator. Documentation resource for developers.
14 days ago
“SysSpellChecker” as the name suggest checks the spelling mistake and provides you with the list of spellings that may be useful or applicable. Sample job is illustrated using SysSpellChecker class. AX spell checker class is integrated with Word where methods like below are provided by COM classes. · activeSpellingDictionary · Checkspelling · getSpellingSuggestions static void SysSpellChecker_AX(Args _args) { SysSpellChecker sysSpellChecker; container spellings; ListEnumerator listEnumerator; List spellingsSuggestions; int i; ; spellings = ['Tble', 'Comput', 'Mcrosft', 'Rlease']; // Get AX --> Current Language id // Construct the sysSpellChecker object. sysSpellChecker = SysSpellChecker::newCurrentDocumentationLanguage(); ...23 days ago
AX Developers just play around with infolog framework provided by Microsoft. But did we ever know what the maximum limit which an infolog can hold? Well… The answer is quite simple. Quick Lab: Run the following job and it would result in the following warning: “The number of messages exceeds the limit of the Infolog (10000.)” So maximum “MESSAGE LIMIT OF THE INFOLOG” in AX is 10000(By Default). But wait!!!!!! you can still increase this limit of an infolog???By increasing the local constant available inside the info-class in the method viewBuild (first line). (i.e. #define.MaxErrors(10000)) These messages is generated during the build of the tree, the rest of the Infolog-messages will be skipped, but are available in the temptable sysinfolog. There is another limit, errorsPerBatch, an info-method too, this limit will be checked every time you add a message to the Infolog AND during the build of the tree.


