[Dynamics CRM]如何解決ISV內嵌報表衝突

  • 2648
  • 0
  • 2011-10-14

若需自行開發報表嵌進CRM內, 會出現...

 

若需自行開發報表嵌進CRM內, 會出現

The type 'Microsoft.Crm.Web.Reporting.CrmReportServerConnection, Microsoft.Crm.Application.Pages, Version=4.0.0.0, Culture=neutral, PublicKeyToken=31bf3856ad364e35' could not be found

 

此時需調整ISV的Web.config的Setting如下

		   1: <appSettings>
		   2:     <remove key="ReportViewerMessages"/>
		   3:     <remove key="ReportViewerServerConnection"/>
		   4:     <add key="ReportViewerMessages" value=""/>
		   5:     <add key="ReportViewerServerConnection" value=""/>
		   6: </appSettings>