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 D365FO Interview Questions and Answers – 2022
Tag: D365FinanceOperations
Best books for D365 F&O Developers and Consultants
In my experience with D365 F&O, I have read many D365 F&O books for developers and consultants. I think that reading a book sometimes it's better to have a good understanding of how to do things in the best way and not just solve the problem. If you are a junior it's also a very… Continue reading Best books for D365 F&O Developers and Consultants
How to create a find and exist method in D365 F&O
All tables in D365 F&O should have at least one find method. What is a find method? It's a method that selects and returns one record from the table that matches the unique index specified by the input parameters. The last input variable in a find method must be a boolean variable usually called '_update'.… Continue reading How to create a find and exist method in D365 F&O
How to update data in D365 F&O
The most usual thing that a developer has to do is to work with data. In our previous blog, we talked about How to insert data in D365 F&O. In this article, we will show some ways to update data in D365 F&O. Based on my experience I think that the best way to learn… Continue reading How to update data in D365 F&O
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 add a new document in Print Management setup in D365F&O – using X++
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 How to create a new number sequence in D365 F&O – Using X++
Dynamics 365 F&O – Apply the latest platform update to environments (LCS)
Dynamics 365 F&O - Apply the latest platform update to environments (LCS) In this post will explain how to apply the latest platform release to your Finance and Operations environment. In our example we have a new release to update (Service Update - 10.0.16), First step is to open LCS and login, after this we… Continue reading Dynamics 365 F&O – Apply the latest platform update to environments (LCS)
Dynamics 365 FO: Import data from Excel using X++
Scenario: Sometimes consultants don't want to use the Data Management in D365 due to a lack of data structure knowledge, a short timeline, or many table relations. They want to import from Excel to all related tables in one shot using x++. Solution: Prepare a batch class for importing master data. I normally use this… Continue reading Dynamics 365 FO: Import data from Excel using X++
Display method not found, missing module reference? – D365 FO
Display method not found, missing module reference? - D365 FO I got this error during building a new form in D365FO Errore message display method 'mcrlsMerged' defined on 'CustTable', referenced in data source 'CustTable' of form 'Prefix_CustTableListPage', returns type 'MCRMergeIndicator' which is not recognized. Are you missing a module reference? This clearly points us to… Continue reading Display method not found, missing module reference? – D365 FO
Deleted Actions/ OnDelete with Example – Microsoft Dynamics 365 F&O
Deleted Actions/ OnDelete with Example - Microsoft Dynamics 365 F&O Delete Actions and OnDelete property indicates how deletions in the main table are handled in the related tables or child tables. There are 3 types of options are available i.e. Cascade, Restricted & CascadeRestricted. The delete action and OnDelete property (available only for Microsoft D365… Continue reading Deleted Actions/ OnDelete with Example – Microsoft Dynamics 365 F&O