AX 2012 R2 to AX 2012 R3 Upgrade
|

AX 2012 R2 to AX 2012 R3 Upgrade

The latest upgrade guide is very well written and covers the complete upgrade process.  However, I am listing down an overview of the upgrade process and things to remember before starting the upgrade. I hope, this shall enable you to achieve a smooth upgrade. Things to remember before starting the R2 to R3 Upgrade  Before installing AX…

|

Move objects from one layer to another in AX 2012 by retaining object ids

Hi Folks, In AX 2009, We had an option of importing the new objects with ids using xpo from one layer to another. However, In AX 2012, The object ids are installation specific and we do not have an option to import them with object ids and this may affect in losing the data. The…

|

Get Active workflow configuration

Hi Folks, The below code snippet would help you to get an active workflow configuration in Ax 2009 for a workflow template. WorkflowConfigurationTable  workflowConfigurationTable;    ;    select firstonly workflowConfigurationTable                                                where   workflowConfigurationTable.TemplateName   ==         &&                                                  workflowConfigurationTable.Enabled              == NoYes::Yes     &&                                                    workflowConfigurationTable.Type                 == WorkflowConfigurationType::Definition  &&                                                        workflowConfigurationTable.DefaultConfiguration == NoYes::Yes; Happy DAXing…………

|

Get fields set in the workflow configuration conditions

Hi Folks, I have been busy with my project for sometime and so couldn’t post anything on my blog. I have got an interesting post for today.  i.e., The below code snippet will help you to get the fields or parm methods which is set in the query condition of Workflow configuration in AX 2009. I hope this…

Compilation error in SysReportLibraryExport class
|

Compilation error in SysReportLibraryExport class

Hi Folks, Once I have compiled the complete AX 2009 environment on the Server where AOS is installed and found that there was a compilation issue in the Class declaration of SysReportLibraryExport class but it seems to be fine with other environments. I couldn’t get any clue why this happened suddenly and atlast I tried opening AX client of this…

|

insert_recordset doesn’t take the value of TableId from the value

Hi Folks, Today, I have observed a very strange thing in AX. I had to do a bulk insert from some other table where I also need to copy the tableId from the other table. I have found a strange issue i.e.,everything was getting copied except the tableId. You can try this in a job….

|

Cryptography in AX using CryptoAPI class

    Hi Folks, For some clients, you would require to encrypt some phrases or words like passwords. For this, we can use cryptography class(CryptoAPI) which would allow us to encrypt/decrypt the phrases. The following example explains about the CryptoAPI class.     CryptoApi cryptoApi;    Container cont,cont1;    ContainerClass cc;     ;    /* Salt is like a…

|

Microsoft Dynamics Most Influential People Top 100 for the year 2012

Hi Folks, I am honored to have been listed in this year’s(2012) Top 100 Most Influential people in Microsoft Dynamics conducted by DynamicsWorld.co.uk. For this year, I am ranked 77 in the Top 100 most influential people in Microsoft Dynamics in the world and ranked 6 in the Top 10 most influential people in Microsoft Dynamics…

AX 2012 and Microsoft Lync / Microsoft office Communicator
|

AX 2012 and Microsoft Lync / Microsoft office Communicator

Hi folks……….. AX 2012 is simply powerful………Microsoft Lync & Microsoft office Communicator have been integrated with AX 2012 and its pretty simple to do it………… But the Pre-requisites are AX 2012 client should be installed on your machine and you have to be logged into Microsoft Lync / Microsoft office Communicator.  Open Customer Details form ( Accounts Receivable –…

|

Installation of AX 2012 with SSRS and EP from scratch

Hi Folks, This post is about my experience and steps for installing AX 2012 along with EPand SSRS. I have been planning to install AX 2012 from scratch on my laptop along with SSRS and EP because I was not feeling comfortable with the VPC. In today’s post, I would like to explain you about my…