‎2007 Apr 25 8:25 AM
‎2007 Apr 25 8:30 AM
progress bar indicates the SAP process i.e selection of data base recordss etc.
check this sample code
<b>REPORT Z_SAPGUI_INDICATOR.
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.
</b>
Regards
Prabhu
‎2007 Apr 25 8:32 AM
hi,
Progress bar will display the status of the running transaction or program
It will display a clock at the bottom on the status bar to show how much percent of program is complated
chk this
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = '20%'
text = 'connection starting'.
‎2007 Apr 27 9:18 PM
Hi,
Progress bar function module is used to display the required messages at the bottom on the status bar during the execution of the program not only to show how much percent of program is completed.
CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = '50%'
text = 'Reading database from BSEG'.
thanks,
sksingh