Hiding the Command Bar and Navigation Bar in Dynamics 365

…hide the command bar. So it should look like: https://yourorg.crm.dynamics.com/main.aspx?etc=1&extraqs=formid%3d8448b78f-8f42-454e-8e2a-f8196b0419af&id=%7bB293B650-73FF-E611-8104-E0071B669E61%7d&pagetype=entityrecord&cmdbar=false: If we add &navbar=off it will hide the nav bar. URL: https://yourorg.crm.dynamics.com/main.aspx?etc=1&extraqs=formid%3d8448b78f-8f42-454e-8e2a-f8196b0419af&id=%7bB293B650-73FF-E611-8104-E0071B669E61%7d&pagetype=entityrecord&cmdbar=false&navbar=off#841249160 (Note the number like #841249160 appended to the…

Using EasyRepro for Automated UI Testing in Dynamics 365 Power Apps

…in the Microsoft.Dynamics365.UIAutomation.Sample project. Change: OnlineUsername, e.g. admin@CRM921352.onmicrosoft.com OnlinePassword, e.g. yourpassword OnlineCrmUrl, e.g. https://org5fd6d5d1.crm.dynamics.com/ Go to Test->Windows->Test Explorer: You should see something like: We will run CreateAccountUCI, which will create…

How to Secure an Azure App Service with Azure AD Authentication

…Code Callback URL: https://carlcrmapi.azurewebsites.net/.auth/login/aad/callback – from Authentication Redirect URL Auth URL: https://login.microsoftonline.com/directoryid/oauth2/authorize?resource=resourceid where directory id comes from the Overview page of the App Registration and resource id comes from the…

Open CRM Record by URL

…words in bold: http://yourcrm.crm.dynamics.com/main.aspx?etn=account&pagetype=entityrecord&id=%7BBFF9BC73-7DE9-E611-80F5-C4346BAD36FC%7D To create a new CRM record: https://yourcrm.crm.dynamics.com/main.aspx?etn=account&pagetype=entityrecord If using the Unified Interface (UI) / Unified Client Interface (UCI), the link to a record is: https://yourorg.crm.dynamics.com/main.aspx?appid=<appidguid>&pagetype=entityrecord&etn=account&id=<recordid>  …

Dynamics 365 Global Option Sets and Web API

…accessed through the Web API. To access them, go to the URL: https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions?$select=Name From here, the MetadataId value of the option set can be used to https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions(MetadataId) E.g. https://yourcrm.crm.dynamics.com/api/data/v8.1/GlobalOptionSetDefinitions(3de5f647-b149-4c82-b275-dd91e860b08d)  …

Dynamics CRM Integration Options

…connecting Power BI to Dynamics CRM. https://yourinstance.crm.dynamics.com/api/data/v8.1/ E.g. https://yourinstance.crm.dynamics.com/api/data/v8.1/accounts/ OData The OData endpoint is deprecated with the release of Dynamics 365, but is still available for compatibility purposes. https://yourinstance.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/  …