-
Configure Azure Application Insights for Power Apps Portals
Published by
on
Continue reading →: Configure Azure Application Insights for Power Apps PortalsApplication Insights provides valuable analytics into the usage and performance of apps. In this post, I’ll walk through how to enable Application Insights for monitoring your Power Apps portals. Why App Insights for Portals? Out-of-the-box, Power Apps portals lack detailed usage reporting. By integrating Azure Application Insights, portal owners gain…
-
Continue reading →: Remove irrelevant activities from timeline for a record, by removing the activity parties
Recently, I had faced an issue. A Contact record ABC was updated with email address 2 field to the Customer Service Email (customerservice@company.com) on the 10th of May. Upon investigating, one of the users intentionally updated this contact record.This led to all of the Customer Service emails getting tracked to…
-
How to call AddUserToRecordTeam action using Web API
Published by
on
Continue reading →: How to call AddUserToRecordTeam action using Web APINothing special, but I’m posting here a simple JS function that calls the AddUserToRecordTeam action using web API. It took some time for me, especially in setting/fixing the parameters. Posting here reference. Below is an example to call the above function:
-
Continue reading →: Upload a file to SharePoint document library using Power automate Flow
I had a requirement to upload a document to the SharePoint document library (integrated with the Account entity in dynamics CE) from the power apps portal, the portal supports uploading and displaying SharePoint documents as documented here ( by placing the document location subgrid on a portal basic/advance form), but…
-
Hide a ribbon button on SubGrid for specific primary entity
Published by
on
Continue reading →: Hide a ribbon button on SubGrid for specific primary entityWhen need to hide a button on a subgrid, we can solve this by just hiding the button. But in case we need to hide the button only on specific primary entities then we need to write/construct an enable rule. Here I was a having problem to hide the…
-
Dynamically Populating Ribbon Flyout Menu in Unified Interface
Published by
on
Continue reading →: Dynamically Populating Ribbon Flyout Menu in Unified InterfaceMy previous post Dynamically Populating Ribbon Flyout Menu describes the way to add flyout menu buttons dynamically, but that was limited to web client and was not working in unified Interface. As per my R&D and support ticket with Microsoft, we are still not able to add dynamic Flyout menu buttons directly…
-
Retrieve Multiple through fetch XML using Web API
Published by
on
Continue reading →: Retrieve Multiple through fetch XML using Web APIFollowing is a detail sample code to retrieve multiple records using fetchXml query using Web API in Dynamics CRM. You can call the executeFetchXml method as:
-
Retrieve Multiple using Web API
Published by
on
Continue reading →: Retrieve Multiple using Web APIFollowing is a detail sample code to retrieve a record using Web API in Dynamics CRM. You can call the above retrieveMultiple method as:
-
Dynamically Populating Ribbon Flyout Menu
Published by
on
Continue reading →: Dynamically Populating Ribbon Flyout MenuI was having a requirement to generate a dynamic ribbon menu under a button i.e. Flyout button menu sections, Here I want to share the steps for achieving this dynamic menu section. I have used Ribbon workbench and some JS scripts. We need to achieve the highlighted menu dynamically. Here…