How to create a graphical progress bar

It is very simple, you can call 'progress_popup' function for generate a graphical progress bar.


 REPORT ZPROGRESS_POP .
data: val type i.
data event(6) type c.

val = 0.
do 4 times.

   val  = val + 25.

   CALL FUNCTION 'PROGRESS_POPUP'
    EXPORTING
         BTN_TXT     = 'CANCEL'
         CURVAL      =  val
         MAXVAL      =  100
         STAT        = '1'
         TEXT_1      = 'Text 1'
         TEXT_2      = 'Text 2'
         TEXT_3      = 'Text 3'
         TITLE       = 'Progress Bar in Pop Up Window '
         WINID       =  100
    IMPORTING
         POPUP_EVENT = event.
enddo.


CALL FUNCTION 'PROGRESS_POPUP'
    EXPORTING
         STAT        = '2'
         WINID       =  100.

CALL FUNCTION 'GRAPH_DIALOG'
       EXPORTING
            CLOSE = 'X'.
		
		

    Requires Free Membership to View

This was first published in September 2001

Join the conversationComment

Share
Comments

    Results

    Contribute to the conversation

    All fields are required. Comments will appear at the bottom of the article.

    Disclaimer: Our Tips Exchange is a forum for you to share technical advice and expertise with your peers and to learn from other enterprise IT professionals. TechTarget provides the infrastructure to facilitate this sharing of information. However, we cannot guarantee the accuracy or validity of the material submitted. You agree that your use of the Ask The Expert services and your reliance on any questions, answers, information or other materials received through this Web site is at your own risk.