SAP ABAP Programs
Thursday, September 18, 2008
Showing a progress bar in ABAP(Timer Clock)
REPORT zdany_progress_bar.
DATA p_text(5) TYPE c." LENGTH 5.
DO 3 TIMES.
WAIT UP TO '0.5' SECONDS.
p_text(3) = sy-index.
p_text+3 = '%'.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
percentage = sy-index
text = p_text.
ENDDO.
1 comment:
x
said...
This thing does not work
October 18, 2019 at 9:52 AM
Post a Comment
Newer Post
Older Post
Home
Subscribe to:
Post Comments (Atom)
1 comment:
This thing does not work
Post a Comment