“No device” error on AX Client startup
Hi EveryoneJ!!Today I came across one weird issue while opening AX2009; it was never an issue before.This error message is caused by the ActiveX component for the phone integration on form smmPhone...
View ArticleForm open through X++ code / Go to main table form
Hello guys J let me cover a very short topic on how to open a form in MS Dynamics Ax by code.Sometimes it is very essential to open a form (or) intermediate form through code in AX. Or when we...
View ArticleTo fetch IP address of system through X++
static void FetchIpAddress (Args _args){System.String hostName = System.Net.Dns::GetHostName();System.Net.IPHostEntry hostEntry =...
View ArticleCopying data from notepad to Dynamics AX
Hi friendsJ, Let me discuss a very simple customization wherein you would be required to fetch or bring the data which lies in your copy (ctrl + c). Let’s say in your notepad there is data “MS Dynamics...
View ArticleFailed to create session in MSD AX 2012.
Hello J I found one more strange issue today, when I tried creating SO (Sales order) an error prompts:Failed to create a session; confirm that the user has the proper privileges to log on to Microsoft...
View ArticleGlobalCache / Alternative to GlobalVariables in X++
Many times because of flawed implementation designs, we often need global variables. We may use a table with a key field and a container field for this purpose, but the simplest way of doing this will...
View ArticleHow to use Event Handler in Microsoft Dynamics AX 2012
Microsoft incorporated lot of beautiful new features in Dynamics AX 2012 and one of them is Event Handler. It’s a very nice feature of Dynamics AX 2012 which allows you trigger an event after or before...
View ArticleCrossCompany keyword in X++
Friends,Going to discuss a simple topic which sometimes play vital role in MSD AX.CrossCompany is the Keyword to get the data from another company.In X++, there is a new keyword crossCompany you can...
View ArticleError: “Request for the permission of type ‘InteropPermission’ failed.”
Many times we would like to call method from dot net assemblies (or) com so we have to assign permission to execute the code .below are ways can be used for CLR and COMAssign permissions to execute the...
View ArticleWrite into the System Event Viewer from Dynamics AX
Usually it will be difficult to monitor/debug Batch Jobs running on server . For example if something goes erroneous than it's not easy to find out from where and how its arising.So we can make use of...
View ArticleMicrosoft Dynamics Ax 2009 Three-Tier Architecture
The three-tier environment is divided as follows: Ø First Tier - IntelligentClient Ø Second Tier - AOS Ø Third Tier - DatabaseServer1. The AOS executes Microsoft Dynamics AX 2009 business...
View ArticleDynamics AX 2012 Navigation Overview
Dynamics AX 2012 Navigation Overview from Murray Fife
View ArticleRestrict user login for multiple times in ax2009 through X++
Copy Paste the Following Code in startupPost method of info class in AOT.void startupPost(){// To restrict user login form second loginxSession session;SysClientSessions SysClientSessions;UserId...
View ArticleSysInfoAction class / Go to main table from Infolog message in AX 2009 / AX...
The SysInfoAction class provides the ability to add an action to the standard infolog.The user can then perform the action by clicking the infolog. The SysInfoAction class can be extended to perform...
View ArticleOpen any object from code editor to in AOT node (Editor Script)
Using below code developer will have ease of opening any object from AX code editor to AOT node.Below image shows how to move in to AOT just by right clicking an object.And once you click on...
View ArticleAX 2009: Save the report in different format
In AX 2009, whenever a user runs a report, by default first it prints to screen.But sometimes, you want a report to go straight to the printer or save it in some format, without a user intervention....
View ArticleRecord level security (AX 2009)
Hi, Let me walk-through how we can create record level security through code.When you create record level security from front end, sometimes wizard doesn't show you the exact form or I can say it...
View ArticleSequence of Form's method in MS DAX
This gives the information of method calls in the form level while1. Opening the Form.2. Creating/Updating/Deleting the record in the Form.3. Closing the Form.Sequence of Methods calls while opening...
View ArticleTable collection and Virtual company in Dynamics AX
If we are using more than one company, sometimes, it will be useful to share data from tables with general information, like, tables storing data like zip codes and country codes. The most basic way to...
View Article