In this article, we will try to help you with some of the commonly asked questions in technical interviews. If you are going to attend any D365 FO technical interview this will be very helpful for you. I will try to help you also with a short answer about every question. 1. What is Dynamics... Continue Reading →
How to create a custom service in D365 F&O
Using customs services is the most flexible and customized way to integrate with D365F&O. Custom services are created with X++ code and can be used for both data-based, and operation-based integrations. In this post I will show you how to create a custom service in D365 f&o using x++ language. In order to create a... Continue Reading →
How to add a new document in Print Management setup in D365F&O – using X++
Print management is the framework that we use in Dynamics 365 Finance and Operations S to configure print settings for various business documents (SSRS Reports), including sending emails, archiving, saving as a file, printing automatically, or just displaying at the screen. Print management setups are typically separated by module and for each module, there are... Continue Reading →
How to create a new number sequence in D365 F&O – Using X++
The main purpose of creating a new number sequence is to be used as a unique identifier, readable alphanumeric number for Master data or can be used as a business Id for transaction details records. In general, there is not any big difference between creating a new number sequence in D365FO and AX2012. To create... Continue Reading →
OnValidatedField table event handler method in Dynamics 365 F&O
OnValidatedField table event handler method in Dynamics 365 F&O Event handlers can be use to fire up your code without the necessary to customize and interfere on core logic and elements. On the example below i’ll create an event handler that will validate FirstName value of DirPersonName table. Open DirPersonName table and on tab Events... Continue Reading →
ODBC Connection in Dynamics 365 F&O
When we create the ODBC Connection in Dynamics 365 F&O? We create an ODBC connection in D365F&O when we need to read and write data on the DB from D365F&O,initially, we need a DB in SQL Server with which will make the connection. The exemple code to create connection: public void initialize() { str... Continue Reading →
Dynamics 365 Finance & Operations – How to use chain of command in X++ (CoC)
Dynamics 365 Finance & Operations - How to use chain of command in X++ (CoC) Chain of Command (CoC) enables strongly typed extension capabilities of public and protected methods. It is an amazing piece of development capability that allows technical consultants to extend the application avoiding over-layering. Microsoft has implemented Chain on command across Classes,... Continue Reading →