XrmToolBox Error When Loading

…go to: %appdata%\MscrmTools\XrmToolBox\Plugins\ Copy the files from the Plugins folder to a new folder. Open XrmToolBox. The Plugins folder will be recreated, but you will lose some previously installed plugins….

Debugging JavaScript Functions Through Console

…separate file called myscript.js to demonstrate calling functions in separate files. Save as a separate file: Let’s add a link to the new script, and keep the call to the…

Dynamics 365 Get Id of Current Record with JavaScript

To get the Id of the current record: var id = Xrm.Page.data.entity.getId(); To get the entity name: var entityName = Xrm.Page.data.entity.getEntityName(); For more information see the Microsoft website: https://msdn.microsoft.com/en-us/library/gg334720.aspx  …

Upgrading to USD 3.3

complete, we will see the solutions have been upgraded: We can now download the 3.3 client: Run the exe to install. Launch USD, you will see the new version:  …

Creating a Basic Dynamics GP SSRS Report

…will display customer information, so “Sales”: Select the Report Builder link to open Report Builder: Select the Table or Matrix Wizard: Click Create a New Dataset: Browse out to your…

WCF Specify Names of Contracts

test client, we see: The code for this is: using System; using System.Collections.Generic; using System.Linq; using System.Runtime.Serialization; using System.ServiceModel; using System.ServiceModel.Web; using System.Text; namespace Carl.TestWCF { [ServiceContract] public interface IService1…

Introduction to Agile Methodology

…was developed. Originally, software was developed using a series of phases. These were typically: Analysis Design Code Test Deploy Maintain Each time software was developed, a team would analyse the…