In Microsoft Dynamics 365 for Finance and Operations and Microsoft Dynamics AX 2012, it is usually not a simple task for developers to get multiple selected rows using X++. In this article, I am sharing a code snippet and properties to set which will help…
Create movement journal using X++
In my this article, I will explain to you about how to create movement journal using x++. Here, you must know about that what is movement journal and…
Get number of attachments with document using X++
It is really tricky and difficult to get number of attachments with document using X++ in Microsoft Dynamics 365 for Finance and Operations. I will explain…
Calculate totals of RFQ reply using X++ in D365FO
It is often difficult to calculate the totals of RFQ reply using X++ in D365FO. The form of Totals in Manage replies form show Totals of RFQ reply, but it is difficult for developers to get them using X++ code. For this purpose, I am writing this article…
Calculate totals of PO using X++ in D365FO
It is often difficult to calculate the totals of PO using X++ in D365FO. The form of totals in Purchase order shows different totals of PO, but it is difficult for developers to get them using X++ code. For this purpose, I am writing this article to give you…
Create request for quotation using x++ in D365FO
Request for quotation (RFQ) is issued by organization to receive competitive offers from various vendors. In this technical article, you will create request for quotation using X++ in D365FO. Let's start! Create a runnable class (job) Paste the code in the…
Create purchase requisition using x++
A purchase requisition is an internal document that authorizes the Purchasing department to buy items or services. If you want to create purchase requisition using x++ in D365FO and AX 2012, you are at the right place. In my this article, I will show you how…
Create general journal using X++ in D365FO
General journal can be created using X++ code. This code which I am sharing in this article helps you to create general journal using X++ in D365FO. In Microsoft Dynamics 365 for Finance and Operations, creating the general journal through X++ is different…
Assign default values to form in D365FO
To assign default values to form in Microsoft Dynamics 365 for Finance and Operations is very common requirement. Event handlers in D365FO is very useful to implement the logic and fulfill the requirements of the clients. Importantly, there are many…
How to create date using x++
In every programming language, playing with date and time is always complex. As, date has different formats, different regional norms to write and more importantly different ways to store in the memory. In my this article, you will learn how to create date…
Get total debit and credit against voucher in x++
In Microsoft Dynamics 365 for Finance and Operations and Microsoft Dynamics AX 2012, it is really difficult to get total debit and credit against voucher of payment journal shown as follows: Total debit and credit against voucher Voucher debit and…
Custom number sequence in D365FO
What is number sequence? The number sequence is a series of numbers that are linked by a rule. It is very important for any ERP and business application. As, it saves the master and transnational data by an identifier. In this article, you will about how to…
Get company logo in SSRS report
Company logo is an important part of the SSRS report. Many developers and customization consultant often get this task to show the company logo on the SSRS report. To get company logo in SSRS report, there are two ways as follows: Static Dynamic Static: Using…
Running an SSRS report from the selected record
SSRS reports are used to display data in an organized way. It helps the users to get the data as per their own business formats and scenarios. In Microsoft Dynamics 365 for Finance and Operations or in Microsoft Dynamics AX 2012, SSRS reports play a vital…
Create SSRS report in D365FO
Create SSRS report in D365FO Microsoft Dynamics 365 for Finance and Operations and Microsoft Dynamics AX 2012 uses the SSRS reports for the business reporting purposes. It is a very important and significant feature. It helps the right users to get…
Format date using SSRS expression
A very common need is to format date using SSRS expression. I have formalized two expressions which helps you to meet a very basic requirement. It works for SSRS reports of Microsoft Dynamics 365 for Finance and Operations and Microsoft Dynamics AX 2012…
Get company address using x++ in D365FO
To get company address using x++ is a two line solution. I have seen many times that developers/consultants are confused about how to get the value. Below is the picture in which I have high-lightened the field which we will get using the code. Figure 1. Company…
Get display value from ledger dimension in D365FO
Ledger Dimension in Microsoft Dynamics 365 for Finance and Operations or in Microsoft Dynamics AX 2012 contains very important information. Actually, ledger dimension is just a number without any information. But, to get display value from ledger dimension…
Get main account from ledger dimension in D365FO
Dimensions in Microsoft Dynamics 365 for Finance and Operations or in Microsoft Dynamics AX 2012 are always have a very important role. Playing with dimensions is always a hectic thing. To get main account from ledger dimension in D365FO is a very common requirement.…
Customize SSRS report using extension in D365FO
I was fulfilling the requirement to customize SSRS report using extension in D365FO. Extending the data set and customizing the design using extension approach in D365FO is difficult but a journey full of learning. Previously, in Microsoft Dynamics AX 2012,…