Dynamics CRM Web API Sample

…with the OAuth piece. Configure the app using these instructions. These samples on microsoft.com that go through CRUD operations using the Web API from a C# console application. Open the…

Installing and Setting Up Python for Power BI

…how to use Python in various scenarios in Power BI. To install Python for Power BI, first go to the Python download page at https://www.python.org/ and click on Downloads: Click…

Install Node on Windows

To install Node on Windows, first go to the Node website and select the version to download. We will install Windows 64 bit: https://nodejs.org/en/download/current/ This downloads the MSI file. Open

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…