- Digital transformation at MLOZ and Partenamut with Dynamics 365 (Presented by: Olivier Callebaut, MLOZ and Etienne Gonsette, Partenamut)
- Dynamics 365 for Marketing (Presented by: Dieter De Cock, Microsoft)
- GDPR and Dynamics 365 – the Waldorf and Statler perspective (Presented by: Stephane Dorrekens, Business Elements and Joris Poelmans, Realdolmen)
Wednesday, March 14, 2018
Dynamics 365/CRMUG Belux chapter meeting on digital transformation, D365 for Marketing and GDPR
Monday, March 12, 2018
Dynamics 365 monthly reading list February 2018
- Watch out for issues with Version & updating plugin assemblies in Dynamics 365 (CRM)
- Dynamics 365 Data Integration (Dynamics 365 Finance and Operations Enterprise Edition)
- Dynamics 365 post deployment steps – what to check after you have imported your solutions
- Data Export Service: How to handle lookup columns
- Using FetchXML with the new Dynamics Web API
- How to calculate number of days between two date and time fields in Dynamics 365
- Dynamics 365 Data Migration Testing Best Practices
- Using an external scheduler to run on demand workflows
- How to export and import Voice of the Customer surveys
- Dynamics 365 v9.0 – Developers delights
- Validate Web API calls using Custom Actions
- Diving into new Microsoft Dynamics 365 Portal capabilities and official guidance from Adxstudio Portals
- Dynamics CRM Theme generator
Topics for Dynamics 365 business analysts, project managers, power users and end users
- Drill into CRM records from Power BI
- Dynamics 365: updating entity icons
- Work continues on Dynamics 365 digital assistant experiences – current Cortana integration preview discontinued
- Dynamics 365 and Outlook – the road forward
- Getting started with campaign management in Dynamics 365
- New from Microsoft Labs: Change tracking solution for Dynamics 365 released!
- LinkedIn Sales Navigator and Dynamics 365 integration [Video]
- Dynamics 365 – Are you reporting or engaging? by Steve Mordue
- CRM Tip of the Day #1085 – Using voice of the customer to survey users
- Managing Customer Engagement with Microsoft Dynamics 365 – free self-paced online course on Dynamics 365, ideal for first-time users, young professionals, and students to highlight how to use the application
Tuesday, February 06, 2018
Presentation Dynamics 365 Saturday Amsterdam - Dynamics 365 and chat bots
Wednesday, January 17, 2018
Dynamics 365 monthly reading list December 2017
- Searching for business process flow stages in Dynamics 365 CRM by @MeganVWalker
- Import data with multi-select option set values in Dynamics 365
- Is Dynamics 365 server-side sync filling up your database? by @PFEDynamics
- How to trigger Plugins on custom messages using Actions in Dynamics 365 by @Magnetism Solutions
- How to work with Record Create and Update rules null(Channel properties) in Dynamics CRM
- 10 techy tips your team will want to know about Dynamics 365 mobile applications for phones & tablets
- Microsoft Flow and change tracking - Microsoft Flow requires that Change Tracking is enabled to work with Dynamics 365 when looking for updates or deletes to records in CRM.
- Dynamics 365 Online Navigation fix – remove the “Switch to another app” menu – highly unsupported but you might have customers requesting for it
- Workflow scope and security in Dynamics 365
- What’s new in extensibility and app platform in the Enterprise Edition for Dynamics 365 (Online)
- Option sets and statuscode – doing some testing – see how they behave when setting them using Javascript
- Microsoft Dynamics 365 v9.0: Usage of the new OOB WebApi functions – Part 3 by @a33ik
- What is unsecure/secure configuration on a Dynamics 365 plugin
- Best practices for automating business process stage progression in Dynamics 365
- Dynamics 365 Data Integration feature (for Dynamics 365 for Finance & Operations)
- Not all business process flow entities are created equal
- Solution export error - known issue in Dynamics 365 with “orphaned” roll-up fields
- Global option sets in Dynamics 365 by @PowerObjects
- Searching customer web resource content – how to write code to retrieve javascript/html code to check for unsupported code
- Customer Driven Update for Dynamics 365 version 9.0 is coming – scheduled updates begin in February 2018 and end in August 2018
- How do you get started with the Dynamics 365 App for Outlook Preview
- Automatically collect and track emails with Dynamics 365 Auto Capture
- Getting around in the Dynamics 365 Customer Service App (Youtube 00:02:45)
- Which emails should I track in CRM?
- Visualizing data in Dynamics 365
- Beginner’s guide: how to perform simple data validation on records in Dynamics 365
- Use story time workshops and not backlog refinement
- Scrum certification for Dynamics 365 practitioners
Monday, January 15, 2018
Speaking at Dynamics 365 Saturday Amsterdam
Dynamics 365 Saturday is a Technical & Strategy event organized by the community with the following credo: “Learn & share new skills while promoting best practices, helping organizations overcome the challenges of implementing a successful digital transformation strategy with Microsoft Dynamics 365”.
Searching in knowledge base articles in Dynamics 365
With the introduction of the new knowledge articles entity data model (KnowledgeArticle) in Dynamics CRM Online 2016 Update 1 and Microsoft Dynamics CRM 2016 SP1 (for on premise) (Release documentation 8.1 – January 2017) , the existing entities for knowledge management: KbArticle, KbArticleComment and KbArticleTemplate were deprecated.
You should now use the newer KnowledgeArticle in your code (See Important changes coming in future releases of Microsoft Dynamics 365), which also support versioning and translation support.
In version 8.1, these knowledge articles became visible in the interactive service hub which was revamped into the Customer Service Hub in version 9.0 (Dynamics 365 July 2017 update). The Customer Service Hub also contains a number Knowledge Base dashboard - one with "your knowledge base articles" and one specifically for a knowledge manager (see screenshot below).
If you want to learn more about how to work with knowledge base articles, you should really take a look at Reduce call handling times with knowledge articles in the Customer Service Hub . Knowledge base articles are also directly shown in a tab on a case form (see screenshot below).
- QueryExpression: used to set additional query criteria and for which you also need to set the PagingInfo otherwise no results are returned
- RemoveDuplicates: remove duplicate versions of the same Knowledge Article
- SearchText: the text to search for in Knowledge Articles
- StateCode: required parameter which accepts an integer for the different statuses of a knowledge article such as Published, Draft, Approved, etc…
- UseInflection: searches for all different tenses of a verb or both the singular and plural forms of a noun. Underlying SQL full-text search is used (For more details see Searching for the inflectional form of a specific word
References:
Monday, January 08, 2018
Quick tip: finding all users with Dynamics 365 Service Administrator role in Office 365 tenant with PowerShell
First make sure that you install the different prerequisites as outlined in Connect to Office 365 PowerShell – next open Windows Azure Active Directory Module for Windows PowerShell. To connect to Office 365, simply type connect-msolservice . Get-MsolRole will give you a list of all administrator roles. You will see that the internal role name which is listed is still "CRM Service Administrator". The last line will export all users with this role to a CSV file
connect-msolservice
get-msolrole | select name, description
$role = get-msolrole -rolename "CRM Service Administrator"
get-msolrolemember -roleobjectid $role.objectid | export-csv d:\temp\serviceadmins.csv
Sunday, January 07, 2018
Fix for unable to login to Dynamics CRM 9.0 with CrmServiceClient and .NET 4.7
This might be caused by the fact that you compiling against .NET 4.7 where the default value of the ServicePointManager.SecurityProtocol is SecurityProtocolType.SystemDefault (See What’s new in .NET 4.7 for more details).
If this is the fact, you might need to explicitly change the protocol to TL1.2 - which is a requirement for Dynamics 365 9.0 as announced in September 2017 in Updates coming to Dynamics 365 Customer Engagement connection security - by adding a line ServicePointManager.SecurityProtocol.SecurityProtocol = SecurityProtocolType.Tls12
Wednesday, December 27, 2017
Bots and Dynamics 365 Part 1 : Introduction and building a Q&A bot
- Insurance goes bot – artificial intelligence deployed in customer contact (VHV Versicherungen)
- UPS paves the way for better service with faster development and artificial intelligence
Luckily, building the underlying platform has become a lot easier and Microsoft has also made available a number of different tools to help you in designing a great experience. Microsoft not only provides the Bot Framework (publicly available since April 2016) which includes a Bot Builder SDK and Developer Portal but also launched the Azure Bot Service in the November 2016. Azure Bot Service has been built on top of the Azure Bot Framework and provides a number of templates to get started with the creation of bots. In theory you can code your bot directly from within the built-in editor but you will probably switch over to Visual Studio afterwards as well as integrate with your source code repository by downloading the generated bot code to your local machine.
One of the basic templates which is available in Azure Bot Service to write your bot is the the Question&Answer template. To get started you need to built up a knowledgebase with questions and answers, information which might already exists in content such as FAQs, documents,etc… Microsoft QnA Maker will be able to use these existing sources and provides both a web interface and REST API that trains AI to respond to user’s questions in a more natural, conversational way. I took the example of https://www.statefarm.com/customer-care/faqs/auto-insurance and used it as input for QnA Maker to build up a knowledge base. Within QnA Maker itself you can test it afterwards to see how your bot reacts to specific questions.
The next step is creating a bot using the Azure Bot Service – next to the QnA template there are also other templates available – see Bot Service templates for more details. You can start experimenting with the bot service framework at a very low cost, the free model allows you to test it out with 10000 messages/month and you will only pay for the consumption of the underlying Azure functions or you can use the premium pricing model which provides an SLA as well as as access to premium channels. (See Azure Bot Service pricing for more details)
After the bot service has been created, you will still need to connect it to the QnA service that you published previously by filling in the QnAKnowledgebaseId and qnASubscriptionKey in the App Settings of your bot which you can retrieve from the QnA settings page.
User interact with your bot through channels, the Azure Bot service provides fourteen channels such as Cortana, Facebook Messenger, Kik but also embedded web chat. Web chat is the channel which is enabled by default, and you can start quite quickly by just embedding an iframe in your web
You can also use a DirectLine (not web chat) channel, and start from the source code available on https://github.com/Microsoft/BotFramework-WebChat to build an embeddable web chat control which is both available as a React component and a self-contained control which is easily usable by non-React websites.
But if you really want to leverage the full potential of chat bots, you will need to integrate the chat bot channel into the core systems and data repositories of your organization such as Dynamics 365 for Customer Engagement and Service Management. From a Dynamics 365 perspective there are some interesting generic use cases for bots:
- Customer Service – tier one support, bots can simulate 24/7 customer service representatives and act as tier one support and escalate case for follow-up by actual customer service representatives.
- Customer Service – appointment scheduling for servicing such as maintenance, repair, etc …
- Lead generation - an embedded chat bot in your website can answer simple product and pricing inquiries from customers and at the same time create leads.
- Getting started with Microsoft Bot Framework
- Using dialogs in Microsoft bot framework (creating lead in CRM)
- Using FormFlow in Microsoft Bot Framework.
- Using LUIS AI in Microsoft Bot Framework Part 1
- Using LUIS AI in Microsoft Bot Framework.- Part 2
- Publishing Bot to Azure and adding it to Skype
- Microsoft Azure announces industry’s first cloud bot-as-a-service
- Azure Bot Service Overview (Bot Framework Preview documentation)
- Conversational bots deep dive – What’s new with the General Availability of Azure Bot Service and Language Understanding
- Batches and batches of Bots (Coding4Fun Blog)
- Dynamics COE series on bot framework (some articles might not be applicable anymore since the Azure bot framework has undergone some significant changes in the last couple of months) is also a good starting point:
Tuesday, December 12, 2017
Musings and rants about solution architecture, EA and consulting
The last year I have been working as a solution architect for a large European company as part of the EA team and I must say, it has been quite an interesting experience. The vision/ideas that the other architects within EA have about software architecture made me explore a little bit on how software architecture has been perceived by the industry. During in this exploration I stumbled on a number of interesting articles that I want to share:
- The developers vs enterprise architects showdown: you shall know us by our trail of diagrams
- Multiple perspectives on technical problems and solutions
- The role, skills and duties of a software architect
I also became a big fan of Eric Dietrich (@daedtech) writings – so check out some of his postings
- Consulting for your current employer: make your boss your first client
- Defining the corporate hierarchy
- Hacking your career as a non-developer
- Conference speaking isn’t good for your career until you make it good
- Learning in a world where programming skills aren’t that important
- The decline of the enterprise architect
Other architects you might also follow on Twitter include Martin Fowler (@martin fowler) (author of a number of excellent books you should read as well) , Michael Nygard (@mtnygard) Matt Stine (@mstine) and Simon Brown (check out his video on Visualize, Document and explore your Software architecture). Leave a comment if you think I missed a thought leader in the software architecture space on Twitter or other blog post which you consider must reads or just interesting.
Monday, December 11, 2017
Dynamics 365 monthly reading list November 2017
- Mobile offline functionality on a tablet
- Using EWS editor to fix Dynamics 365 App for Outlook issues
- Implementing field mapping using Xrm.WebApi
- Just some tips for working with virtual entities by @andz_88
- How to create test data with GUIDs in Microsoft Dynamics 365
- Managing Dynamics 365 updates (updated article November 2017)
- Virtual entities – Relationships by
- Upgrade Adxstudio Portals v7.x to xRM Portals Community Edition
- Dynamics CRM Tip of the Day 1032: be careful with those (Javascript) function names
- Fixing missing services site map after upgrade from Dynamics 365 - 8.2 to 9.0
- Fixing Dynamics Outlook app deployment issues
- Common Data Integration Patterns – the aggregation pattern
- Dynamics 365 portals: Liquid with a Javascript framework – vue.js
- Loading dependent javascript files in Dynamics 365 v9
- Microsoft Dynamics 365 v9.0 clientside for devs besides XRM.WebApi by @a33ik
- Where did my instance go – I hadn’t seen this glitch yet - great tip from @DavidYack
- Register a new webhook through plugin registration tool in Dynamics 365
- Dynamics 365 v9 unified interface icons
- CodeNow for #XrmToolbox – more than just code now… let’s get your organization POA stats this time
Topics for Dynamics 365 business analysts, project managers, power users and end users
- 4 steps that keep Microsoft Dynamics 365 implementations from running off the rails
- Dynamics 365 – a few things partners need to know better
- New automation and visualization features for business process flows (public preview)
- Dynamics 365 User Group Australia – SA Water’s digital journey and the role of Microsoft Dynamics (Youtube recording 00:20:13)
- Microsoft and Adobe build on partnership with integration of Adobe Experience Manager and Dynamics 365
- Does your CRM data resemble the walking dead?
- Release Notes for Field Service and Project Service Automation Update Release 2
- What’s new in Voice of the Customer version 9.0.823.1 to 9.0.959.8 – improved scalability – it is now possible to sent out 50.000 surveys per day
- Configuring Custom Controls for views in Dynamics 365 CE 9.0
- Using PowerApps and Microsoft Flow to simplify Dynamics 365 activity management
- List of values: optionset vs lookup
- Reports enhancements in Dynamics 365
- How to change the Panel Header of a sub grid in Dynamics 365
- It’s time to integrate Dynamics CRM and SharePoint (better) – some interesting add-ons to look into. (Remark: I haven’t tested them out yet – so don’t consider this as an official endorsement)
- Deciphering Dynamics 365 App for Outlook requirements and available features
Wednesday, November 15, 2017
The Dynamics 365 CE SDK is dead, long live the new Developer Guide
- Developer Guide for Dynamics 365 Customer Engagement (still possible to export as PDF) – definitely take a look at Xrm.WebApi (Client API reference)
- Dynamics 365 assemblies and some tools (e.g. solutionpackager, package deployer and plug-in registration tools) are now all available from NUGET – check out Microsoft.CrmSdk.CoreAssemblies on Nuget
- The Dynamics 365 Entity Reference is also available (and updated) online
For more details check out What’s new for Customer Engagement developer documentation in version 9.0.
Thursday, November 02, 2017
Quick tip: using Google Analytics in Blogger
- Create a web property ID at https://analytics.google.com
- Open your Blogger Settings > Other > Google Analytics and enter the web property ID
Thursday, October 19, 2017
Dynamics 365 monthly reading list October 2017
- What’s new for developers in the July 2017 Update
- Important changes coming in Dynamics 365 Customer Engagement
- Dynamics 365 v9.0 is already available by @ramontebar
- Dynamics 365 9.0 introduced native autonumber support but configuration was only available through the SDK – it is amazing to see that two tools became available in the first week to work with this Autonumber attributes in Microsoft Dynamics 365 from or Easy Autonumber utility for Dynamics 365 July 2017 Update (v9)
- Dynamics 365 Customer Engagement General Availability Readme (Known issues)
- What’s new in the July 2017 update for Enterprise Edition
- Interact with data from external systems using the new virtual entities by @WizOfD365
- Microsoft Dynamics 365 CE Platform Update for Developers (Ignite 2017 video)
- What’s new in Dynamics 365
- The long road to unified interface in Dynamics 365
Technical topics (Configuration, customization and extensibility)
- Dynamics 365, Organization Insights and dotmailer
- Identify differences between Dynamics 365 (CRM) instances
- Scoring surveys based on answers with Voice of the Customer
- Part 1 – Build a referral tracking system with Microsoft Flow, Azure Functions and your CRM
- Part 2 – Build a referral tracking system with Microsoft Flow, Azure Functions and your CRM
- Tips and tricks for deploying and managing Dynamics 365 for Sales and Service – Ignite 2017 – tips from the Dynamics PFE team
- Return from the land of no return – disable Notes, Activities, Connections, Feedback, Queues and/or change ownership model from @Crmtipoftheday
- Limiting users to specific Dynamics 365 organizations
- How to use Task flows to help your mobile workforce manage micro processes in Dynamics 365 from @magnetismxrm
- How to improve as Dynamis 365 developer
- CRM Tip #993: Update before your maps break
- Set default price list on product as read-only in Dynamics CRM
- A canary in CRM
- Tip 987: Kill a few million async jobs
- How to change icons of custom entities in Dynamics 365 – if you use Dynamics 365 9.0 – you also have scalable vector graphics (svg) icon support . Also check out this post on Dynamics 365: Updating Entity Icons
- How to use Javascript for editable grids in Dynamics 365
- Ribbon customization
- Best practices for Microsoft Dynamics security settings: append vs append to
- Adding custom icons with tooltips for a column in Dynamics 365
- How to configure relationship analytics cards in Dynamics 365
- You are about to start a Dynamics project – would you go Agile or Waterfall? Cover the bases of a successful CRM deployment
- Manage the status of your team’s bookings with Universal Resource Scheduling
- Modernizing business process with Cloud and AI
CRM observation – why alternate keys are not published sometimes
Wednesday, October 18, 2017
Quick tip: Format JSON documents in Notepad++
Notepad++ does not have built-in support for formatting JSON documents, but you can use JSONViewer for this. It can be installed directly using the "Plugin Manager" in Notepad++. Just got to "Plugins > Plugin Manager > Show Plugin Manager > Available tab"
Wednesday, October 11, 2017
Use Chrome user profiles to simulate different Dynamics 365 identities
Great tip that I saw on Twitter from @jukkan and @georgedude – you don’t need to use private browsing in Google Chrome to login to Dynamics 365 with a separate identity, you can use Chrome user profiles instead.
Click the person icon
in the top right corner to configure your chrome profiles.
Check out Share Chrome with others or add a profile for more details.
Tuesday, October 10, 2017
Easy way to get the Dynamics CRM Realm ID for server-based SharePoint integration
But there is an easier way to get to the crmrealmid than described in the walkthrough (if you forgot to note it down as suggested by the article) – you can simply go to the Settings>Customizations>Developer Resources and use the instance reference ID.
Wednesday, September 27, 2017
Rise of the machines : machine learning and artificial intelligence in Dynamics 365 Part 1
If you look at most legacy CRM solutions, they are nothing more than digital contact lists and notebooks where you can look up contact information, check personal details or see when someone on your team has last contacted a customer. They contain a huge amount of data, but without built-in machine learning or predictive analytics, defining priorities on which prospects to contact first for a potential deal is like searching for a needle in a haystack. The added value of a modern CRM system is, that it should guide and support your sales team so that they can focus on what they are meant to do – sell. By automating tedious tasks such as sending follow up emails and reminders, you will free up more time to focus on selling. If you are not sure of the current state of your CRM solution, just take a look at what your mobile phone experience.
Microsoft is betting big on AI (See One year later, Microsoft AI and Research grows to 8K people in massive bet on artificial intelligence) and Dynamics 365 is a platform which can benefit greatly from these investments. Although, the first built-in functionality is still quite rudimentary and some of it is still in preview – the potential seems enormous (also see How machine learning will change Dynamics 365 from Ben Hosking )
Figure 2 Dynamics 365 Customer Insights, relationship analytics and relationship assistant.
The table below lists functionality/features within the Dynamics 365/CRM platform which uses machine learning and artificial intelligence.
| Functionality | Availability | Remarks | |
| Sentiment analysis within Microsoft Social Engagement | Understand the public perception using sentiment analysis | GA | Native sentiment detection is be available in the 17 Core languages (English, Danish, Dutch, Finnish, French, German, Greek, Italian, Norwegian, Polish, Portuguese (Portugal), Russian, Spanish, Swedish, Turkish, Japanese, Chinese traditional) and Arabic |
| Social selling assistant | The Social Selling Assistant recommends personal actions for you to leverage social networks (e.g. which posts to share etc …) | GA | |
| Use Azure text analytics with Dynamics 365 (Preview) | Suggest similar cases | US region only – Preview | The rules you create can use either Cognitive Services Text Analytics or some features let you use the built-in similarities matching engine in Microsoft Dynamics 365. Notice that you can only create one similar records suggestions rule for each entity type. |
| Use Azure text analytics with Dynamics 365 (Preview) | Automatically suggest knowledge base articles | US region only – Preview | Uses Azure Cognitive Services Text analytics services |
| Use Azure text analytics with Dynamics 365 (Preview) | Topic analysis – identifies topics/categories for cases to allow to better manage and resolve cases |
Currently not available anymore |
Azure Cognitive Services Topic Detection API was removed, so this functionality is not available anymore. Expected to be updated to use the new Topic API. |
| Use Azure text analytics with Dynamics 365 (Preview) | Using Document suggestions , Dynamics 365 can presents a list of suggested documents to the user while the user works on an opportunity/quote etc … | GA | The Document Suggestions feature doesn't require a connection to the Azure Text Analytics service. If you choose not to use Azure Text Analytics, Document Suggestions will use the built-in keyword matching logic available in Microsoft Dynamics 365 |
| Product recommendations (Preview) | Dynamics 365 uses the Cognitive Services recommendation service to build an advanced recommendation model for automatic cross-sell product recommendations that are based on historical transaction data. | US Region only – Preview will end February 2018 and feature will be removed |
|
| Lead scoring and contact and account data augmentation through Versium Predict |
Versium predict can use CRM data to generate predictive models to score leads, to augment data on contacts or accounts, and to acquire lists of new prospective consumers or businesses from Versium's database. | Microsoft has an OEM arrangement with Versium Predict which allows Dynamics 365 customers to install and use Versium Predict. | |
| Relationship assistant | Provide guidance and assistance on activities that you should perform based on interactions with customers | US Region only – preview | Relationship assistant is part of the bigger relationship insights functionality which includes e-mail engagement and auto capture. |
| Dynamics 365 Customer Insights | Azure-based SAAS service which enables organizations to bring together transactional, web and social customer data to visualize it in a Customer 360°. DCI also allows you apply advanced data transformation algorithms (KPI calculation and machine learning) on this data to generate role-specific insights. |
In the next blog posts I will delve a little deeper into some of the available built-in functionality as well as look at how you can extend Dynamics 365 to integrate with Azure Cognitive Services, Azure Machine Learning, etc ...
Interesting links:
- Microsoft Data Amp 2017 – Keynotes (Youtube videos) – inspiration about how artificial intelligence and advanced analytics can be leveraged.
- Microsoft Data Amp 2017 - Channel 9 videos
- Introducing Cortana Intelligence Solutions
Tuesday, September 19, 2017
Improve Dynamics 365 and submit your ideas
Microsoft recently setup a new channel to submit your ideas to improve Dynamics 365 – go check it out on https://ideas.dynamics.com/ . Some development teams at Microsoft, definitely take the feedback formulated through this new channel to heart. During one of the Dynamics 365 Spring 2017 Preview executive briefing sessions one of the presenters told us “If you look at the new “Social pane” section you will notice that out of the top 10 ideas, 6 are currently addressed in the new Activity timelines in Dynamics 365”. But also one of the things that we bumped into when doing a project with Dynamics CRM Online Portals – the fact that Plugin exception information needs to be surfaced in Dynamics CRM Online Portals was recently picked up the Portal team (thanks
So go ahead and submit your own ideas for improvement and don’t forget to vote for these ideas:
Thursday, September 14, 2017
Dynamics 365 monthly reading September 2017
- Everyday I’m Shuffling – an alternative approach to DevOps for Microsoft Dynamics 365 (Channel 9 00:54:20)
- Microsoft flow – Create record in Dynamics 365 from incoming emails in Gmail
- Dynamics 365 instance backup to Azure storage
- Debugging quick create form parameters
- Approaching storage limit in Dynamics 365 – watch out VOC logs
- Getting ready for Dynamics 365 9.0 : learn Microsoft Flow
- Investigate Plugin Statistics in Microsoft Dynamics 365
- Form script wars: revenge of the events
- Dynamics 365 Attachment management and Dynamics 365 Online Portals – do not mix
- What you need to know about the Dynamics 365 Outlook web app
- Speed up your Dynamics 365 javascript development!
- Retrieve metadata using name in Web API
- Replicate Dynamics 365 Online Data to SQL database using Data Export Service
- Dynamics 365 July 2017 Update: Customer Engagement Portals
- Dynamics 365 Monthly Update – August 2017 (Dynamics CRM PFE team)
- The formula for winning right customers: wooing strategy plus CRM
- Are you ready for Dynamics 365 Changes?
- Tip #906: Pets are dangerous – take a critical approach towards your favorite/pet feature of Dynamics CRM/365
- Business rules in Dynamics 365
- #tip 974: Attachments versus documents in Dynamics 365 – don’t forget the user experience
- A quick fix for browser rendering issues in Dynamics 365/CRM
- Delivering CRM projects with business impact
- Getting started with the Dynamics 365 for Customer Engagement Data Connector (Microsoft Access)
Topics about Dynamics 365 Spring release (aka 9.0 release)
The Dynamics 365 Spring release (version number 9.x) is the next upcoming release of Dynamics 365. For the moment we only got news about the updates for the next version of Dynamics CRM/365 online so no news yet for on-premise deployments.
- Dynamics 365 v9.0 summary (July 2017 Update)
- All you need to know about Dynamics 365 V9.0 (For now)
- Dynamics 365 Spring 2017 Release: 5 takeaways from a Business Solutions MVP
- Virtual entities in Dynamics 365
- Accessing Business Process Flow as Entities – D365 July 2017 Update
- Dynamics 365 July 2017 update: virtual entity
- What is Microsoft Dynamics 365 Business Edition?
- Dynamics 365 – Business edition vs. the world
- Comparing the new Dynamics 365 for Sales Business Edition
- New enhancements coming to Dynamics 365










