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 Indicator in ALV report

biswajit_das6
Participant
0 Likes
1,432

Hi All,

Can any body please help me by providing code for displaying progress indicator in ALV report?

Thanks in advance.

Tamal Roy

1 ACCEPTED SOLUTION
Read only

alpesh_saparia3
Active Contributor
0 Likes
979

You can use function module 'SAPGUI_PROGRESS_INDICATOR' to display progress indicator.

Hi All,

Can any body please help me by providing code for displaying progress indicator in ALV report?

Thanks in advance.

Tamal Roy

3 REPLIES 3
Read only

alpesh_saparia3
Active Contributor
0 Likes
980

You can use function module 'SAPGUI_PROGRESS_INDICATOR' to display progress indicator.

Read only

Former Member
0 Likes
979

Hi Biswajit,

U need to use this function module 'SAPGUI_PROGRESS_INDICATOR'

Please check this code

DATA: A LIKE SY-UCOMM. 

DO 100 TIMES. 
  DO 300 TIMES. 
    GET TIME. 
  ENDDO. 

  A(3) = SY-INDEX.A+3 = '%'. 

  CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR' 
       EXPORTING 
            PERCENTAGE = SY-INDEX 
            TEXT       = A. 
ENDDO.

Best regards,

raam

Read only

geetha_k
Active Participant
0 Likes
979

Hi,

check this link....[http://www.sapdev.co.uk/programs/custom/zp_postcode.htm]