Using JavaScript to Add Spinner and Block UI in Dynamics 365 and Power Apps

In Power Apps and Dynamics 365, when writing custom JavaScript code, you may want to stop users from interacting with the user interface while your JavaScript code is processing. An example of this might be when a user clicks a custom button and some code runs, and while the code is running we want to display a “Processing” message until the code is complete. We can do this easily in … Continue reading Using JavaScript to Add Spinner and Block UI in Dynamics 365 and Power Apps

4 Years Ago Today at eXtremeCRM 2015 Conference in San Diego

I saw a photo come up in my social media feed from 4 years ago today at the eXtremeCRM 2015 (now eXtreme365) Conference in San Diego. What do you think, pretty accurate? Great conference, how time has flown and things have changed since the Dynamics CRM 2016 release preview.

How to Set Button Icons in Unified Interface and Dynamics 365 Power Apps

Let’s say we want to set an icon for a button on a form in Power Apps / Dynamics 365. We will use the Ribbon Workbench to do this. Let’s add this to our Account form. First, create a solution and add the Account form: To add buttons to the Unified Interface, we will use SVG images. For the Web Client, we will use PNG images. There are online tools … Continue reading How to Set Button Icons in Unified Interface and Dynamics 365 Power Apps

How to Setup and Configure Dynamics 365 Portals

In this post, we will look at installing and setup of Dynamics 365 Portals from the Dynamics 365 side. To do this from the Power Apps side, see here. First, let’s head over to the Dynamics 365 Admin Center. To get there, go to https://www.office.com/: And select All Admin Centers: Then Dynamics 365: Select your Org, then Applications: Find Portal Add-On, and then Manage: We are taken to the PowerApps … Continue reading How to Setup and Configure Dynamics 365 Portals

Calling a Microsoft Flow from Dynamics 365 and PowerApps using JavaScript

In our previous post, we send a POST request to a Microsoft Flow. We showed how to do this using the Postman application. Let’s now run this from Dynamics 365 / PowerApps. On our Account page, we have a field called Partner Ranking. We see the ranking for the current account is set to 7: Now let’s say we want to post a message to a Microsoft Teams channel when … Continue reading Calling a Microsoft Flow from Dynamics 365 and PowerApps using JavaScript

Adding a Model-Driven App to a Dynamics 365 Environment

Consider the scenario where you have an existing Dynamics 365 environment and you want to create a new app for users to access and use. Let’s look at how to do this. First, let’s look at my Dynamics 365 environment. I already have several apps installed: I can select an app such as the Sales Hub, and it will open the App: Now let’s say I want to create a … Continue reading Adding a Model-Driven App to a Dynamics 365 Environment

Calling the Power Apps and Dynamics 365 Web API from the Postman Windows Client

This is an update to the post I wrote in 2017 on using Postman to access the Dynamics 365 Web API. In this updated post, we will use the latest Postman Windows client to access the Power Apps and Dynamics 365 Web API, going through the setup required. Setup Azure AD App First, we will need to register an app in Azure. Go to https://portal.azure.com/ and select Azure Active Directory: Select … Continue reading Calling the Power Apps and Dynamics 365 Web API from the Postman Windows Client

Enabling High Density Headers in PowerApps and Dynamics 365 Forms

In the October release of Dynamics 365, headers of forms can be displayed as high density or low density. In this post, we will look at what this means and how to use it. In Dynamics 365 forms, there is a Header section. The section displays right at the top of the form, and displays information that a user may want to see consistently when viewing a form and scrolling, … Continue reading Enabling High Density Headers in PowerApps and Dynamics 365 Forms

Configuring App Suffixes for Friendly URL Names for Dynamics 365

In Dynamics 365, we can set “friendlier” URLs for each of the apps we create. Let’s look at how to do this. First, go to your apps by logging into https://yourorg.crm.dynamics.com/apps. You will see your apps displayed: Let’s navigate to our Blank Test App by clicking on it. It takes us to a URL with the AppId appended to it: Let’s add a URL to our Blank Test App by … Continue reading Configuring App Suffixes for Friendly URL Names for Dynamics 365

Debugging a Custom Workflow Activity in Dynamics 365 and PowerApps

In the previous post, we created a new Custom Workflow Activity and used it in a workflow. Let’s look at how to debug one of these. Open the Plugin Registration Tool (PRT) and select Install Profiler: This may take a few minutes. Once installed, you will see the Plugin Profiler at the bottom of the list: Right-click it and select Start Profiling Workflow: Find your workflow in the list and … Continue reading Debugging a Custom Workflow Activity in Dynamics 365 and PowerApps