Code: Alles auswählen.
types: begin of struc,
zahl(2) type c,
buchstabe(2) type c,
end of struc.
data: itab type standard table of struc,
wa type struc,
buchstaben type string,
zahlen type string.
wa-zahl = '1'.
wa-buchstabe = 'A'.
append wa to itab.
wa-zahl = '2'.
wa-buchstabe = 'B'.
append wa to itab.
wa-zahl = '3'.
wa-buchstabe = 'C'.
append wa to itab.
clear wa.
loop at itab into wa.
concatenate buchstaben ` ` wa-buchstabe into buchstaben.
concatenate zahlen ` ` wa-zahl into zahlen.
endloop.
write: / zahlen.
write: / buchstaben.