USD Versions

Below are the Unified Service Desk versions: Version Release Date Notes 4.0 August 20, 2018 Unified Interface apps support with Web Client to UI Migration Assistant, stop accidental closure feature, new UI KM control, and preview features – USD admin app, stack notifications, SwitchSession actions 3.3 April 24, 2018 Unified Interface, Best Practice Analyzer 3.2 March 14. 2018 Performance diagnostics, faster load times 3.1.0 Nov 8, 2017 TLS 1.2, inactivity … Continue reading USD Versions

Installing Dynamics CRM 2016 On Premise

Here we will go through installing Dynamics CRM 2016 On Premise. First, run the installation media. Select Install Dynamics CRM Server: Check one of the options: Click Next: Enter a product key: Click Accept: Click Install: Click Yes: Click Next: Click Next: Click Next: If you don’t see the servername, type it: Click Browse. Note – ensure you are part of the Administrators group in the local machine: Select the … Continue reading Installing Dynamics CRM 2016 On Premise

Dynamics 365 Performance Center

Dynamics 365 Performance Center is a tool available to troubleshoot performance. To use it, go to your Dynamics 365 instance in Internet Explorer. Then press CTRL-SHIFT-Q. The window below will open. Press Enable: Now, in another tab, select a record, e.g. an Account record. Press CTRL-SHIFT-Q again. You will see details on the load speed of the form: Go to the Global Objects Count tab and Enable: Reload the page and press … Continue reading Dynamics 365 Performance Center

Create Tabular Model in SSAS 2016

We will go through an example of how to create a new tabular model in SQL Server Analysis Services 2016 (SSAS). Open SQL Server Data Tools (SSDT) and create a new Analysis Services Tabular project:   A new project will be created: Model.bim contains the following properties: Add data source connection: Connect to SQL data warehouse: To add tables to the model, click Model->Existing Connections: Open: Mark the date table as … Continue reading Create Tabular Model in SSAS 2016

Azure Key Vault

Azure Key Vault allows you to encrypt keys used for authentication, storage accounts etc, in the cloud. They keys are protected by hardware security modules, or HSMs. In portal.azure.com, you can manage Key Vaults by searching for it in the menu:   Select Key Vault and Create: Create Key Vault will be created:  

Unit Testing with Visual Studio

In this post, I will show how you can use Unit Testing in Visual Studio. We will go through an example where we create some simple code and then unit test it. First, we will create a Visual Studio project as a class library: We are going to write a simple function to check if a character passed in is a vowel. Next, add a new project for our Unit … Continue reading Unit Testing with Visual Studio

Dynamics CRM Security

Dynamics CRM has different levels of security, including: Role-based Record level Field level To set up Dynamics CRM security, go to Settings->Security: From here, you will be able to define different levels of security. You can select a user to see which security roles they currently are assigned to, and also assign roles to them. To do this, select “Users” and then select a user: Select Manage Roles: View and select … Continue reading Dynamics CRM Security

Modify Quick Find Search in CRM

Dynamics CRM provides the ability to do a quick search. To do this, click on the search icon and enter your search terms: This will open the search screen below: You have the ability to filter based on the entities that are being searched. Note that there are only a select few entities that the search applies to: To add and remove entities, go to Dynamics CRM system settings and click Select: … Continue reading Modify Quick Find Search in CRM

Dynamics CRM Entity Relationships

In our movie example, let’s create a new entity called Actors. The entity will have a first name and a last name attribute. One movie can have many actors, and many actors can act in one movie. So, the relationship type will be N:N Relationship: Click New Many-to-Many Relationship. Select Actor as the 2nd entity: Now, go to the Movies entity and edit the form. Add a subgrid: Note the Records … Continue reading Dynamics CRM Entity Relationships