Files
abap-cheat-sheets/src/zdemo_abap_st_strhtml.xslt.source.xml
danrega 1f6382cc41 Update
2024-02-12 11:43:53 +01:00

21 lines
503 B
XML

<?sap.transform simple?>
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
<tt:root name="STRING_TABLE"/>
<tt:template>
<html>
<body>
<h2>String Table Content</h2>
<table border="1">
<tt:loop ref=".STRING_TABLE">
<tr>
<td>
<tt:value ref="$ref"/>
</td>
</tr>
</tt:loop>
</table>
</body>
</html>
</tt:template>
</tt:transform>