Assign a User’s Manager in Office 365

To assign a user a manager in Office 365, go through the following steps. Go to https://admin.microsoft.com/ and select to manage Exchange: Select recipients from the left, then the user…

Enabling Flow on Dynamics 365 Forms and Site Map

…Flows. Click to Create a flow: This will take you to below. Click Continue: You may see “When a record is select (deprecated)”: Click Delete: Add a new Trigger, searching…

Checking Dynamics 365 Service Status

To check the status of the Dynamics 365 service, as well as other Microsoft services, first log in to: https://portal.office.com/ Expand Health, and select Service Health: On the right, you…

Advanced Find URL in Dynamics 365

The Advanced Find in Dynamics 365 can be accessed directly through a URL. That URL is: https://yourcrm.crm.dynamics.com/main.aspx?pagetype=advancedfind The advanced find page will then load:  …

Getting Local Option Set Metadata with WebAPI and JavaScript

…var req = new XMLHttpRequest(); req.open(“GET”, Xrm.Page.context.getClientUrl() + “/api/data/v8.2/EntityDefinitions(LogicalName=’contact’)/Attributes/Microsoft.Dynamics.CRM.PicklistAttributeMetadata?$select=LogicalName&$filter=LogicalName eq ‘new_contactpriority’&$expand=OptionSet”, true); req.setRequestHeader(“OData-MaxVersion”, “4.0”); req.setRequestHeader(“OData-Version”, “4.0”); req.setRequestHeader(“Accept”, “application/json”); req.setRequestHeader(“Content-Type”, “application/json; charset=utf-8”); req.setRequestHeader(“Prefer”, “odata.include-annotations=\”*\””); req.onreadystatechange = function () { if (this.readyState…

Dynamics 365 – setSubmitMode in JavaScript

…a new account and enter a phone number: Click Save. After saving, the screen will refresh and the field will show as blank, i.e. not saved: For more information: https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/clientapi/reference/attributes/setsubmitmode…

Debug a Plugin – Persist to Entity

…was not completed for one or more records.” You may be running the profiler under the setting Exception: In order to get around the error, use the Persist to Entity…

WPF XAML Hello World

Here is a simple example to get started with Windows Presentation Foundation (WPF) and Extensible Markup Language (XAML). First, create a new Visual Studio project and select under Windows templates…