Click here to Skip to main content
15,884,425 members
Please Sign up or sign in to vote.
5.00/5 (2 votes)
See more:
hello sirs, Got a problem here. As you see Im doing crystal reporting via Push method. Everything works fine until ive got that error. i dont know what it means and please spare me cause im new in Crystal Reporting. T_T dont know whats the meaning of that error cause yesterday it works fine. Plss help
here is my code:
VB
Dim rptDoc As New ReportDocument
 Dim ds As New DataSet1
 Dim sqlCon As SqlClient.SqlConnection
 Dim dt As New DataTable
 dt.TableName = "Crystal Report Example"
 sqlCon = New SqlClient.SqlConnection("Data Source=.\SQLEXPRESS;AttachDbFilename=|DataDirectory|\TrainingPlanDatabase.mdf;Integrated Security=True;User Instance=True")
 Dim da As New SqlClient.SqlDataAdapter("Select CourseTitle, CourseCode,TargetAttendees,TotalBatches, TotalTrainingHours, discipline, TotalExpenses, Year, TotalExpensesUSD, Attendees2, Batch2, TotalTrainingHours2, TotalExpenses2 from tblTrainingPlan", sqlCon)
 da.Fill(dt)
 ds.Tables(0).Merge(dt)
 rptDoc.Load(Server.MapPath("CrystalReport3.rpt"))
 rptDoc.SetDataSource(ds)
 CrystalReportViewer1.ReportSource = rptDoc

 Dim ParamFields As ParameterFields = Me.CrystalReportViewer1.ParameterFieldInfo
 Dim p_code As New ParameterField
 p_code.Name = "Year"
 Dim p_CourseCode_Value As New ParameterDiscreteValue
 p_CourseCode_Value.Value = Me.txtyear.Text
 p_code.CurrentValues.Add(p_CourseCode_Value)
 ParamFields.Add(p_code)

Got This error
The maximum report processing jobs limit configured by your system administrator has been reached.
can anybody tell me whats the meaning of that?

thanks and more power
Posted
Updated 20-Nov-19 1:04am

 
Share this answer
 
Comments
janwel 10-Aug-11 3:42am    
Sir may I ask? When i dispose it on my page unload why is that it is still on my C:\Documents and Settings\oca14625\Local Settings\Temp.. Sir is this correct?
sunnyuppal33 11-Sep-13 2:47am    
Thanks its really help ful
janwel 10-Aug-11 4:13am    
thanks sir for your blog site. It really help alot Mhuah ^_^ love you sir
Toniyo Jackson 10-Aug-11 4:39am    
Yo are welcome :)
[no name] 6-Feb-13 4:32am    
My 5 (Y)
I suspect it means what it says. I don't do Crystal Reports, but I speak English. There's a maximum number of reports that can be generated at once, and it's configured such that you have reached that limit. I'd suggest that means you have a lot of jobs going on at once, or issues in your code that cause reports to stay open.
 
Share this answer
 
Comments
janwel 10-Aug-11 3:25am    
waaahh! Sir what should I do.. reconfigure it T_T or limit the sql statement columns. Me to, i really dont know crystal reporting (Push method >_<)
Member 12368059 16-Jun-17 8:36am    
worthless reply

This content, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)



CodeProject, 20 Bay Street, 11th Floor Toronto, Ontario, Canada M5J 2N8 +1 (416) 849-8900