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 use modify command?

Former Member
0 Likes
550

i want to modify table t_bseg which is used n BTE interface_00001050

i want to modify only 1 specific line, how can i modify this line without using index because i get 0 when i use sy-tabix?

( i want to modify this line using the table keys ) .

thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
505

Hi,

MODIFY TABLE <itab> FROM <wa> [TRANSPORTING <f1> <f 2> ...].

Check this link:

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3ac8358411d1829f0000e829fbfe/content.htm

Regards

Adil

3 REPLIES 3
Read only

Former Member
0 Likes
506

Hi,

MODIFY TABLE <itab> FROM <wa> [TRANSPORTING <f1> <f 2> ...].

Check this link:

http://help.sap.com/saphelp_nw04/helpdata/en/fc/eb3ac8358411d1829f0000e829fbfe/content.htm

Regards

Adil

Read only

former_member195383
Active Contributor
0 Likes
505

MODIFY itab from wa_itab.

here first u fill wa_itab by the values as u want, wa_itab is of the same type as that of ur table...

Then use the abv command...

Read only

Former Member
0 Likes
505

MODIFY itab FROM wa TRANSPORTING comp1 comp2.

chk the link:

http://help.sap.com/saphelp_nw70/helpdata/en/fc/eb35eb358411d1829f0000e829fbfe/content.htm

with luck,

Pritam.