Category Archives: Dynamics AX
Load JSON data from Azure Blob Storage to Microsoft Finance and operation
In this blog we will see how to we can integrate data from Azure Blob storage to Microsoft Finance and operations. In this use case we are updating the data in the finance and operation destination Prerequisite: Azure Blob Storage Azure Finance and operation Step 1 : In this we will create the HTTP Trigger … Continue reading Load JSON data from Azure Blob Storage to Microsoft Finance and operation
Share Story :
Integrate Customers from Shopify with D365 for Finance and Operation using Microsoft flow
Using Microsoft flow you can automate and organize the flow of data between your Shopify and Microsoft D365 for Finance and Operation This the 1st part of 2. In this, I will show you how customers can be auto-created in D365 for Finance and Operation when it’s created in Shopify. First, log into Shopify as … Continue reading Integrate Customers from Shopify with D365 for Finance and Operation using Microsoft flow
Share Story :
How to enable out of the box hyperlink feature for SSRS Reports in D365 Finance and Supply Chain Management
In D365 Finance and SCM there are lot of out of the box SSRS reports in which you have hyperlink to move to that particular record (for example Ledger transaction list). But sometimes when you update environment you might end up with no such option in you SSRS report as you can see in following … Continue reading How to enable out of the box hyperlink feature for SSRS Reports in D365 Finance and Supply Chain Management
Share Story :
How to export projects layerwise in Microsoft Dynamics AX 2012
Introduction: How to export projects layerwise (usr, cus, var, etc.) in Microsoft Dynamics AX 2012? Details: Here, we will see how we can export the projects from AX 2012. Now It’s very easy to do so. We need to create a class or job in the respective environment and just need to do run. static … Continue reading How to export projects layerwise in Microsoft Dynamics AX 2012
Share Story :
Import, Export and Uninstall the model from Microsoft Dynamics AX 2012
Introduction: In this blog, we will see how we can import, export and uninstall the model from Microsoft Dynamics AX 2012 Details: Prerequisite for import, export and uninstall the model from the environment, run the command prompt as in administrator mode. Form Importing the model script: Install-AXModel -File “Path_Of_the_Model_File” -server ServerName -database DatabaseName_Model –Details Exmaple: … Continue reading Import, Export and Uninstall the model from Microsoft Dynamics AX 2012
Share Story :
What is Kernel Hotfix and Application Hotfix in Microsoft Dynamics AX 2012?
Introduction: In this blog, we will see what includes in Kernel Hotfix and Application Hotfix in Microsoft Dynamics AX 2012. Details: 1. Kernel Hotfix: · This hotfix updates Microsoft dlls. E.g. update are the executable files (ax32.exe, ax32serv.exe) and assemblies (Microsoft.Dynamics.AX.*.dll) · There are no code-level changes. · This hotfix required to install … Continue reading What is Kernel Hotfix and Application Hotfix in Microsoft Dynamics AX 2012?
Share Story :
Import CSV file in D365 for Finance and Operation using X++
Below is a simple example for importing data from CSV file in D365 FO using X++: /// <summary> /// import color code /// </summary> class CFSImportColorCode { /// <summary> /// main /// </summary> /// <param name = “_args”>_args</param> public static void main(Args _args) { AsciiStreamIo file; Array … Continue reading Import CSV file in D365 for Finance and Operation using X++
Share Story :
Change RFQ purchase order status as draft insted of default approved
When we create purchase order using RFQ its default approval status will be approved. To change that status to draft write following code where we will change its status to draft. create new class and add following code class CFSPOStatusRfq { [PostHandlerFor(classStr(PurchAutoCreate_RFQ), methodStr(PurchAutoCreate_RFQ, endUpdate))] public static void PurchAutoCreate_PurchReq_Post_endUpdate(XppPrePostArgs args) { //PurchTable … Continue reading Change RFQ purchase order status as draft insted of default approved
Share Story :
Financial Dimensions in Retail Stores and payment methods in D365 Commerce and Retail
Overview: As we are aware that Financial Dimensions are available for user to identify the posting routine of payments, sales, purchases etc in the ledger account. These values are selectable / mandatory at all checkpoints on D365 FNO. However, in retail we would have to configure the financial dimensions in Retail Store or Payment Methods … Continue reading Financial Dimensions in Retail Stores and payment methods in D365 Commerce and Retail
Share Story :
Your connection is not private | NET::ERR_CERT_DATE_INVALID Error in D365 Finance and Operations
As seen in title when error “Your connection is not private | NET::ERR_CERT_DATE_INVALID” occured which seems as follows in screenshot when you try to open environment link in browser. The reason for above error in my case was that SSL certificate was expired as you can see in following screenshot To solve this issue go … Continue reading Your connection is not private | NET::ERR_CERT_DATE_INVALID Error in D365 Finance and Operations