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

PUTTING PROGREES BAR

Former Member
0 Likes
823

HI ALL,

HOW I PUT PROGRESS BAR ON WHILE PRODUCING REPORT.

THANK U.

HI ALL,

HOW I PUT PROGRESS BAR ON WHILE PRODUCING REPORT.

THANK U.

6 REPLIES 6
Read only

JozsefSzikszai
Active Contributor
0 Likes
771

hi Pawan,

use SAPGUI_PROGRESS_INDICATOR FM.

hope this helps

ec

Read only

Former Member
0 Likes
771

SAPGUI_PROGRESS_INDICATOR function module

Read only

Former Member
0 Likes
771

Hi,

you need to call the function module SAPGUI_PROGRESS_INDICATOR to show the progress indicator

Regards

Sudheer

Read only

Former Member
Read only

Former Member
0 Likes
771

Hi

Check this fm SAPGUI_PROGRESS_INDICATOR

Regards

Gregory

Read only

Former Member
0 Likes
771
REPORT  ZPROG_INDC.

types: input(10) type c.
Parameters: A type input.

DO 10 TIMES.
DO 300000 TIMES.
GET TIME.
ENDDO.
A(3) = SY-INDEX.A+3 = '%'.

CALL FUNCTION 'SAPGUI_PROGRESS_INDICATOR'
EXPORTING
PERCENTAGE = sy-index
TEXT = Creating Report.
ENDDO.

WRITE: / 'PROGRESS INDICATOR'.

<b>Reward if helpful</b>