I have two reps, constructed in VS 2005 and running in sharepoint mode (Sharepoint 2005, IE11, SQL Server 2008R2). Their locations (whatever):
https://bi.bcs.ru:4433/reports/DocLib/Clients.rdl
https://bi.bcs.ru:4433/ssp/DocLib7/Client_mooves.rdl
Now, I want to make a drillthrough link from Clients.rdl to Client_mooves.rdl. I try to build a valid link for "Jump to report" field. Here is my tryes and fails:
- (a) use relative link "../../ssp/DocLib7/Client_mooves.rdl". Error: Cannot find element "https://bi.bcs.ru:4433/reports/ssp/DocLib7/Client_mooves.rdl". (rsItemNotFound). Comment: somehow SSRS addes "/reports/" folder to the root path, don't know why.
- (b) use absolute link "/ssp/DocLib7/Client_mooves.rdl". Error: An error occurred during report rendering.
- (c) use full url link "https%3a//bi.bcs.ru%3a4433/ssp/DocLib7/Client_mooves.rdl". Error: Cannot find element "https://bi.bcs.ru:4433/reports/ssp/DocLib7/Client_mooves.rdl". (rsItemNotFound) . Comment: it's the same err as in (a) with "/reports/" folder, added to the root.
How can I force my link in 'Jump to report' field to open reports in "[root]/ssp/" folder, i.e. out of "[root]/reports/" folder? Note: I can not moove reports between folders and unable to use 'Jump to url' links (they does not work at our portal, may be, it's becase of sharepoint mode, url links are ignored somehow and are not clickable)