Innovative and Proactive Applications - Better, Faster, Smarter
Traditional business applications evolved as passive, backward-looking systems of record. Microsoft Dynamics AX already changes that model today, introducing embedded, declarative workflow that brings...
View ArticleMicrosoft Dynamics Partner Roundup: Enhanced ActiveBatch for AX; nChannel...
In this week's Microsoft Dynamics partner news roundup: Enhanced ActiveBatch for AX; nChannel, Dynamics GP Help Herschel Supply Manage Fulfillment; myERPcloud Changes Name to goERPcloud David Dick, New...
View ArticleThe Soundex Algorithm (EN)
This is Part 1 of a 2 part article where I build a “Client-inception” PoC within Dynamics that uses the principle of Soundex for entity-duplication-checking. For those not familiar with the Soundex...
View ArticleThe Soundex Algorithm (DE)
And for my German collegues here is a version of the Soundex algorithm suited for German pronounciation. This is based on the Cologne phonetics algorithm. More information can be found here:...
View ArticleMicrosoft Dynamics AX 2009 AOS service terminated with Error Code 90
I have copied an application foloder to another instance, and I could not start the AOS service and getting this code “service terminated with Error Code 90″. I found this blog post...
View ArticleHodge-podge – 04/2013
This new “series” is intended to briefly mention various topics that I find interesting and/or useful, but they’re too short for a separate posts. I don’t currently want to spend more time with them or...
View ArticleHow to deploy all AX2012 report
Deploy all AX2012 report We have 3 different ways to deploy Dynamics AX2012 reports: Through AOT AOT > SSRS Reports > Reports > right click on report > Deploy Element Through Visual Studio...
View ArticleNeue Ressourcenseite für Dynamics AX 2012: Purchase Order Invoicing
Für Dynamics AX 2012 wurden eine neue Ressource Pages zum Thema “Purchase Order Invoicing” erstellt. Eine Übersicht über alle verfügbaren Ressource Pages (im Moment 6 Stück für AX 2012 und 6 Stück für...
View ArticleNew Resource Page for PO Invoicing for AX2012
New Resource Page for PO Invoicing! A new PO invoicing resource page is now live on the Communities site:...
View ArticleConvergence Encore UBAX05: Unlocking the Power of Social Media (May 2013)
AXUG Workshop – Convergence Encore UBAX05: Unlocking the Power of Social Media (May 2013) 05/01/2013 12:30 PM (ET) Don’t miss this exciting AXUG Workshop repeat from this highly rated AXUG led user...
View ArticleMicrosoft MVPs Wrap Up Convergence 2013
Whether you didn’t make the trip to New Orleans or just weren’t able to be everywhere at once, you can catch up with what Microsoft Dynamics MVP’s had to say about the event. Find out what...
View ArticleEDI Insight: EDI Support Is Critical to You, But Is It to Your Dynamics EDI...
From Glenn McPeak, Principal, Data Masons, and supply chain expert with over 25 years EDI/ERP solution consulting, software product design and management. When you evaluate and select ISV solutions to...
View ArticleProject Setup – Project Contracts
This week I wanted to do a series of posts on Project setup. The series will show the key setup steps required to create a new Project. First off is creating a new Project contract. The Contract is the...
View ArticleRunning AX2012 R2 locally on Windows 2012 Server booted directly from VHD
I have been working on a large project since a couple of months now and we use a virtualized environment where every developer has his own proprietary development machine. I am not going to make any...
View ArticleException Handling in Dynamics AX
Exception handling in Dynamics AX is a topic that is not discussed too often. I figured I would provide a quick musing about some of my favorite exception handling topics. Database Transactions...
View ArticleRandom String for Dynamics Password
Get random string password by using “ RandomGenerate ” class static void Raj_Password_Random() { int i; RandomGenerate random = new RandomGenerate(); str password; int passwordLength = 8 ; for (i=1;...
View ArticleDemystifying LEAN Subcontracting Setup for Microsoft Dynamics AX 2012- Part One
Introduction The subcontracting process for Microsoft Dynamics® AX 2012 resembles a large body of water that you need to cross. It is not difficult with the correct boat and small motor, you simply...
View ArticleHow to create and implement of surrogate keys in Ax2012
This post is a quick walk-through of how to create & implement of a surrogate key in a table in Ax 2012. Below example is a basic concept of creation and implementation of surrogate key in the...
View ArticleFind mandatory fields in a table
static void Raj_MandatoryFieldsOnTable(Args _args) { DictTable dictTable; DictField dictField; int i; TableId tableId = tablenum (CustTable); ; dictTable = new DictTable(tableId); for (i=1 ;...
View ArticleDynamics AX 2012 - X++ code to create & post General Journal
static void Raj_Demo_CreateGLJournalPost(Args _args) { AxLedgerJournalTable journalTable; AxLedgerJournalTrans journalTrans; container acctPattern; container offSetAcctPattern; LedgerJournalTable...
View Article