Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Chriss Miller on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Getting the following error about Crystal Job Limit has been reached.

Status
Not open for further replies.

hanglam

Programmer
Dec 11, 2002
143
US
Hi,

I'm using .NET VB 2005 with Crystal Report version 10.2.3600.

I'm getting the following the error message :

"The maximum report processing jobs limit configured by your system administrator has been reached. "

Does anybody knows what this message means and how do I fixed ?

Thanks,
Hang
 
How do you link the report to database?

Are the reports run from a server using RAS?


-Mo
 
I got the answer from another website, given by Eric D. Coommer on
" there is a registry key setting-
HKEY_LOCAL_MACHINE;SOFTWARE;Crystal Decisions;10.0;Report Application
Server;InprocServer;PrintJobLimit(defaul
t 75)

You can increase this size. There are two registry keys both under the
Report Application Server. The InprocServer sets the limit for the number
of "open" reports even if you're not explicitly using the RAS (i.e. just
using the .NET Report Document component or CrystalViewer control- the
crystal engine *is* using the RAS behind the scenes). If you're using the
RAS explicitly, then you can set the same key under CrystalDecisions;Report
Application Server;Server;PrintJobLimit

Also, I was not "disposing" of my report objects after rendering them on the
web form. In the Page_Unload event, I implemented the
ReportDocument1.Dispose() method (not suggested/mentioned in any of the
sample code I have found or any of the books on crystal.NET I have read)

I have not had the problem since making these changes. I was cautioned
against raising the PrintJobLimit too high, however, as this can eventually
lead to serious performance issues, so be careful "
 
I didn't change the registry key,
just added ReportDocument.Dispose() to the Page Unload event and that did the trick.
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top