cancel
Showing results for 
Search instead for 
Did you mean: 

opening URL with a button

Former Member
0 Kudos

hi,

I want to open an URL ( for ex - www.google.com) whenever a buttton is pressed.

Send a dummy code.

Pankaj.

Accepted Solutions (0)

Answers (1)

Answers (1)

abhimanyu_lagishetti7
Active Contributor
0 Kudos

In the Same Existing browser window Use [Exit Plug|http://help.sap.com/saphelp_nw04s/helpdata/en/45/1bc575ba064574e10000000a114a6b/content.htm]

as an External window use CREATE_EXTERNAL_WINDOW method of IF_WD_WINDOW_MANAGER

data lo_window_manager type ref to if_wd_window_manager.

data lo_api_component type ref to if_wd_component.

data 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.co.in/'

MODAL = ABAP_FALSE

HAS_MENUBAR = ABAP_TRUE

IS_RESIZABLE = ABAP_TRUE

HAS_SCROLLBARS = ABAP_TRUE

HAS_STATUSBAR = ABAP_TRUE

HAS_TOOLBAR = ABAP_TRUE

HAS_LOCATION = ABAP_TRUE

RECEIVING

WINDOW = lo_window.

Edited by: Abhimanyu Lagishetti on Aug 22, 2008 12:29 PM