‎2008 Jul 30 12:49 PM
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
‎2008 Jul 30 12:59 PM
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
‎2008 Jul 30 12:59 PM
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
‎2008 Jul 30 1:01 PM
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...
‎2008 Jul 30 1:23 PM
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.