ABAP Program Showing a progress bar in SAP

This process is very easy but a lot of programmers don’t know how to do it. You just have to call the ABAP Function Module ‘ SAPGUI_PROGRESS_INDICATOR ‘ , at the appropriate points.

Progress Bar

It can be implemented as :

REPORT zdany_progress_bar.

DATA: percentage_text TYPE c LENGTH 5.
DO 100 TIMES.
WAIT UP TO ’0.5′ SECONDS.
     percentage_text(3) = sy-index.
        percentage_text+3 = ‘%’.
        CALL FUNCTION ‘SAPGUI_PROGRESS_INDICATOR’
   EXPORTING        
percentage = sy-index     
text = percentage_text.
ENDDO.
  • Share/Bookmark

Related posts:

  1. ABAP Program to display SAP Data in 3-Dimension
  2. ABAP Program to Display SE78 pictures on Screen
  3. Date formatting for Display in ABAP Program
  4. Embed SAP View in an ABAP Program
  5. ABAP Program to Send Mail through SAP

No Responses to “ABAP Program Showing a progress bar in SAP”

Post a Comment