Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

how to modify internal table in badi

Former Member
0 Likes
756

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.

2 REPLIES 2
Read only

suresh_datti
Active Contributor
0 Likes
536

>> 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

Read only

Former Member
0 Likes
536

Hi,

data it_itab like mara occurs 0 with header line.

use below statement

modify itab.

Regards

amole