Skip to Content
0
Former Member
Mar 04, 2009 at 11:54 AM

UPDATE field in internal table?

22929 Views

Hi,

I have an internal table with XXXXXXXX records. I have to UPDATE 1 field with the same value.

Is there a faster way?

    LOOP AT lt_order_adm_h INTO wa_order_adm_h.
      wa_order_adm_h-process_type = 'Z002'.
      MODIFY lt_order_adm_h FROM wa_order_adm_h TRANSPORTING process_type.
    ENDLOOP.

tnx, Adibo.