Code: Alles auswählen.
data h1 type c.
data h2 type c.
data h3(50) type c.
field-symbols <fs_hex> type x.
assign h1 to <fs_hex> casting.
<fs_hex> = '0E'.
* jetzt steht '0E' in H1
assing h2 to <fs_hex> casting.
<fs_hex> = '21'.
* jetzt '21' in H2
concatenate 'String <' h1 h2 '> Ende' into h3.