Get AX Data Set Current Row on EP
private DataSetViewRow CurrentRow { get { try { DataSetView dsv = this.dsImportRadioEquip.GetDataSet().DataSetViews[this.gvModel.DataMember]; return (dsv == null) ? null : dsv.GetCurrent(); } ...(read...
View ArticleFind axbound field on EP
static AxBoundField GetField(DataControlFieldCollection fields, string name) { foreach (DataControlField field in fields) { AxBoundField boundField = field as AxBoundField; if (boundField !=...
View ArticleGoing Native or Hybrid? The Case for Each
How can you effectively connect to your customers? One of the most effective tools is a mobile application. “Great,” you say. “All I have to do is create a mobile app, and clients will beat a path to...
View ArticleForm created in e.g. AX 2012 RTM or AX 2012 R2 with ManagedHost control on...
Applies to AX 2012 R2 & AX 2012 R3Consider the following scenario:When a form is created in e.g. AX 2012 RTM or AX 2012 R2 and a ManagedHost control is added on its design,like...
View ArticleWhat-if costing in AX 2012 R3
Although most of the following is do-able in earlier Dynamics AX versions – the last step (the Cost comparison report) is only available in Dynamics AX 2012 R3. The scenario we’re working on...(read more)
View ArticleFive Things to Consider When in The Market for a Time & Attendance Solution
One thing that I have noticed working with companies to improve their time and attendance is that clients can be easily overwhelmed with shiny new features they want, and further down the line, end...
View ArticleWhy to check references of your clients (or employers)
Today I got a call from a really brave recruiter (let’s call him Jamie F.). Why brave? Last year he got me on project where I was robbed by its project manager, Jamie didn’t care at all and the agency...
View ArticleAX DB restoration: Databsae goes into “Restoring” state for long
Sometimes while restoring the AX DB , after completion of this process respective DB stuck into “Restoring” state You need to run below query to fix this. RESTORE DATABASE [DataBase Name] WITH...
View ArticleError while Confirming PO, and in Sales Order
Hi, After applying one HotFix, I got many weird issues, some are mentioned below 1. I wasn’t able to confirm any Purchase Order 2.Not able to proceed Sales order to Warehouse. 3.While packing...(read...
View ArticleSystem trade line number increment is not specified.
I faced one Error while creating Purchase Order from Approved Purchase Requisition Error Message: System trade line number increment is not specified. Purchase order creation has been cancelled...
View ArticleAX 2012 | Import Data From an ODBC Through DIXF
Microsoft Dynamics AX 2012 Data Import/Export Framework provide the functionality to import data from an ODBC data source into Dynamics AX. In this post we will illustrate how to import Vendor data...
View ArticleHow to export the data in file by DIXF with multiple functionality.
What is select button How to enabled the select button. How to execute export process with parallelism (multiple threads) What is bundle size. How to bulk update the target data...(read more)
View ArticleDebugging TF Build template for AX
I’m preparing a build of a Dynamics AX 2009 environment using Team Foundation Server 2013 and libraries from Dynamics AX Admin Utilities. Unfortunately the build failed with the following...
View ArticleAnnouncing support for SQL Server 2014 SP1 and .NET 4.6 with Microsoft...
We are happy to announcecompatibility for below Microsoft products:Microsoft ProductMicrosoft Dynamics AX VersionsSQL Server 2014 SP1Dynamics AX 2012 R2 Cumulative update 8and Dynamics AX 2012 R3...
View ArticleEnterprise Asset Management in AX 2012
You’ve probably noticed by now that these posts are my personal take on implementing Dynamics AX (that is that the opinions in these posts are my own, and do not reflect the position of my...
View ArticleHow to get Next RecId through X++
Below piece of code can be used to retrieve next record Id from the table.staticvoidgetNextRecId(Args _args){ //Table that stores record ids details for tables SystemSequences systemSequences;...
View ArticleExploring Microsoft Dynamics AX Business Intelligence Out of the Box - Part 1
Much has been announced in the past two years relating to business intelligence by Microsoft. For the Dynamics AX user, consider the laundry list of technologies and concepts that are directly or...
View ArticleAdd Serial number field to any table and increment that according to...
Originally posted on Learn Dynamic Ax with Johnkrish : Code: public void modifiedField(FieldId _fieldId) { FormLetterRemarks formLetterRemarks; super(_fieldId); select count(FormLetter) from...
View ArticleFilter Invent On -Hand based on WMSLocation
Today I have faced a issue how to show or filter data on InventSum Grid in EP from WMSLocation i.e. for each location there should be Invent On-hand data. Same as AX 2012 R3 rich client in EP....
View ArticleAny currency to accounting currency in AX 2012
Any currency to accounting currency in AX 2012 Currency::amount(markupTransAllocate.Value, markupTransAllocate.CurrencyCode); Regards Arun(read more)
View Article