Problem solving in Dynamics AX – A quick check-list
Sometimes, when developing, AX doesn’t work as expected, or behaves weird.Here are some of the things you can try if you run out of ideas, below are some of steps.Try to Reproduce: You probably already...
View ArticleTerminology - MS AX Technical
Write: This method is invoked when a user inserts a new record or updates an existing one.If there are several data sources on a form and they are joined then the sequence of methods invoked on...
View ArticleWorkflow differences in MS AX Versions
AX 2009AX 2012> Separate workflow component have to be installed > Requires IIS and .NET Business Connector > Requires additional security setup > Simplify workflow deployment and...
View ArticleSSRS Reports in MS AX 2012 - Basic understanding
Hi Friends J Hope All is well…JThese days I’ve been focusing on the BI and reporting aspects that come as part ofMicrosoft Dynamics AX 2012. So just thought of throwing some light on SSRSreporting in...
View ArticleTable keys: Replacement key in AX 2012
Hello guys J today am going to walk through the different table keys in AX 2012 R2.As we know many different tables’ keys exist in AX 2012 such as Surrogate key, Alternate key, Primary key, foreign key...
View ArticleAX2012 R2: Creating Product or Product Master through X++
staticvoidCreateEcoResProduct(Args _args){ EcoResEcoResProduct_TrackingDimGroup tracDimGroup; EcoResEcoResProduct_Product_Master productMaster;...
View ArticleDialog in AX 2012 (MultiSelect control in Dialog):
Hi, let me walk-through the dialog feature in AX 2012.Sometime when developing complex functionality, Dialog plays a significant role. Creation of dialog always provide you lot of standard features...
View ArticleAX2012R2: Creating Financial Dimension Combination
In AX 2012 there are a couple of different ways you can programmatically create combinations of dimensions. These combinations are saved as records in the DimensionAttributeValueCombination table....
View ArticleFinancial Dimension - Lookup in AX 2012 R2
Look up to provide all the custom dimension (Even can be used in SSRS reporting using UI Builder classes)publicvoidlookup(){ Query query; SysTableLookup sysTableLookup; super();...
View ArticleDefault dimensions in AX 2012
Creating default dimensions for vendor or customer through X++:Created a class called “FindOrCreateDefaultDimension” and then utilizing its method “findDefaultDimension” whenever default dimension is...
View ArticleAX2012: Open Word Application through X++
Just a small snippet to demonstrate, how we can open Microsoft word application through X++.And this would be really significant when you want certain things to move from AX to Word for example print...
View ArticleAX 2012 / AX 2009: Layers object
Hi folks J today am going to illustrate the sample code which helps you in finding all the different objects in the specified layers.So Running the below code opens a dialog wherein we can select the...
View ArticleFilter on AX2012 Listpage
Hi Folks JToday’s post will help you when you need to have customize filter on list page form in AX 2012:As shown below:Shown above is “smmActivitiesListPage” where we have 3 different filter fields:...
View ArticleAX2012 R3: Lookup in Issue Search
Today’s post will be on AX2012 R3: Issue search Guys this is one of the wonderful feature introduced in R3 release, you sometimes find the different kind of issues in AX, so this is the page which...
View ArticleDebugging AIF Service in AX2012
Hi Guys,In this post we’ll take a closer look at debugging AIF services in Dynamics AX 2012. Debugging is a critical part of the development process as it helps you identify any defects in your code,...
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 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 Article