kennt einer einen FuBa, der mir aus einem String die Zahlen extrahiert und in eine Tabelle ablegt? z.B. aus der String " 2345/45678 CR434343.434" eine Tabelle in der Form liefert:
report ztest.
data: inp_string(255) type c value '2345/45678 CR434343.434'.
data: tmp_string(255) type c.
data: itvalues like standard table of inp_string.
tmp_string = inp_string.
translate tmp_string using '0 1 2 3 4 5 6 7 8 9 '.
condense tmp_string no-gaps.
overlay inp_string with tmp_string only tmp_string.
condense inp_string.
split inp_string at space into table itvalues.