[ABAP] Aufruf des Standard-Browsers

CALL FUNCTION 'CALL_BROWSER'
  EXPORTING
    url                    = 'http://www.google.de'
    new_window             = abap_true
  EXCEPTIONS
    frontend_not_supported = 1
    frontend_error         = 2
    prog_not_found         = 3
    no_batch               = 4
    unspecified_error      = 5
    OTHERS                 = 6.

IF sy-subrc <> 0.
  WRITE:/ 'Fehler'.
ENDIF.