1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
METHOD onactiongenerate_url . DATA: lo_window_manager TYPE REF TO if_wd_window_manager, lo_api_component TYPE REF TO if_wd_component, lo_window TYPE REF TO if_wd_window. lo_api_component = wd_comp_controller->wd_get_api( ). lo_window_manager = lo_api_component->get_window_manager( ). CALL METHOD lo_window_manager->create_external_window EXPORTING url = 'http://www.google.com' modal = abap_true has_menubar = abap_true is_resizable = abap_true has_statusbar = abap_true has_toolbar = abap_true has_location = abap_true RECEIVING window = lo_window. lo_window->open( ). ENDMETHOD. |