-
Everything about Flights in D365 F&O.
The primary purpose of flights and features both is to implement a controlled roll-out of new functionality into the product, so as not to disrupt existing business operations. One of Microsoft’s primary goals with OneVersion is to ensure we do not break anyone. A flight is a switch, which controls a certain, usually small, piece of business logic in the product, leading…
-
D365 F&O How to use Data management package REST Import API using flows/Logic app
Before using it you need to understand what is difference between importing file using REST API vs recurring integration. Choosing an integration API Two APIs support file-based integration scenarios: the Data management framework’s package API and the recurring integrations API. Both APIs support both data import scenarios and data export scenarios. The following table describes…
-
D365 F&O data element skipped when you copied database
When we create a copy of a database from an environment, some elements of the database aren’t exported in the copied database file. Here are some examples:
-
How to remove/handle unused financial dimension in D365 F&O vs AX 2012
Please be noted that a dimension can only be deleted if no references to any values for that dimension have been inserted into the dimensions tables. For example, I create a new Financial Dimension Use value from Custom dimension and add some values on it, but I have yet to add this dimension to Accounting…
-
Automatic Priority settlement for customer payment in D365 F&O
To start with Automatic settlement for customer payment, we have to do initial setup as per our requirement. Setup: To use priority settlement *** If there is no user-defined settlement priority, transactions are automatically selected for settlement based on the due date. The transactions that are settled must have the same currency as the transaction…
-
How to change Exchange rate Engine in F&O using X++
Here many people ask can we change or create exchange rate engine to download data in D365 using custom code, Then answer is Yes, You can do pretty much in few steps if you have good understanding of API and X++ code. Here I am taking an example of Oando API. You can register on…
-
Scanning uploaded files for viruses and malicious code in X++ D365 F&O.
if you upload a file into the system using FileUploadStrategyBase and other medium, you might want to scan it for viruses or malicious code. Therefore, in version 10.0.12 and later, an extension point is available so that customers can integrate the file scanning software of their choice into the file upload process. Similar extension points are…
-
Form personalisation X++ change.
Small code will help you to understand if non admin user can see Administration information in form information screen. First you need to find form which is controlling is information. You need to create one dummy role so you can control based on that role. Create extension class for FormControlPersonalization form and create COC for…
-
Azure Function update to 4.x runtime
Import information to developer and user If you are using Azure function in integration or any other process, You need to update to 4.x for continued support. How to update function to 4.x version. You need to make changes to individual projects that you have created. I will suggest you to review the function migration document from…
-
Automate logic to disable/Enable Logic app from D365 F&O
Recently I got case where I have to enable/disable integration From D365 using check box, complete integration has been design using logic app, to Import or export file from 3rd party system. I wanted to enable to disable logic from D365 F&O, To achieve this behaviour you need to develop following Element I am not…