Microsoft has recently launched a new online course (MOOC) on Open edX, Managing Customer Engagement with Microsoft Dynamics 365, which is publicly available and being offered free of charge. Designed to drive awareness, build introductory knowledge, and spark career interest in Dynamics 365, this MOOC is appropriate for first-time Dynamics 365 users, young professionals and students. Highlighting... Continue Reading →
Level Up: A Chrome extension for CRM Power Users
Re-blogged, Follow below for original post:- https://dreamingincrm.com/2016/05/21/level-up-a-chrome-extension-for-crm-power-users/ EDIT (14/11/2016): The extension is now available on Edge as well. Refer https://github.com/rajyraman/Level-up-for-Dynamics-CRM-365-Edge-Browser Today, I released a new Chrome extension that assists CRM power users. In this initial release there are 12 quick functionalities: Form helpers Display Logical names for controls (Original script by Chris Groh http://us.hitachi-solutions.com/blog/2014/10/27/showing-entity-logical-names-on-form/) God Mode (based... Continue Reading →
How to disable hyperlink property of a lookup in dynamics crm (Unsupported way)
How to disable opening of record on click on the lookup in ms crm This, a little weird requirement of disabling the hyperlink property of a lookup field in dynamic crm can be fulfilled with below code. function DisableLookupHyperLink(lookupfieldname) { var lookupSpanNodes = document.getElementById(lookupfieldname + "_d").getElementsByTagName("SPAN"); for (var spanIndex = 0; spanIndex < lookupSpanNodes.length; spanIndex... Continue Reading →
Integrate Power apps with Azure cognitive service and Dynamics crm using MS Flow
Power Apps and Azure cognitive service integration While exploring power apps, i build this power app which i connected to azure cognitive service to retrieve the sentiment score of feedback given by a user and stored the result into crm as a record using MS flow. In last post, we learn How to Create a... Continue Reading →
How to Create a Cognitive Services APIs account in the Azure portal | Step by step setup
Steps to Create a Cognitive Services APIs account in the Azure portal Step 1:- First we need to create an azure account (free of cost|trial of 30 days), which i'm sure you can sign up for from here. Once you created your account, sign into it from http://portal.azure.com/. It'll look somewhat like this:- Step 2:- Click new and search... Continue Reading →
How to track user location in Dynamics 365 for phone App – Part 2 | Track user on Google Map in CRM
Integrating google map with Dynamics crm In previous post we discussed how to Track latitude and longitude in Dynamics 365 for phone App Going one step forward, in this post i'll be showing how i have integrated google map into crm and shown the last locations of user on google map embedded on user record. I... Continue Reading →
MS Dynamics crm Security Groups
Following are are the four groups needed for CRM:- AD Name Description SQLAccessGroup The members of this group get access to CRM filtered views PrivUserGroup CRM user group for special administrative functions; Including CRMAppPool identity (domain user or NetworkService). The users who configure CRM must be added to this group. PrivReportingGroup This group create during CRM Server... Continue Reading →
How to track user location in Dynamics 365 for phone App
Track latitude and longitude in Dynamics 365 for phone App In previous post we discussed How to get address from longitude and latitude in c# | Reverse geo-coding in c# In this post, i'll discuss how we can track the location of a user using Dynamics 365 for phone mobile application. Prerequisit:- For storing the latitude... Continue Reading →