Dynamics 365 WebAPI and C# – Configuring Sample Code

…https://code.msdn.microsoft.com/CRM-Web-API-Functions-and-a44416bb, with the code walkthrough at https://docs.microsoft.com/en-us/dynamics365/customer-engagement/developer/webapi/web-api-functions-actions-sample-csharp. In this post we will configure the code to run with Dynamics 365. First, click to download: You will see: Open the solution…

Finding the Power BI Desktop Version

…of Power BI Desktop, go to: https://docs.microsoft.com/en-us/power-bi/desktop-latest-update Below is the highlighted version, which shows my installation is due for an update. To update, download the latest version at: https://powerbi.microsoft.com/en-us/desktop/  …

Namespaces in JavaScript

…+ this.phonenumber; }; } // Create objects var Customer00001 = new MyCo.ERP.Customer(“Bob”, “Smith”, “bsmith@test.com“, “555-111-2222”); var Customer00002 = new MyCo.CRM.Customer(“James”, “Johnson”, “jjohnson@test.com“, “555-111-3333”); alert(Customer00001.GetCustomer()); alert(Customer00002.GetCustomer()); This will display 2 alerts…

Your Power BI Guide to American Football

…are led by star quarterback Johnny “Real-Time” Dimension, and The Cyans are led by their quarterback Joe “Mobile” Metrics. The Data Stats have been compiled all season. Just like the…

Query Dynamics CRM Through JavaScript

…leads where the lastname is “Cook”, the query would be: https://yourcrm.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/LeadSet?$filter=LastName eq ‘Cook’ To filter the LeadId our query will be: https://yourcrm.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/LeadSet(guid’id’) Now, we will use XMLHttpRequest to post to…

Query Dynamics 365 using jQuery

You can query Dynamics 365 data by using jQuery. Here we will go through an example. We will be connecting to the OData Web service. The URL will be: https://yourcrm.crm.dynamics.com/XRMServices/2011/OrganizationData.svc/…

Query Dynamics CRM through JavaScript with WebAPI

…below: https://yourcrm.crm.dynamics.com/api/data/v8.1/leads?$select=lastname To filter the LeadId our query will be (note no quotes or brackets): https://yourcrm.crm.dynamics.com/api/data/v8.1/leads?$filter=leadid eq id Now, we will use XMLHttpRequest to post to the web service and…

Power BI Service Administrator Role

…in Office 365. This role is called Power BI Service Administrator. To assign the role, log into https://portal.office.com and log into the Admin portal. Select Edit a User to edit…

USD Session Lines

…the assigned hyperlink. We could change the hyperlink here to something else or call a different command for example: https://msdn.microsoft.com/en-us/library/microsoft.crm.unifiedservicedesk.dynamics.actioncommands.aspx Note you can have multiple session lines per entity. Let’s…