Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

what Progress bar

Former Member
0 Likes
484

What is Progress bar ?

what is the use of it?

3 REPLIES 3
Read only

Former Member
0 Likes
440

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

Read only

Former Member
0 Likes
440

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'.

Read only

Former Member
0 Likes
440

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