Posts

Showing posts from April, 2019

DYNAMICS 365 HOW TO SWITCH BETWEEN UNIFIED CLIENT INTERFACE (UCI) AND CLASSIC WEB INTERFACE

Image
Due to many questions in the Dynamics community on how to switch between the new Unified Client Interface (UCI) and the Classic Web Interface , I decided to write this post to show you how to do it. In the new V9 version, the default interface will be rendered in the Unified Client Interface; however, many users still prefer the original one and need to switch back to the classic web interface. You have two options to switch between the new Unified Client Interface (UCI) and the Classic Web Interface From the advanced settings section Click the Settings gear icon > Advanced Settings Click Settings > Administration > System Settings

DYNAMICS 365 HOW TO RETRIEVE MORE THAN 5000 RECORDS IN C#

Image
In this post, you will see how to retrieve more than 5000 records from CRM/D365 entities in C# . To do this, I imported thousands of records into the contact entity Created a console application From the Main method, called the two methods: RetrieveMultiple : It will use the Service.RetrieveMultiple request RetrieveMultipleRequest : It will use the RetrieveMultipleRequest message Ran the console application that will give the below result The RetrieveMultiple method is limited to retrieve 5000 records maximum and will look as follows. public string RetrieveMultiple() { EntityCollection objCollection = new EntityCollection();