I have an SSRS report with hyperlinks in. When I add this report in to CRM it runs fine, and you are able to click on the hyperlinks. What should happen is that it takes you to the related record.. however a CRM error box comes up with the options to 'try again' or cancel. If you click 'try again', it works fine and takes you to the record. I have declared the following expression in the placeholder properties;
=IIf(IsNothing(Fields!MyEntityid.Value), Nothing, String.Format (System.Globalization.CultureInfo.InvariantCulture, "{0}?ID={1}&LogicalName={2}", Parameters! CRM_URL.Value, Fields!MyEntityid.Value, "MyEntity"))
Does anyone know a reason for this bizarre behaviour?