Dynamics 365 WebAPI and C# – Configuring Sample Code

Microsoft has downloadable samples that demonstrate using the Dynamics 365 WebAPI with C#. The samples contain examples of using HttpClient getasync, sendasync with JSON. The samples can be downloaded at…

Get and Set Field Values using FormContext and JavaScript with Dynamics 365 and PowerApps

…GetSet(executionContext) { var formContext = executionContext.getFormContext(); // Get value var website = formContext.getAttribute(“websiteurl”).getValue(); alert(website); // Set value formContext.getAttribute(“websiteurl”).setValue(“http://newvalue.com“); // Alert new value website = formContext.getAttribute(“websiteurl”).getValue(); alert(website); } Save and publish:…

How to Install SQL Server Management Studio from Download

To install SQL Server Management Studio (SSMS) without installing the full version of SQL Server database, go to https://docs.microsoft.com/en-us/sql/ssms/download-sql-server-management-studio-ssms?view=sql-server-2017 and click the Download link: Open the downloaded file: Click Install:…

Building Better Software – Best Practices

…DEVELOPMENT Test Driven Development, or TDD, is the practice of writing unit tests for a new feature before writing the actual code. You essentially write the unit test case, run…

Opening a Web Page in a Browser from a USD Menu

…a new action call: CRM Global Manager Action = LaunchURL Data = the website, i.e. https://bing.com Restart USD. We see the new button: This opens the website outside USD:  …