Code: Alles auswählen.
<%=otr(Z_MYAPP/ACCEPT_BUTTON)%>
Code: Alles auswählen.
<%
data: it type string_table.
append 'text1 in deutsch' to it.
append 'text2 in deutsch' to it.
%>
<!-- Aufruf des Extension-Elementes -->
<MyExtension:MyElement string_table = <%= it %> />
Code: Alles auswählen.
data: html type string,
ret type ref to if_bsp_writer,
wa type string.
loop at t into wa.
concatenate html wa into html.
endloop.
ret->print_string( html ).