Hello I am getting this crystal report error after deploying web application...report working on local server but giving error after deploying
Error is :
The maximum report processing jobs limit configured by your system administrator has been reached.
My back end code for loading crystal report is :
ReportDocument crystalReport = new ReportDocument();
crystalReport.Load(Server.MapPath("~/CrystalReportMemo.rpt"));
if (Request.QueryString["id"] != null)
{
DataSetMemo Memodata = GetData("select * from Memo where MemoNo='" + Request.QueryString["id"].ToString() + "'");
crystalReport.SetDataSource(Memodata);
CrystalReportViewer1.ReportSource = crystalReport;
}
else
{
DataSetMemo Memodata = GetData("select * from Memo where MemoNo='" + Session["MemoNo"].ToString() + "'");
crystalReport.SetDataSource(Memodata);
CrystalReportViewer1.ReportSource = crystalReport;
}
how to handle this error plase provide refernce
thanks