Friday, December 14, 2018

CL_ABAP_BROWSER

  DATA l_html TYPE string.

  l_html '<html><body><h1>Hello World!</h1></body></html>'.

  cl_abap_browser=>show_html(
    EXPORTING
      html_string l_html
      title       `cl_abap_browser`
      size        cl_abap_browser=>xlarge
  ).

Working with the session Id // ID für den Modus

Sometimes it can be helpful to know the id of the current session     CALL FUNCTION 'TH_GET_CONTEXT_ID'       IMPORTING         cont...