... remember I was always using SAPGUI_PROGRESS_INDICATOR FM to display such messages on the screen. When used inside loops I often was manually dividing current tabix by selected variable (for example 1000) ...
... indicator in ABAP. I've said also that it's better to cl_progress_indicator instead of FM SAPGUI_PROGRESS_INDICATOR because of built-in function to show progress only once per 10 seconds. But sometimes ...
...
form sapgui_progress using text type c percentage type n.
call function 'SAPGUI_PROGRESS_INDICATOR'
exporting
percentage = percentage
text = text
exceptions ...
... don't want to use it at the moment then you could use FM TH_REDISPATCH with the check_runtime parameter equal to 0. You could also you FM SAPGUI_PROGRESS_INDICATOR for the same purpose but keep in ...