Reputation: 15726
Can anyone know why SAP crystal report load very slow even with simple report only first time then after it load quickly and what is the solution to overcome with it?
Upvotes: 4
Views: 3403
Reputation: 1617
If you are displaying the crystal report using the .net platform, the first time the form loads it will be slow because of the time it takes the JIT compiler to generate the machine code.
We ended up running a report when the main program starts so that subsequent reports are faster.
More in depth explanation of what happens with JIT compilation
SO answer about when JIT compilation happens
Upvotes: 2