已达到系统管理员配置的最大报告处理作业限制. [英] The maximum report processing jobs limit configured by your system administrator has been reached.

查看:95
本文介绍了已达到系统管理员配置的最大报告处理作业限制.的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

您好,先生,这里有问题.如您所见,我通过Push方法执行水晶报告.一切正常,直到ive遇到该错误.我不知道这是什么意思,请避免造成我在Crystal Reporting中的新问题. T_T不知道该错误的含义是什么,导致昨天它工作正常.请帮助
这是我的代码:

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:

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)


得到了这个错误
The maximum report processing jobs limit configured by your system administrator has been reached.
谁能告诉我这是什么意思?

感谢和更多的力量


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

推荐答案

在下面查看我的博客.

http://toniyojackson.blogspot.com/2010/09/maximum-report- processing-jobs-limit.html [
Check my blog below.

http://toniyojackson.blogspot.com/2010/09/maximum-report-processing-jobs-limit.html[^]


我怀疑它的意思是它的意思.我不做Crystal Reports,但我会说英语.一次可以生成的报告数量上限,并且已配置为达到该限制.我建议您这样做意味着您一次执行大量工作,或者代码中的问题导致报表保持打开状态.
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.


这篇关于已达到系统管理员配置的最大报告处理作业限制.的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
相关文章
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆