Skip to main content

Social CRM Add-On for Dynamics CRM 2013



Social CRM Add-On for Dynamics CRM 2013


With Focus Live Social CRM Add-on for Dynamics CRM you can easily view social information from different social networks such as Facebook, Linked-in, Google+, Video, Twitter etc.

You can find quickly people close to you who may know your lead through linked-in or Facebook contacts and get introduced.

Features :

•         Works with leads and contacts record.
•         Directly access to contact or lead profile pages on social networks within contact and lead forms.
•         View additional information about your contacts and lead using Facebook, LinkedIn, Twitter, Google Plus or Video.
•         Find quickly people close to you who may know your lead through linked-in or Facebook contacts and get introduced.
•         Can be customized to work with new custom entities.
 

Click here to know more on  this topic

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