Well i have folloing:
DATA: ta_ausgabe TYPE STANDARD TABLE OF zdyu_vstel,
wa_ausgabe like LINE OF ta_ausgabe
DATA: ta_zdyu_vstel TYPE STANDARD TABLE OF zdyu_vstel.
When I try to do:
APPEND ta_ausgabe to ta_zdyu_vstel.
I get that ta_ausgabe cannot be converted to the line type oof ta_zdyu_vstel
When I try to insert the data directly from ta_ausgabe
INSERT ta_ausgabe into zdyu_vstel.
I get "zdyu_vstel is not an internal table
...what do I do wrong?