Table work areas are used to hold data records when processing internal tables. Work areas are declared to hold the data of individual records during table processing. Work areas are usually defined with the same structure as the internal table they are associated with.
READ TABLE lt_mara WITH KEY matnr = lv_matnr INTO DATA(ls_mara).
LOOP AT lt_mara INTO DATA(ls_mara).
FIELD0-SYMBOLS
READ TABLE lt_mara WITH KEY matnr = lv_matnr ASSIGNING FIELD-SYMBOL().
LOOP AT lt_mara ASSIGNING FIELD-SYMBOL().
No comments:
Post a Comment