-
WORKING WITH POWER AUTOMATE & POWER APPS SOLUTIONS IN
In Power Platform, there are three keys in implementing digital transformation that you can apply. One is leveraging an application in Dynamics 365 suite like Finance and operation, Customer service apps and other application that is available which is prebuilt by Microsoft. Next, is AppSource were vendors build an application using Power Platform. And the last one…
-
Optimization Advisor : Workspace in Microsoft Dynamics 365 for Finance and Operations
The Optimization Advisor workspace was introduced with Microsoft Dynamics 365 for Finance and Operations (D365FO) version 8.0 and it has proved itself very useful in providing practical help for a company that is “live” on the system. In the workspace’s url identifies this as a “self healing” workspace, but that is not entirely true. The…
-
How to Troubleshoot Issues in XDS policy
How to Debug/Troubleshoot Issues If while using XDS you come across an instance where a user has more or less rows from a constrained table than you think they should you will have to try and debug the XDS policy. There are two ways of doing that: Another issue that you may see is a…
-
How to use Power Automate child flows
In case you just want to know what you need, here it is: Step by step: How to use Power Automate child and parent flows Understand everything it takes to reuse a flow. This very simple example shows you the necessary steps without adding unnecessary complexity. You will learn how to: This guide shows you…
-
Export data entity through code Dynamics 365 Finance and Operations X++
In this blog I will let you know about how to execute data entity export job through code. #DMF SharedServiceUnitFileID fileId; DMFDefinitionGroupName definitionGroupName = “MyUniqueDefinitionGroupName”; try { EntityName entityName = DMFEntity::findFirstByTableId(tableNum(BankPositivePayExportEntity)).EntityName; // Start:Optional if you want to filter data while exporting Query query = new Query(DMFUtil::getDefaultQueryForEntity(entityName)); QueryBuildDataSource qbds = query.dataSourceTable(tableNum(BankPositivePayExportEntity)); SysQuery::findOrCreateRange(qbds, fieldNum(BankPositivePayExportEntity, PositivePayNumber)).value(bankPositivePayTable.PositivePayNum); // End…
-
Power Automate – Copy/Duplicate a Flow in a Solution
Yes you can but only way is to edit the xml files. Follows the below steps: Note: Before you do this take a backup copy of your existing solution. 1. Export the current solution 2. Once the solution is exported then unzip the current solution 3. You will see the following files and directory 4.…
-
Activate Document management to attach document in all states
This is very simple approach you can take to allow user to attach document in all states. Example If you have one posted general journal and you wanted to attach document system won’t allow you do so, New button is disable in that case. You have quickly go to active document tables and add LedgerJournalTable.…
-
Run custom X++ scripts with zero downtime – D365 Finance and operation
As we know there are many issues, we face every day where data is not correct, and we need to write small script or runnable job to correct that data. But to do we need downtime in production and complete package deployment and build process is needed which is quite time taking task. Here with…
-
D365 Finance and Operations: Changes to Internal Access modifier in Version 10.0.25/PU49
There were some issues with the X++ compiler’s enforcement of internal rules, and the Microsoft team has now modified the compiler so that it can correctly diagnose the rules. In the upcoming April 2022 release, the Product team is going to change how we used to access internal method and classes in X++. Before we…
-
How to use finance and operations dynamics 365 site as Desktop APP.
Here is quick setting which will to make your user experience better with D365 FNO. Go to Edge browser, Open D365 FNO URL and setup your default legal entity, as show in below screenshot. Click on setting and go to app section to install your first app. 3. It will pop up window to enter…