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

ABAP Function module

Former Member
0 Likes
564

What is the function module that i can use to show the progress of my report on the status bar as clock.

Let me know what are the inputs to the function module.

Thanks,

mohammed

1 ACCEPTED SOLUTION
Read only

amit_khare
Active Contributor
0 Likes
534

SAPGUI_PROGRESS_INDICATOR.

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'

EXPORTING

text = 'Test Process...'.

ENDIF.

4 REPLIES 4
Read only

amit_khare
Active Contributor
0 Likes
535

SAPGUI_PROGRESS_INDICATOR.

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'

EXPORTING

text = 'Test Process...'.

ENDIF.

Read only

0 Likes
534

input?

Read only

Former Member
0 Likes
534

Hi

you can use the FM ->

SAPGUI_PROGRESS_INDICATOR

See its relevant documenataion how to use the same in your program.

Regards

- Atul

Read only

RichHeilman
Developer Advocate
Developer Advocate
0 Likes
534

You can use it like this.



report zrich_0001.

data: percent type i.


do 5 times.

  percent  =  percent + 20.

  call function 'SAPGUI_PROGRESS_INDICATOR'
       exporting
            percentage = percent
            text       = 'Yes, Im working on it!!'.

  wait up to 1 seconds.

enddo.

Regards,

Rich Heilman