Open all | Close all

Getting the LATEST information!

To ensure you are getting the latest information please vist this page on the new domain for SAP Development


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.