I converted a ASP.net C# web application from VS2008 to VS2010 but when I trying and display a Crystal Report in a viewer I get a Message Box:-
Enter Values
The report you requested requires further information.
Server Name - Order_Input_Dataset
Database Name-
User Name-
Password-
Use Integrated Security
Here's the code to display the report:-
public static void Open_Report(ref ReportDocument MyReport, ref CrystalDecisions.Web.CrystalReportViewer CrystalReportViewer1, TOrder Order, DataSet Order_Input_As_DataSet, System.Web.HttpServerUtility Server)
{
try
{
// As a matter of caution lets clear out any reports first.
// Clearing out will remove the Temp Crystal Report on the Servers Windows\Temp\ Folder
Close_Report(MyReport, CrystalReportViewer1);
MyReport = new ReportDocument();
MyReport.Load(Server.MapPath(Constants.rOrder_Report_Path)); // Must Load prior to setting any controls on the report
if (Order_Input_As_DataSet != null)
{
MyReport.SetDataSource(Order_Input_As_DataSet.Tables[0]);
}
SharedMethods.Order_Report = MyReport;
if (SharedMethods.Order != null)
{
SharedMethods.Set_Report_Objects(MyReport, Order);
}
CrystalReportViewer1.ReportSource = MyReport;
CrystalReportViewer1.DataBind();
CrystalReportViewer1.RefreshReport();
}
catch
{
}
}
Member
57 Points
248 Posts
The report you requested requires further information. Converted a VS 2008 to VS 2010 c#
Aug 15, 2014 09:39 AM|Yuppski|LINK
Hi All
I converted a ASP.net C# web application from VS2008 to VS2010 but when I trying and display a Crystal Report in a viewer I get a Message Box:-
Enter Values
The report you requested requires further information.
Server Name - Order_Input_Dataset
Database Name-
User Name-
Password-
Use Integrated Security
Here's the code to display the report:-
Here's the Source for the Page - Viewer:-
I have another Crystal Reports Viewer on the same web application which now says:-
All worked when using VS 2008.
I've searched high and low on the Internet for a solution but couldn't find anything.
Any ideas?
tia
Participant
761 Points
264 Posts
Re: The report you requested requires further information. Converted a VS 2008 to VS 2010 c#
Aug 15, 2014 10:04 AM|Rajsasp|LINK
Below link may help you.
http://stackoverflow.com/questions/1186048/crystal-reports-the-report-you-requested-requires-further-information
Thank You