Hi,
While developing a SSRS report, initially we set the Action property of the text box with the following value that will open the CRM’s Account record
=Parameters!CRM_URL.Value & “?ID={“&Fields!accountid.Value.ToString()&”}&OTC=1″

It was working fine however when we were using the same report inside the Dashboard, the report was not showing up properly as it was inside the IFrame.
So we had to use window.open for the Action’s Expression to open the report properly in a new window from inside Dashboard’s iframe.
=“javascript:void(window.open(‘”+ Parameters!CRM_URL.Value + “?ID={“ + Fields!accountid.Value.ToString() +“}&OTC=1′ ,’_blank’))”
Hope it helps.







