Modifying a Dynamics 365 Form Section Layout

…the middle section. Anything in the right column will be deleted when we move to 2 columns: Now open the properties of the Summary tab. You will see there are…

Using Xrm.Page in Dynamics 365 HTML Web Resource

…<head> <title></title> <script src=”ClientGlobalContext.js.aspx” type=”text/javascript”></script> <script type=”text/javascript”> function ButtonClicked() { var userName = Xrm.Page.context.getUserName(); alert(userName); } </script> </head> <body> <button onclick=”ButtonClicked()”>Submit</button> </body> </html> Save and publish. Open an account: Press…

USD – CloseActive Action

In Unified Service Desk, CloseActive closes the active hosted control in the tab specified. For example, if we have a tab contact open in the LeftPanelFill, we can call CloseActive…

CRM Global Manager Hosted Control Actions and Events

…Close CloseActive CopyToClipboard CopyToContext CopyLogicalEntityToContext CloseActivity CreateEntity CreateSession DeleteEntity DoRoute DoSearch DisplayMessage ExecuteOnDataAvailable ExecuteOnTimeout ExecuteOnExpressionTrue ExecuteScriptlet FireEvent GetTemplate InvokeCTI IsAppLoaded LaunchURL LookupQueueItem MoveApplicationToPanel MoveToPanel New_CRM_Page Open_CRM_Page Pause Popup RealignWindow ReadSettings…

Unified Service Desk – RunXrmCommand Action

In Unified Service Desk, the RunXrmCommand command allows Dynamics 365 SDK JavaScript to be injected into a 365 form. For example, let’s say a Case is opened in a session…

Building an Azure Cognitive Services Face App – Part 1 Face Recognition

…class MainWindow : Window { private const string subscriptionKey = “yourapikey”; private const string baseUri = “yoururl”; // E.g. https://northeurope.api.cognitive.microsoft.com/ private readonly IFaceClient faceClient = new FaceClient( new ApiKeyServiceClientCredentials(subscriptionKey), new

Converting a Task to a Case or Opportunity

…Click Convert: The task is now an opportunity: Let’s create another task: This time we will convert to Case: Note the options. Click Convert: The new case will open:  …