This commit is contained in:
danrega
2024-02-12 11:42:11 +01:00
parent 8e2bfd7392
commit 20bc698fa3
9 changed files with 4093 additions and 4099 deletions

View File

@@ -0,0 +1,48 @@
<?sap.transform simple?>
<tt:transform xmlns:tt="http://www.sap.com/transformation-templates">
<tt:root name="CARRIER_INFO"/>
<tt:template>
<html>
<body>
<h2>Carrier Information</h2>
<table border="1">
<tr>
<td>
<b>ID</b>
</td>
<td>
<b>Name</b>
</td>
<td>
<b>Currency</b>
</td>
<td>
<b>Website</b>
</td>
</tr>
<tt:loop ref=".CARRIER_INFO">
<tr>
<td>
<tt:value ref="$ref.carrid"/>
</td>
<td>
<tt:value ref="$ref.carrname"/>
</td>
<td>
<tt:value ref="$ref.currcode"/>
</td>
<td>
<a>
<tt:attribute name="href" value-ref="$ref.url"/>
<tt:value ref="$ref.url"/>
</a>
</td>
</tr>
</tt:loop>
</table>
</body>
</html>
</tt:template>
</tt:transform>