Code: Alles auswählen.
...
FORM dd_add_icon USING p_do TYPE REF TO cl_dd_document.
...
text = icont-quickinfo.
CALL METHOD col3->add_text
EXPORTING
text = text.
*** Hier fängt das eingefügte Democoding an
CALL METHOD col3->add_static_html
EXPORTING
string_with_html = '<td><img src=''http://www.abapforum.com/forum/styles/prosilver/theme/images/abapforum-logo.jpg''></td>'.
*** Und hier ist es auch schon zuende
CALL METHOD ta->new_row.
ENDLOOP.
ENDFORM. " DD_ADD_ICON
...