Zoeken in deze blog

dinsdag 28 juni 2011

Microsoft CRM 2011 SharePoint Integration

SharePoint integration with Microsoft Dynamics CRM 2011 enables you to:

  1. Create, upload, view, and delete documents on a SharePoint server from within Microsoft Dynamics CRM.
  2. Use the SharePoint document management abilities within Microsoft Dynamics CRM such as check-in and check-out of the document, viewing version history, and changing the properties of the document.

Supported SharePoint Versions, 2007/2010

SharePoint integration is supported for SharePoint server 2010, SharePoint Server 2010 Online, and Shareoint Server 2007 and SharePoint Server 2007 online.

However, for a rich experience of working with the documents stored in SharePoint from within Microsoft Dynamics CRM and for automatic creation of location records on the SharePoint server, you must use SharePoint Server 2010 or SharePoint Server 2010 online, and the Microsoft Dynamics CRM List Component for SharePoint Server 2010 must be installed on the target SharePoint server.

If you are using SharePoint server 2007, the documents from the SharePoint server are displayed in an IFRAME instead of the grid in Microsoft Dynamics CRM. Also folders cannot be automatically created on the SharePoint server.

Original post: http://www.accentgold.com/blog/microsoft-crm-2011-seamless-sharepoint-integration/

donderdag 3 februari 2011

Aanpassen charts in CRM 2011

Een chart die je in CRM 2011 hebt aangemaakt, kan redelijk eenvoudig aangepast worden door de chart te exporteren, de xml aan te passen en weer terug te importeren. Zie onderstaand commentaar in de afbeelding voor wat tips en tricks. 

Wordt vervolgd....

maandag 3 januari 2011

Adding Bing Maps to Dynamics CRM 2011

If you want to show, for example, the location of an account in Bing Maps, you have to make the following customizations in Dynamics CRM 2011:

First make an IFRAME on the Account Form, something like this:

After that, add some JavaScript to your page. Make sure it is activated on the OnLoad event.

function ShowBingMap()
{
if (Xrm.Page.getAttribute("address1_line1").getValue() != null)
{
var strURL = ("http://www.bing.com/maps/default.aspx?where1=" + Xrm.Page.getAttribute("address1_line1").getValue() + "," + Xrm.Page.getAttribute("address1_city").getValue());
Xrm.Page.getControl("IFRAME_TEST").setSrc(strURL);
}
else
{
Xrm.Page.getControl("IFRAME_TEST").setSrc("about:blank");
}
}

After these modifications your Form should look something like this: