2006 Sep 01 1:03 PM
hi experts,
i have a query like modifing the internal table in badi. badi defination name is GLT0_AFTERSPLIT_VAL.
another defination name is ac_document.
can anybody plz tell me how to modify the internal table. is it possible to define internal table with header line.
advance thanx.
Murali Papana.
hi experts,
i have a query like modifing the internal table in badi. badi defination name is GLT0_AFTERSPLIT_VAL.
another defination name is ac_document.
can anybody plz tell me how to modify the internal table. is it possible to define internal table with header line.
advance thanx.
Murali Papana.
2006 Sep 01 1:07 PM
>> is it possible to define internal table with header line.
NO.. you have to create a work area & loop at the itab into this work area.. and you can modify the itab contents from this work area..
~Suresh
2006 Sep 01 1:08 PM
Hi,
data it_itab like mara occurs 0 with header line.
use below statement
modify itab.
Regards
amole