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

Example for Sapgui_progress_indicator

Former Member
0 Likes
4,914

Hello Guys

Can Some one give me a sample code for how to use

<b>Sapgui_progress_indicator</b>

I am trying to use but at which event we have to define and what value need to pass.

Thanks

Swati...

1 ACCEPTED SOLUTION
Read only

Former Member
1,201

Hi,

Please check this sample code.


data: index type i.
do 4 times.
index = sy-index * 25.
 
  call function 'SAPGUI_PROGRESS_INDICATOR'
       exporting
            percentage = index
            text       = 'Processing Data'.
  wait up to 1 seconds.
enddo.

Also check this thread for another sample codes.

Regards,

Ferry Lianto

1 REPLY 1
Read only

Former Member
1,202

Hi,

Please check this sample code.


data: index type i.
do 4 times.
index = sy-index * 25.
 
  call function 'SAPGUI_PROGRESS_INDICATOR'
       exporting
            percentage = index
            text       = 'Processing Data'.
  wait up to 1 seconds.
enddo.

Also check this thread for another sample codes.

Regards,

Ferry Lianto