Asked by:
SQL Reporting Service Runtime Error (The item '/reports/Report1' cannot be found. (rsItemNotFound))

Question
-
User778194810 posted
hi friends
How to fix this problem when i run SQLSSRS .
Note:
RDL files are in Reports folder(D:/Reports/reports1.rdl)
My code is given below
ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote
ReportViewer1.ServerReport.ReportServerUrl =New Uri("http://localhost/ReportServer")
ReportViewer1.ServerReport.ReportPath ="/reports/Report1"
ReportViewer1.ShowParameterPrompts =False
ReportViewer1.ShowPrintButton =True
ReportViewer1.ServerReport.Refresh()
Thanks
Thursday, February 27, 2014 5:24 AM
All replies
-
User-465205859 posted
Did you search Google for this error? I did & google gave me more than bunch of solutions, check it out
FIX: rsItemNotFound – Report Builder Report Fails with The item ‘ModeName.smdl’ cannot be found.[^]
“rsItemNotFound” error when clicking on any Navigation List in GP 2010 R2 (SP2)[^]
SSRS 2008 deployed on sharepoint BI gives a drilldown error (rsItemNotFound)[^]
Error message when you try to view a report in Microsoft Dynamics CRM 4.0: “The report cannot be displayed” The item ‘/’ cannot be found. (rsItemNotFound)[^]Monday, March 3, 2014 3:11 AM -
User-8475372 posted
Dear User,
Please check this link :
http://code-gate.blogspot.in/p/reporting-services.html
Thursday, March 6, 2014 4:55 AM -
User-2067077449 posted
ReportViewer1.ServerReport.ReportPath ="/reports/Report1"i guess just add .rdl in Report1 like "/reports/Report1.rdl"
Thursday, March 6, 2014 5:05 AM -
User-924823042 posted
I have same problem My code is
protected void Button1_Click(object sender, EventArgs e)
{
ReportViewer1.ProcessingMode = Microsoft.Reporting.WebForms.ProcessingMode.Remote;
ReportViewer1.ServerReport.ReportServerUrl = new Uri("http://8470p:801/SQL14");
ReportViewer1.ServerReport.ReportPath = "/reports/GroupVehicleReport.rdl";
ReportViewer1.ServerReport.Refresh();
}Error when click on button is
The item '/reports/GroupVehicleReport.rdl' cannot be found. (rsItemNotFound)
Saturday, April 4, 2015 1:16 PM -
User-830595639 posted
Hi,
Not sure if you deployed your report on your local report server, as you mentioned that your rdl file is in (D:/Reports/reports1.rdl) means you are talking about your hard drive location. You need to deploy your reports on report server/Reports folder. I hope this will help you.
Monday, April 6, 2015 7:40 AM