Hi:
I have an ssrs report that was working, but now when I try and run it, a message shows up: "Navigation to the webpage was canceled". Other ssrs reports run just fine. I can run the report in BIDS and on the Reports webpage.
I tried redeploying the report, but this one report will not display in Tessitura. Has anyone else experienced this?
Thanks in advance,
James
I have discovered that if I rename the report in the Tessitura report setup, the report displays again without any issues (very strange). This report is using some custom code inside it, I do not see the connection with the problem, but it is the only report that has custom code.
The code:
Public Function DivideBy(ByVal Exp1, ByVal Exp2)
If Exp2 = 0 Then
DivideBy = 0
Else : DivideBy = Exp1 / Exp2
End If
End Function