May 16, 2012

A simple code of Progress Indicator


A simple code of progress indicator:

DATALIKE sy-ucomm.

DO 100 TIMES.
  DO 300 TIMES.
    GET TIME.
  ENDDO.
  a(3sy-index.a+3 '%'.
  CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
    EXPORTING
      percentage sy-index
      text       a.
ENDDO.

No comments :