Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Progress bar

Former Member
0 Likes
537

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.

4 REPLIES 4
Read only

Former Member
0 Likes
496

no Performace Issue , u can add.

Regards

Prabhu

Read only

Former Member
0 Likes
496

Hi,

There is no performance issue.

Reg,

Hariharan Natarajan

Read only

Former Member
0 Likes
496

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

Read only

Former Member
0 Likes
496

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