The new kid on the block!

Sunday, January 6, 2013

Integration CRM and SharePoint to store contents - Part II

Once the SharePoint component for CRM has been installed properly and all the appropriate permissions have been given to intended CRM users for upload, it's time to configure which entities will take advantage of SharePoint document libraries.

Instead of writing full article and just to save the effort I'm providing link to an article on MSDN which covers the rest of the details.

Saturday, January 5, 2013

Integrating CRM and SharePoint to store contents - Part I

To integrate CRM 2011 and SharePoint 2010/13, your first first step is to install CRM List Component in your SharePoint (site) instance.

Once installed navigate to "Central Site Admin"in SharePoint and make sure ‘Microsoft SharePoint Sandboxed Code Service’ is started under ‘Manage services on

In Central Site Admin select the web application > site collection which will store contents (documents, images, spreadsheets, etc.) for you. Next select General Settings > General Settings from the ribbon menu and set the property  for ‘Browser File Handling’ to ‘Permissive’.

Navigate to the desired site collection, next selction Solutions from ‘Settings’. Next locate the component solution file (*.wsp) you just downloaded and upload into the solutions library.

Once uploaded ‘Activate’ the solution.

Out of scope:
Make sure you have given appropriate permissions to CRM user to upload contents in SharePoint document library.

Monday, November 5, 2012

Microsoft Dynamics CRM and SQL Server 2012

At Microsoft Dynamics our vision is to help companies transform into dynamic businesses by impassioning and equipping the individuals in their organizations.  SQL Server 2012 which is being released at the Virtual Launch Event today is helping us deliver on that promise.  Microsoft Dynamics CRM along with SQL Server 2012 provides a mission-critical customer data platform that can provide valuable insights for end-users, fulfilling the vision of “CRM Anywhere” by enabling individuals to access the right information at the right time on the right device.

Related Link

Thursday, June 21, 2012

CRM Books (FREE) on my Skydrive

I've few books for Microsoft Dynamics CRM lovers and hope that it would benefit them in every way.

Feel free to write back.

Related Link

Monday, June 4, 2012

CHANGING 5000 LIST VIEW LIMIT

CRM 2011 has added a count to all list views but this count is limited to 5000 records; if you have more than 5000 records, you will get "Records 1-x of 5000+".

Note: This only applies to CRM 'On-Premise' installation.

USE MSCRM_CONFIG
GO

Update DeploymentProperties
Set IntColumn=-1
Where ColumnName='TotalRecordCountLimit'

-1 (or any negative number), will disable the limit but you can also change it to another limit.

Reset the IIS to apply the above changes.