cancel
Showing results for 
Search instead for 
Did you mean: 

Full-screen (no browser toolbar)

kmoore007
Active Contributor
0 Kudos

Is there a way to make the web dynpro application open in the browser without the browser toolbar(s)?  Basically, make the WDA open in the browser full-screen.

Thanks.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Kenneth,

Just set the has_toolbar parameter to abap_false:

DATA: lo_window   TYPE REF TO if_wd_window_manager,

      lo_comp_api TYPE REF TO if_wd_component,

      lo_result   TYPE REF TO if_wd_window,

      lv_url      TYPE string.

  lo_comp_api = wd_comp_controller->wd_get_api( ).

  lo_window   = lo_comp_api->get_window_manager( ).

  lo_result = low_window->create_external_window( url          = lv_url

                                                                          has_toolbar  = abap_false

                                                                         has_menubar  = abap_false

                                                                          has_location = ABAP_TRUE ).

kmoore007
Active Contributor
0 Kudos

Hey Samuel,

I am not using an external window, just a plain view.  But perhaps that is what I will need to do in order to achieve what I need.  May give it a try.

Answers (0)