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

49 lines
1.2 KiB
XML

<?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>