CRM Online to SharePoint Online Integration using REST and ADFS
Nice Post for Sharepoint Online and CRM Online Integration
Nice Post for Sharepoint Online and CRM Online Integration
Check Out huge collection of Free Microsoft eBooks for you, including: Office, Office 365, SharePoint, SQL Server, System Center, Visual Studio, Web Development, Windows, Windows Azure, and Windows Server
If you want to have look on what is changing in Microsoft Dynamics CRM release, Check this post, it will help you to understand new features added and what is removed from Microsoft Dynamics CRM. HIMBAP | Need any help in customization Contact US !!
Today I got this error when I was preparing a Silver light training session, when I tried to build my Silver light web resource, it failed and when I check error list I got below error message: When I tried to search, I found we need to include “Microsoft.CSharep.dll” reference in our project, and I once I added it from… Read more »
Microsoft has release new version of Dynamics CRM IG Guide, you can check it here
If you are looking to get all crm users based on the teamid then this post is for you. You can use below code to retrieve users: Enjoy !!!
If your organization is updated with Microsoft CRM 2011 rollup then you can use Skype or Lync to connect to your customer. You can select your option from Settings->System->Administration. To use this functionality you need:- Skype or Lync installed on your machine. Prefix country code and area code before the contact number of customer. Once you have contact number entered for… Read more »
If you are looking for a code to get all the users for a particular business unit, you can use below code private EntityCollection RetrieveUserBasedOnBusinessUnit(IOrganizationService _CrmService,Guid BUId) { QueryExpression _Query = new QueryExpression { EntityName = “systemuser”, ColumnSet = new ColumnSet(true), Criteria = { Conditions = { new ConditionExpression { AttributeName=”businessunitid”, Operator=ConditionOperator.Equal, Values={BUId} } } } }; return _CrmService.RetrieveMultiple(_Query); … Read more »