[ABAP] Datei auf dem Hostsystem (Windows) ausführen

TRY.
    cl_gui_frontend_services=>execute(
    EXPORTING
      application            = 'notepad.exe'
      maximized              = 'X'
      synchronous            = 'X' ).

  CATCH cx_root INTO DATA(e_text).
    MESSAGE e_text->get_text( ) TYPE 'I'.
ENDTRY.