‎2022 Nov 11 9:36 AM
Hi guys I create an internal table of scarr table and put it in a string_table
something like this

and concat it in a variable
lv_html_scarr = lv_html_scarr && '<tr><td>' && concat_lines_of( table = lt_field sep = '</td><td>' ) && '</td></tr>'.
the value of lv_html_scarr is this
<table border = "1"><tr><td>100</td><td>AA</td><td>American Airlines</td><td>USD</td><td>http://www.aa.com</td></tr></table>
my question is‎2022 Nov 11 10:19 AM
You can display HTML via the embedded browser of SAP GUI, via the class CL_GUI_HTML_VIEWER. There are several programs demonstrating this class, including CL_ABAP_BROWSER=>SHOW_HTML.
‎2022 Nov 11 10:08 AM
‎2022 Nov 11 10:19 AM
You can display HTML via the embedded browser of SAP GUI, via the class CL_GUI_HTML_VIEWER. There are several programs demonstrating this class, including CL_ABAP_BROWSER=>SHOW_HTML.