Skip to main content

Dynamics CRM V9  -  ICEBREAKERSCONFIG






After the CRM V9 Upgrade, I noticed in the advance find there was a new entity called IcebreakersConfig. I first googled to find what is this exactly ? then i found the following articles related to it so i am putting this all into one blog.




ICEBREAKERS HIDDEN SOLUTION

https://medium.com/capgemini-dynamics-365-team/traces-of-the-icebreakers-hidden-solutions-of-a-vanilla-dynamics-version-9-465bcdc67ef9



I searched for Icebreaker through out the microsoft documents and just found one link in the result which is this  






Hope this blog helped you.


Happy CRMing..!!


Comments

Popular posts from this blog

Case Resolution using Power Automate

Case Resolution using Power Automate 1. Create a flow, 2. Add a step to create a new record for Case Resolutions.  4. Give a Subject as per your case title, here in the example i gave it as Case Resolution 5. Resolution Type as Problem Solved . 5. Cases Reference to be added in the Case field. 6. Save the flow. When the below flow is run, it will create a Case Resolution Record and mark the case as resolved.

Debug Dynamics CRM Ribbon Javascript Code

Go to Internet Explorer Settings and uncheck the disable debug options as shown below Add debugger; with terminator as first line in your javscript function.  Once you have above steps done, clean all your browsing history and reload the form where you have this ribbon button.  Open Debugger from F12 when debugger will open it will load CRM in browser again.  Now when the javascript function is called, pointer will come at debugger to debug.  Enjoy CRMing...!!
Connect to Dynamics CRM Online V9 from a console application Using CrmServiceClient Nuget Package Required :  C# Code :  Extra Step in the connect code we have to add for CRMV9 :     ServicePointManager.SecurityProtocol = SecurityProtocolType.Tls12; public   static   IOrganizationService  getCRMConnection() {   ServicePointManager . SecurityProtocol  =   SecurityProtocolType . Tls12;   var  connectionStringName  =   Config . ConnectionString . CRM;   var  connectionStringValue  =     ConfigurationManager . ConnectionStrings[connectionStringName] . ConnectionString;   var  crmConnection  =   new   CrmServiceClient (connectionStringValue);   return    ( IOrganizationService )crmConnection . OrganizationWebProxyClient  !=   null   ?    ( IOrganizationService )crmConnection . OrganizationWebProxyCli...