D365F&O, Developer

D365FO Interview Questions and Answers – 2022

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

Developer

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

D365F&O, Developer

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

D365F&O, Developer

How to insert new data in D365 F&O

One of the things you will usually do in D365F&O is to work with data. In this article, we will learn more about different ways to insert new data in D365F&O using the x++ programming language. Before starting writing the code we need to find where to put our code. Usually, this depends on the… Continue reading How to insert new data in D365 F&O

AX 2012, D365F&O, Developer

Create new inventory dimension in D365 F&O.

Short intro of Inventory Dimensions. If we look at the InventDim table, the fields can be split up in 3 groups: Product DimensionsTracking DimensionsStorage Dimensions Apart those three groups are also 12 unassigned generic dimensions: InventDimension1 to InventDimension12. In the tracking dimensions group, fields InventProfileId_RU and InventOwnerId_RU are specified for Russian localization. those can be… Continue reading Create new inventory dimension in D365 F&O.

Developer

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 OnValidatedField table event handler method in Dynamics 365 F&O

Developer

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