‎2007 Apr 23 6:25 AM
Hi........
I wanted add progress bar in program. shall I add this into the loop or before loop. does it efffect on performance of report.
‎2007 Apr 23 6:27 AM
‎2007 Apr 23 6:30 AM
Hi,
There is no performance issue.
Reg,
Hariharan Natarajan
‎2007 Apr 26 7:16 AM
Hi Shuba,
There is no such performance issue problem in using that. The thing is any way the system need to process the progress bar also.But this thing will not affect the perfomance.
Sarath
‎2007 Apr 26 7:31 AM
Hi Shuba,
If you add progress bar functionality to your program , it doesn't affect in any way your program performanance.
Try this sample code.
With the function module SAPGUI_PROGRESS_INDICATOR you can display a progress clock and a message.
Code
DO 100 TIMES.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = sy-index
text = sy-index.
ENDDO.This code snippet too.
https://www.sdn.sap.com/irj/sdn/wiki?path=/display/snippets/abapHowtocreateaprogressbarwithestimatetimeto+finish&
Regards,
Raghav