Beispiel 1
cl_abap_browser=>show_url( url = 'www.google.de'
title = 'ABAP-Browser'
size = cl_abap_browser=>large
modal = abap_true
printing = abap_false
buttons = abap_true
format = cl_abap_browser=>landscape
position = cl_abap_browser=>topleft
context_menu = abap_false ).
Beispiel 2
* HTML-Code generieren lassen
SELECT * FROM tnapr INTO TABLE @DATA(it_tnapr).
DATA(lv_html) = cl_demo_output=>get( it_tnapr ).
* HTML-Code anzeigen
cl_abap_browser=>show_html( html_string = lv_html
size = cl_abap_browser=>xlarge
format = cl_abap_browser=>landscape
context_menu = abap_true
buttons = cl_abap_browser=>navigate_html ).