- May 18, 2022
Dynamics 365 Wave 2 has introduced an advanced and time saving feature to Add Ribbon Buttons within Power Apps. Now it will take less time for Ribbon Button Customizations. Adding Ribbon Buttons using Ribbon Workbench is very complicated and time-consuming. Ribbon Workbench takes much time while loading and publishing solution. This features includes a lot […]
Introduction Previously, when we wanted to compose or update an email from the timeline, the form would open in a new window. And, even for attachments, we can’t preview them, we have to download them to view them. Which was not a user friendly way. In this blog, I have explained how we can create […]
Introduction To maintain the integrity of data, we should have rules in place to reduce duplicate records in the system. If we have duplicate detection rule, then system will automatically notify us about possible duplicate record when we create or update a record. But if we want to detect duplicate records in bulk, then we […]
In this blog, we will see how we can retrieve the details about “Entity Main” Form. Details such as No of attributes present on Form. Section Tabs Id We can use below method to retrieve details about entity main form. Xrm.Utility.getEntityDefaultMainFormDescriptor(entityName, formId); Here, Note: If we don’t specify the FormId then above method will select […]
In this blog we will see how we can restrict the customer lookup type field to show only account or contact without using “addPreSearch” method. To restrict the customer lookup, we can use below method. For more info: https://docs.microsoft.com/en-us/powerapps/developer/model-driven-apps/clientapi/reference/controls/setentitytypes Example. On Case entity, we have added below code on form load to restrict the customer […]
Introduction: New feature is added to dynamics 365 which allows you to search for a record in the current view only. In this blog, I am going to explain how to limit the search to the current view only. Step-by-Step: Go to Settings -> Administration -> System Settings -> General. Find “Set up Search” heading […]
Introduction In this blog, we are going to learn how to create a Scheduled flow using Power Automate. Scheduled flows are a great way of automating certain processes required to be performed at certain intervals. Example Suppose we want to qualify all the open leads on daily basis so we will use a scheduled flow […]
Create Notes record with Attachment for Contact Entity var note = {}; note.subject = “Notes Subject”; note.notetext = “Notes Text”; note.filename = “FileName.txt”; note.documentbody = “Base64String”; note[“objectid_contact@odata.bind”] = “/contacts(00000000-0000-0000-000000000000)”; Xrm.WebApi.createRecord(“annotation”, note).then( function success(result) { alert(“Success”); }, function(error) { alert(error.message); }); Note:- While setting object ID or regrading lookup we have to specify entity name with […]
Introduction In this blog, we are going to learn how to set a scheduled flow to run on specific dates of a month. We all know that a scheduled flow can be set to run based on a day/weekly at a specific time of the day. But making it run only at particular dates of […]
Introduction Recently, we had a requirement to update a field on opportunity record whenever an opportunity was closed as won. My first thought was that it was pretty straightforward and registered the plugin using this step: Message – Update Primary Entity – opportunity But it did not fire the plugin when opportunity was closed as […]
Let started with our D365 Quickstart package and get onboard within 7 days!
I'M INTERESTED!