Run book commands Version Update in Dynamics 365 for Operations

Commands for generating the run books in OneBox VMs AXUpdateInstaller.exe generate -runbookid=”sainaRunbook” -topologyfile=”DefaultTopologyData.xml” -servicemodelfile=”DefaultServiceModelData.xml” -runbookfile=”sainaRunbook” AXUpdateInstaller.exe import -runbookfile=”sainaRunbook” AXUpdateInstaller.exe execute -runbookid=”sainaRunbook” In case of any step failed, it can be corrected and rerun. AXUpdateInstaller.exe execute -runbookid=”sainaRunbook” -rerunstep=11

Downloading document attachment file as BASE64 string in D365

Download Document Attachment as Base64

How to Download Document Attachment as Base64 in D365 F&O In Dynamics 365 for Finance and Operations, files are stored as containers of data. We had a scenario to download this file and convert it into a base64 encoded string for transferring the data through the web service API. Detailed resolution steps refrenceRecId – RecId […]

Data entity view – Multiplication and Nested IF Conditions

We had a scenario to add a new field in the OData entity, which is the result of the calculation of another field; this calculation should work only for certain warehouses. During the course of this blog, you will learn the following: 1) How to use the view method for multiplication 2) How to use […]

Enable/Disable Custom Button In Model-Driven Apps- Security Role

How to Enable Disable Custom Button in Model Driven Apps We had a situation in model-driven apps where custom buttons created in Ribbon Workbench did not have direct security role access (Enabling custom buttons for one particular user and disable for another). Though we give only read access via security role for entities, the custom […]

How To Convert Data URI To String Format

How To Convert Data URI To String Format Power FX expression for converting dataUriToString() .  This scenario is mainly used to find the name and location of a resource file that is in a uniform format for websites.  High-level resolution steps  The given input gets converted from text to dataUri format with the compose action. […]

Create Custom Buttons Using Ribbon Workbench In Model Driven Apps

To Create Custom Buttons in Model Driven Apps with the help of the Ribbon workbench using JavaScript Code. High-level resolution steps Detailed resolution steps Step 1   Figure 1 – This code is for the Approve button, and on click of the button, the status changes from “Not Submitted” to “Approved”. Figure 2 – This code […]

How to move attachments in field from one entity to another

How to Move Attachments Between Fields in Power Automate To move the attachments that are available in the field from one entity to another using Power Automate. This Scenario is mainly used in the approval stages when a file/image has to be moved from one entity to another. High-level resolution steps Detailed resolution steps Step […]

PowerBI BYOD and Recurring integration Dynamics 365 Operations

PowerBI BYOD and Recurring integration

How to Configure PowerBI BYOD and Recurring integration with Dynamics 365 Operations Part 2: Power BI report development and pinning to Dynamics 365 for operations workspace This series is a continuation of Part-1: Data entity creation, Azure setup, and recurring integration setup. We will create a new Power BI report using Azure SQL BYOD data, which originates […]

Power BI BYOD & Recurring integration Dynamics 365 Operation

Power BI BYOD Recurring integration

Part-1: Data entity creation, Azure setup, and recurring integration setup Microsoft Power BI offers the capability to build stunning reports with various sources like Excel, CSV, etc. But now in this blog, we will discuss how Power BI BYOD Recurring integration with Dynamics 365 Operations. Not only creating a report out of the box reports […]

Part-2: Azure BLOB storage with Dynamics 365 for operations

Consuming files stored in the Azure Blob Storage within Dynamics 365 Finance and Operations using X++ code  Let’s consider a scenario where a third-party business application uses Azure Blob as a central repository for storing the files, which in turn needs to be consumed by Dynamics 365 Finance and Operations.  Following standard .NET libraries helps […]