Skip to main content

Posts

Showing posts from 2018
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. ICEBREAKERSCONFIG -  problems-with-microsoft-dynamics-365-patches 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   https://docs.microsoft.com/en-us/dynamics365/customer-engagement/linkedin/integrate-sales-navigator Hope this blog helped you. Happy 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...
Dynamics CRM v9 Visual Studio Template Download the Extension from the Visual Studio Market Place   Close all the Visual Studio instances Install the extension.  After successful installation Happy CRMing..!!

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...!!

CRM Developer Tool Visual Studio Error RegistrationFile property must be set.- PRT_RegisterPluginsAndWorkflows

I thought to share this with you people, so that you wont waste your time setting up your Visual Studio. Errors that i was getting. 1. Name Property can not be null. 2. RegistrationFile property must be set.- PRT_RegisterPluginsAndWorkflows I was trying to deploy the webresource and plugins throgh the Developer tool from Visual Studio and  was getting the error "Registration File Property must be set". I upgraded my CRM developer tool from Visual Studio and after that i was not able to deploy webresources or plugins or workflows from my Visual Studio. So from Visual Studio , i created a new Project using the Dynamics 365 Package Template and started comparing the project file, to see if any thing is changed. After doing a comparision, i noticed that in the CRM project file, the tag Content was not present in the new Project file, and is been replaced with the  RegisterPlugin.   So i just replaced the text "Content" with RegisterPlugin and sta...