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.