cancel
Showing results for 
Search instead for 
Did you mean: 

How to make a popup progress indicator?

Former Member
0 Kudos

Hi everyone,

How to pop up a progress indicator when user is doing some mass work?

I want the pop up window doesn't have the title and some default button.

Just a naked progress indicator lies in front of the screen.

Can this be realized?

Regards,

Aaron.

Accepted Solutions (1)

Accepted Solutions (1)

uday_gubbala2
Active Contributor
0 Kudos

Hi Aaron,

We can discard the button & message text but I don't think that we can even do away with the popup window's title. Try go through Thomas Jung's comments in this [thread |;wherein Runal Singh was trying to achieve the, "wait .." with rotating icon kind of functionality in his application.

Regards,

Uday

Former Member
0 Kudos

Hi Uday,

I've gone through the thread you metioned. But in the thread, the problem hasn't been solved.

Thanks and Regards,

Aaron

Former Member
0 Kudos

hi ,

This is the code for displaying popup window...



DATA: l_cmp_api          TYPE REF TO if_wd_component,
           l_window_manager   TYPE REF TO if_wd_window_manager,
           l_popup            TYPE REF TO if_wd_window,
           l_text             TYPE string_table,
          l_api              TYPE REF TO if_wd_view_controller,
          message            TYPE string.
 
  l_cmp_api        = wd_comp_controller->wd_get_api( ).
  l_window_manager = l_cmp_api->get_window_manager( ).
 
  message = 'Invalid Material'.
  APPEND message TO l_text.
 
  l_popup = l_window_manager->create_popup_to_confirm(
                text            = l_text
               message_type    = if_wd_window=>CO_MSG_TYPE_ERROR
               window_position = if_wd_window=>co_center ).
 
  l_popup->open( ).

Edited by: sreelakshmi.B on Jul 24, 2009 10:14 AM

Answers (0)