How to Use Report Drillthrough in Power BI

…of how to do this. First, let’s connect to our data. We will use the sample data here. Pull it into Power BI Desktop using the Web Connector. Click Load:…

Create Record in Dynamics 365 using jQuery

To create a new record of an entity in Dynamics 365, use the code below: var account = {}; account.Name = “Sample Account”; var jsonAccount = window.JSON.stringify(account); if (typeof($) ===…

Unified Service Desk (USD) SDK

For Dynamics 365 Unified Service Desk, there is no specific Software Development Kit. There are however 2 components that essentially make up the SDK: UII SDK USD Developer Guide online…

Azure Cognitive Services Speech to Text Hello World in C#

…a new console app: You will see: Add Microsoft.CognitiveServices.Speech through NuGet: Click on the Solution->Configuration Manager: Change the platform to your current platform: Add the code. This is based on…

Using ExecuteTransaction in Dynamics 365 C#

…https://yourorg.crm.dynamics.com/;Username=your@email.com;Password=yourpassword”; CrmServiceClient conn = new CrmServiceClient(connectionString); IOrganizationService service; service = (IOrganizationService)conn.OrganizationWebProxyClient != null ? (IOrganizationService)conn.OrganizationWebProxyClient : (IOrganizationService)conn.OrganizationServiceProxy; var request = new ExecuteTransactionRequest() { Requests = new OrganizationRequestCollection() }; for (int…

Azure Blog and eBook

…App with Windows Azure Azure Active Directory Users and Groups User Joining Azure Active Directory Company Branding Virtual Machines (VM) Creating a Virtual Machine Delete a Virtual Machine Automatic Shutdown…

Installing the Field Service Mobile App for Dynamics 365

…link to find the links to your phone app: https://www.resco.net/support/downloads/ Select to Install: Select Internal User: Enter your credentials, i.e. your Dynamics 365 URL, email login, password. Press the refresh…