Frequently Asked Question

FAQ / Windows Shared Hosting


Why the error The maximum report processing jobs limit configured by your system administrator has been reached is displayed while printing crystal report ?

This error message will appear if the web application has exceeded the Crystal Reports reporting engine default print job limit.

By default, the print job limit is set to 75 print jobs. When high reporting load has been placed on the reporting engine, it can hit the 75 print job limit and when it crossed 75 job limit then it will cause this error.

The issue can be overcome by Implementing IDisposable interface in coding, make your application to manage any objects and it to be destroy the object when it no longer needed in application. You need to close object,when it not in use.

Dispose un-needed objects on Page_Unload :

Call .Dispose and .Close method when the report object is no longer need.

Dim cryDoc As ReportDocument

On page Unload dispose the Report Document Object.

rDoc.Close()
rDoc.Dispose()

How this faq is helpful:

Not at all
helpful
Not much
helpful
Some what
helpful
Very
helpful
Extremely
helpful

What could be better? (Optional)
X
  Not related to my issue
  Too complicated explanations
  Too much information
  Incorrect information
  Unclear information
  Incomplete information
  Too old information
Do you have any other feedback about this faq ?
1000