forked from SAP-samples/abap-cheat-sheets
-
Notifications
You must be signed in to change notification settings - Fork 0
/
zdemo_abap_st_carrhtml.xslt.source.xml
48 lines (46 loc) · 1.16 KB
/
zdemo_abap_st_carrhtml.xslt.source.xml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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>