Monday, August 19, 2019

D365 CE 2019 Wave 2 Preview: Dynamics 365 Business card scan preview feature

Top request by customers: scanning business cards and capturing the information will be available in the upcoming Dynamics 365 release and is now available in instances with early access enabled. It worked remarkably well except for my own business card ...


 

The functionality seems to be provided by the new "AI Builder Business Card control" which is added on the quick create contact form. Next on the todo list - testing out modifying the mappings.


Saturday, August 17, 2019

D365 CE 2019 Wave 2 Preview: enable contextual email communication

One of the upcoming enhancements that a lot of my colleagues were excited about is  Contextual email communication in Dynamics 365 for Sales & Customer Service.  Contextual email communication allows you to overlay an email composition screen on top of the existing Dynamics 365 forms without having to navigate away from the screen that you are on. After you have enabled your environment for early preview access you can go to App Settings > Enhanced email  to enable this new functionality. (You might need to do a hard refresh after enabling use CTRL-F5)



After you enable this feature, adding an e-mail to the timeline will open the composition overlay allowing you to consult information on the contact while creating your e-mail.



Thursday, August 15, 2019

Early opt-in to Dynamics 365 CE release wave 2

You can now enable the features coming in the 2019 release wave 2 update by opting in to the updates in the Power Platform Admin Center. Opting in will enable all changed user experience updates for Dynamics 365 for Customer Engagement.

Don't do this on your production environment but test it out on a copy of production - once enabled you can not turn this off


From October 2019, all environments will be enabled for 2019 release wave 2. Opting in now, allows you to get hands on experience with wave 2 changes and testing out the impact on your specific solution setup.

Tuesday, August 13, 2019

Dynamics 365 monthly reading list July 2019


Technical topics (Configuration, customization and extensibility)

Topics for Dynamics 365 Business Application Platform analysts, project managers and power users

Thursday, August 01, 2019

Azure Databricks training material on Microsoft Learn

Still on my todo list – reviewing the 15 modules on Azure Databricks and the learning paths for data engineering with Databricks.
Modules : https://docs.microsoft.com/en-us/learn/browse/?products=azure-databricks
Learning Path : https://docs.microsoft.com/en-us/learn/browse/?products=azure-databricks&resource_type=learning%20path

Code tip: Nullable datetime in C#

Nullable types are used when you need to represent the value of an underlying type. By default DateTime is not nullable in C# because it is a Value type, but using the Nullable construct (or the ? shorthand), you can assign the null literal to the DateTime type. Syntax is below:

 DateTime? dt = null;  
 Nullable<DateTime> dt = null;