DRIVE EFFICIENCY THROUGH AUTOMATED IT.
SAVE COST THROUGH CONSOLIDATION OF IT.
WANT TO KNOW MORE ABOUT STRATEGIC CONSULTING CLICK HERE.
MICROSOFT / RISUAL HYPER-V CLOUD EVENT 22ND MARCH 2011 CLICKHERE.

Archive

Posts Tagged ‘CRM 2011’

Office 2010 SP 1 with CRM 2011 Client for Outlook causes reminders to stop working

September 2nd, 2011 paulw No comments

We have come across a problem with the new Service Pack 1 for Office and the CRM 2011 client for Outlook.

The symptoms are that calendar reminders do not pop up in Outlook which can cause some major problems for the end users.

We found that in our environment, if we removed the CRM 2011 client for Outlook the reminders would start working again. We then reinstalled the CRM client and found that the issue came back. Disabling the CRM add-ins in Outlook had no effect.

This issue has now been fixed which can be requested from the following URL:

http://support.microsoft.com/kb/2584053

Cheers

Paul

Office 2010 SP 1 with CRM 2011 Client for Outlook causes reminders to stop working

August 10th, 2011 paulw No comments

We have come across a problem with the new Service Pack 1 for Office and the CRM 2011 client for Outlook.

The symptoms are that calendar reminders do not pop up in Outlook which can cause some major problems for the end users.

We found that in our environment, if we removed the CRM 2011 client for Outlook the reminders would start working again. We then reinstalled the CRM client and found that the issue came back. Disabling the CRM add-ins in Outlook had no effect.

This issue is currently being investigated by Microsoft Product Support. I will keep you posted of any fixes that are announced.

Cheers

Paul

UPDATE:

Microsoft have released a KB article detailing the error. They are currently working on a fix that should be released at the end of August or early September:

http://support.microsoft.com/kb/2586274

Office 2010 SP 1 with CRM 2011 Client for Outlook causes reminders to stop working

July 19th, 2011 paulw 3 comments

We have come across a problem with the new Service Pack 1 for Office and the CRM 2011 client for Outlook.

The symptoms are that calendar reminders do not pop up in Outlook which can cause some major problems for the end users.

We found that in our environment, if we removed the CRM 2011 client for Outlook the reminders would start working again. We then reinstalled the CRM client and found that the issue came back. Disabling the CRM add-ins in Outlook had no effect.

This issue is currently being investigated by Microsoft Product Support. I will keep you posted of any fixes that are announced.

Cheers

Paul

Implement Bing Maps in CRM 2011

April 6th, 2011 Daniel Davies No comments

Just a quick guide on how to Implement Bing Maps in CRM 2011 , in this guide i will show you how to add a Bing Map into each ‘Account’ in CRM. So you will end up with something like the below.

image

Steps

  • Open CRM 2011 in Internet Explorer
  • Navigate to Settings > Customizations and the go to Customize the System
  • If you then press web resources on the left hand side and press new
  • image

  • If you fill the following settings into your Web Resource
  • image

    Once you have selected JSCRIPT as the Content type , Press Text Editor and type the below into the box, you can try copy and pasting but you may experience formatting issues with quotation marks which will cause errors when you come to view the Bing Map.

function bingmap()
{

var AccountZip = crmForm.all.address1_postalcode.DataValue;

var MapURL = “http://www.bing.com/maps/default.aspx?v=2&where1=” + AccountZip + “”;
if (MapURL != null)
{
crmForm.all.IFRAME_map.src = MapURL;
}
}

  • If you the press ‘Save and Close’
  • Now expand Entities > Account > Forms and Double click ‘Information’

image

  • We are now going to insert an IFRAME , so select where you want the map to go on your Form ( You do this by simply clicking where you want to place it on the form)
  • Once you have selected your location , Select insert and then IFRAME

image

  • Fill the IFRAME in as below and press ok

image

 

  • Now press home and select ‘Form Properties’

image

  • Press add under Form Libraries and select “new_BingMap” and press ok

image

  • Now under Event handlers press add

image

  • In the handler properties fill in the below and press ok

image

 

  • Press ok again and press save and close
  • Now press ‘publish all customizations’

If you now go into an account you should now see the Bing Map Smile

image

Categories: Uncategorized Tags: , , ,

CRM 2011 error ‘Your organization is not configured to allow access to the Microsoft Dynamics Marketplace web site.”

March 15th, 2011 Daniel Davies 1 comment

You May get the following error “Your organization is not configured to allow access to the Microsoft Dynamics Marketplace web site. To access the website, the marketsettings.InternetConnectionProxyEndpoint attribute must be set to the URL for your proxy server ” when you go to Settings > Customizations > Dynamic Marketplace within CRM.

To set this run the following in PowerShell on the CRM Server

Add-PSSnapin Microsoft.Crm.PowerShell

$Setting = Get-CrmSetting -Setting MarketplaceSettings

$Setting.InternetConnectionProxyEndpoint=”http://servername:port”

Set-CrmSetting $setting

Get-CrmSetting -Setting MarketplaceSettings

$Setting.SolutionsMarketplaceEnabled=”True”

Set-CrmSetting $setting

Once you have done this reboot the server as the change will not take effect otherwise and you will be able to access the Dynamics Workplace from within CRM Smile

image

Categories: Uncategorized Tags: ,