Convert a PowerApps Trial to Production

To convert a PowerApps environment from a Trial to Production, log into https://admin.powerapps.com/ and go to Environments. Select the environment: On the right, click the Convert button: You will be…

Convert FetchXML to QueryExpression in Dynamics 365 with Web API Example

…name. E.g. https://yourorg.api.crm.dynamics.com/api/data/v9.1/accounts?$select=name,revenue&$filter=name eq ‘3M’ In Visual Studio, create a new Class Library: Click Next Add NuGet packages: Use the following code. We will use FetchXmlToQueryExpressionRequest and FetchXmlToQueryExpressionResponse to convert…

Deleting a PowerApps Environment

To delete a PowerApps environment, log into https://admin.powerapps.com/ and go to Environments, then select the environment. Click Delete: Enter the name of the environment to delete: You will see: The…

Using formContext in Dynamics 365

…loading the form, and the value will be populated: There are many other things you can do with executionContext and formContext. Check out here for more details: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/clientapi/clientapi-form-context    …

View Dynamics 365 Metadata Through URL

…Copy the Service Root URL: Paste this into a browser and add $metadata to the URL, so it should be: https://yourorg.api.crm.dynamics.com/api/data/v9.1/$metadata You will see the metadata for this organization:  …

Download the Common Data Model Poster

Quick link to the Common Data Model poster on the CDM GitHub Repository. A nice one to print out. “Integrate and Disambiguate Data with the Common Data Model” – https://github.com/Microsoft/CDM/blob/master/docs/CDMPoster_a3.pdf…

Installing Visual Studio 2019

The install Visual Studio 2019, go to https://visualstudio.microsoft.com/ and click Download: Select the edition. We will install Enterprise: Open the file. Click Continue: You will see: Now select the components…