Code: Alles auswählen.
types: begin of itab,
item type matnr,
item_desc type maktx,
...
end of itab.
data: itab1 type table of itab with header line.
field-symbols: <itab1> structure itab default itab1.
loop at itab1 assigning <itab1>.
...
endloop.
Code: Alles auswählen.
field-symbols: <itab1> type itab.
Patrick K. hat geschrieben: Und heißt es nicht:
Data: itab1 type standard table of itab?
Code: Alles auswählen.
FIELD-SYMBOLS:
<wa_itab> LIKE LINE OF itab.
* bzw.
DATA:
wa_itab LIKE LINE OF itab.
Ja, das stimmt, ich mache es nur noch so.PsychoMantis hat geschrieben:...
Und wenn man ein paar mal mit Feldsymbolen gearbeitet hat, geht einem das auch in Fleisch und Blut über.
...
Code: Alles auswählen.
APPEND <tab1> to tab2.