This commit is contained in:
danrega
2024-02-12 11:43:53 +01:00
parent 1d054b64d5
commit 1f6382cc41
6 changed files with 124 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
<?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>