Monday, September 24, 2007

Reports.config has invalid schema

The problem comes from a mixure of .NET versions on the server.
The fix is to reset the 1.1 setting for the server and them manually set the aproppriate settings for each virtual directory.
Since the CRM is using ersion 1.1, execute "aspnet_iisreg -r" for 1.1 .NET.
after that, reset the reporting services settings and any other application virtual directory installed.

source of information is here :
http://blogs.msdn.com/mscrmfreak/archive/2006/05/17/599371.aspx
http://gustafwesterlund.blogspot.com/2007/06/reportsconfig-has-invalid-schema.html

Tuesday, August 14, 2007

Making a report scrollable

You can set the report in the report execute form to be scrollable by removing the " scollable='no' " settings in CRMReports/viewer/viewer.aspx file.
The user sometimes cannot click on the "View Report" button to execute the report and scrolling the frame will give the user a method to show the button.
The settings is set on the line that creates a frame :

var oFrame = window.document.createElement ("var oFrame = window.document.createElement ("iframe name='resultFrame' id='resultFrame' src='/_root/Blank.aspx' width='100%' height='100%' scrolling='no'");");