Category: Dynamics 365

  • 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…

  • Dynamics 365 CE: Investigating the conflicting business rules issue

    Recently, we run into the weird issue which we initially assessed as the upgrade to V9 related. The issue was that some form fields were aren’t marked as required based on the Account type based on the business logic. We use the unhealthy mix of scripts and business rules for the form logic. Also, we…

  • 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…

  • Power Apps Portal: deactivate account, no workflow please, thank you

    The real-life scenario: a portal user (agency) indicates that they don’t manage a particular property anymore. The action is performed via self-service portal. From a user experience perspective, the property has to “disappear” from the list of active properties immediately after “no manage” action is performed. If we choose to use Deactivate as an action…

  • Dynamics 365 CE/model-driven app: the form script unexpected discovery

    Something I won’t expect to discover. Yet, here I am! It’s all started with a very “simple” requirement to populate a read-only form field on change of another form field, Method. The fancy way it set up is when you select the field to change it pops up the window asking you if it was…