AX 2012 – Business Operation Framework - Create Batch without using...
Introduction:You can develop components / write business logic and later can be hosted as services on AOS with help of Windows communication foundation. These services later can be used by or...
View ArticleEnterprise Portal With SharePoint 2013 Installation & Configuration For...
In this blog, I will talk about how to install and configure the Enterprise Portal for Dynamics Ax 2012 R2.Before installing the enterprise portal, we have to check compatibility of the system, and...
View ArticlePowerShell and AXModel files
In AX 2012 there is a very high chance that you have to work with the new AXModel files.You may receive an ISV solution, or a Microsoft hotfix and you would like to know what is inside. If you have...
View ArticleDeleting duplicate records in Table through code in X++
static void DeleteDuplicate(Args _args){Set fieldset = new set(types::Integer);// create dictindex from unique index DictIndex dictIndex = new dictIndex (tablenum(PurchTable),...
View ArticleAX 2012 CIL - How does it work?
Hi There,On this post I would like to talk about a bit more about the CIL and what happens in the background. Recently I had to go through a process to find a CIL error I got after deploying a service....
View ArticleIL Compiles Explained
I've been asked several times what a Full or Incremental ILCompile is in AX 2012. If you have that same question here is somebackground information. IL stands for Intermediate Language it is shortfor...
View ArticleHow to: Open Visual Studio with a Specific Configuration [AX 2012]
You can configure Visual Studio to open with a specific Microsoft Dynamics AX client configuration. This causes Application Explorer to point to the designated configuration. A configuration is a group...
View ArticleTypes of MAP in dynamics AX
There are two types of Maps available in dynamics AX1. X++ Maps: it can be used as a temp data store for the given scope of a process. This takes us less over head, and is much quicker than a...
View ArticleHow to display/show the inventory dimensions as parameters on SSRS reports...
Today, I am going to help you how to display the inventory dimensions [product dimensions, storage dimensions, Tracking dimensions] on SSRS reports as parameters. Not clear? Please see the Report...
View ArticleQuery to get data less than date in ax 2009/ ax 2012
X++ Code to get the Ranges / Criteria from Query Following Job illustrates how we can get the criteria / ranges specified by the user in the run-time Query criteria dialog.static void...
View ArticleGet the underlying SSRS Report Query, reset query , add your own ranges and...
April 29, 2013 — Sreenath ReddyFriends,Below is the small code snippet to get the underlying query of the SSRS report, reset query, prompt the parameters form, add our own ranges and execute the...
View ArticleDisplay SSRS report based on customer/Vendor specific language [Dynamics AX...
April 24, 2013 — Sreenath ReddyFriends,Common requirement is to show the reports in customer’s language [example : Quotations, sales confirmations, invoices, Free text invoices, Return order...
View ArticleParameters Overview [AX 2012]
Applies To: Microsoft Dynamics AX 2012 R2, Microsoft Dynamics AX 2012 Feature Pack, Microsoft Dynamics AX 2012Parameters are used to filter the data that is displayed in a report, connect related...
View ArticleHow to format your number the CLR style
Converting (real) numbers to a string representation is a common requirement. There are different roads that lead to Rome, I'll show you some alternatives, which all have one thing in common: They all...
View ArticleHow to: Explode BOM through X++
1.Create a new Temporary Table with the following propertiesPropertieValueNameTmpBOMExplodeTableTypeInMemoryFieldExtended Data TypeBOMQtyBOMQtyItemIdItemIdItemNameItemNameLevelIntRefItemIDItemIdIt...
View ArticleCurrent session id
You can retrieve the current client session id by using the following function: SessionId().So, for example in a job, to show the current session idstatic void ClientSessionJob(Args _args){...
View ArticleIssue when you run the report Vendor invoice turnover with a user who is not...
When you run the report Vendor invoice turnover (Accounts payable - Reports - Statistics - Invoice - Vendor invoice turnover) by user who is not a member of role System Administrator, the report...
View ArticleUnretrieved values on the company info Table in AX 2012R2
Stack trace: Field ‘IsConsolidationCompany’ in table ‘CompanyInfo’ has not been explicitly selected.Solution:————go to db edit dbo.dirpartytable.isConsolidateCompany from null to 0
View ArticleTutorial: AX 2012 - Invalid field access or Accessing unretrieved fields
Read the post all the way until the end - there's an ask for you guys there!As many of you have already seen in the new AX 2012 release, there are a lot more tables present in the application, because...
View Article