Today morning I came to know about a new Add on called ePicture for Microsoft CRM, which can be used to updload picture to any crm entity. Check viedo here http://www.youtube.com/watch?v=PQZhGuZMMiU&goback=.gde_21231_member_26191366
Just watch Dynamics CRM 2011 Demo http://65.55.21.250/showcase/en/US/details/f9625bd7-7009-4bed-ab7a-c3fbb548d6ac?goback=.gde_21231_member_25155712
There is an increase of 27% in SAP CRM, 36% in Dynamics CRM and decrease of 18% in Salesforce jobs around the world in the month of June. Source : http://jobgraphs.com/crm-softwares-demand-comparison/
MS CRM 4.0 New SDK is available now with new exciting additions like Advanced Developer Extensions,Authentication for Microsoft Dynamics CRM Online you can download it from http://www.microsoft.com/downloads/details.aspx?FamilyID=82E632A7-FAF9-41E0-8EC1-A2662AAE9DFB&displaylang=en
One of our client come to us with Performance issue, they have multiple plugins written on many OOB as well as in custom entities. They also approached to Microsoft for this. Microsoft recommended them to stop making call to crm webservice and retrieve only required columns. Addition to these, I noticed some other points All plugins were deployed in debug… Read more »
Microsoft Dynamics “CRM5” Technology Preview Released Worldwide, On Premises and Online http://blogs.msdn.com/crm/ For Video Check http://blogs.msdn.com/crm/archive/2008/12/18/an-early-look-at-crm-5.aspx
If we are creating activity like email,phonecall, letter,fax we need to set sender & recipient activityparty. we can set activitypart using following code I am creating letter activity DynamicEntity LetterAct = new DynamicEntity(“letter”); //create regardingobjectid LookupProperty _Regarding = new LookupProperty(); _Regarding.Name = “regardingobjectid”; _Regarding.Value = new Lookup(“regarding entity name”,GUID of entity instance); LetterAct.Properties.Add(_Regarding); //set from and to DynamicEntity[] _ActivityParties =… Read more »