Category: Dynamics 365 – new UI

  • How do I pass executionContext as a parameter into my Promise to fit in Promise.all()?

    To be honest, this post should be a bit longer with more details but I like it this way. This is a sample below. It looks cool. And I building one of my own. But I need it to work with my onSave form validation. I am making two Web API calls to query data…

  • Dynamics 365 solution error - Components are missing, import the managed solution with these Components (Active)!

    I was importing my unmanaged solution then the error has occurred. I was using a new UI. After spending some unpleasant time researching and trying different things I came across this post in the Hosk’s blog: https://crmbusiness.wordpress.com/2020/06/02/dynamics-365-solution-error%e2%80%8a-%e2%80%8acomponents-are-missing-import-the-managed-solution-with-these-components-active/ Thank you very much, Hosk, you are truly marvelous! I realized that I have to switch to the…

  • Field Service upgrade: where is my button?! 🤔

    With the new Power Apps admin portal if you want to upgrade the Field Service solution you have to do the following: Go to Power Platform Admin center: https://admin.powerplatform.microsoft.com/ 2. From the left navigation Resources -> Dynamics 365 apps: 3. Select Dynamics 365 Field Service. 4.Click on … then click on Install. It looks scary…

  • Xrm.WebApi. “The query parameter $select is not supported” error.

    Don’t be like me! This is the JavaScript: var uriClientLegacy = “?$select = cca_legacyservicefee, defaultpricelevelid & $filter=accountid eq ” + clientLookupId; Xrm.WebApi.retrieveMultipleRecords(“account”, uriClientLegacy).then( function success(result) { … }, function (error) { console.log(error.message); // handle error conditions alert(error.message); }); And this is the execution result: {“error”:{“code”:”0x0″,”message”:”The query parameter $select is not supported”,”innererror”:{“message”:”The query parameter $select is…

  • Setting up non-admin users to create apps with AI Builder on a non-default environment

    Unlike for a default environment for a new trial environment, your Office 365 users won’t get the access automatically and you can’t manage this access via Microsoft Office 365 Admin portal. Or even via model-driven UI for your newly set up environment. You have to add users one by one using the steps below. From…