Open all | Close all
|
Gui_Frontend_Services->execute
Execute external command, the example below calls a web address.
|
Call web address from within SAP
DATA: gd_webaddr TYPE string VALUE 'www.sapdevelopment.co.uk'.
CALL METHOD cl_gui_frontend_services=>execute
EXPORTING
document = gd_webaddr
EXCEPTIONS
OTHERS = 1.
|
|
|