‎2008 Oct 09 3:11 PM
Hi Gurus,
I want to modify itab at one step, is it possible..
-
----
A * *
A * *
B * *
C * *
A * *
With just 1 statement I want to write '1' at to right sides of lines which includes 'A'.
I dont want to loop itab.
Is it possible.
Thanks.
‎2008 Oct 09 3:18 PM
If the value 1 goes into a separate field:
wa_itab-field2 = 1.
modify itab from wa_itab transporting field2 where field1 eq 'A'.
‎2008 Oct 09 3:18 PM
If the value 1 goes into a separate field:
wa_itab-field2 = 1.
modify itab from wa_itab transporting field2 where field1 eq 'A'.
‎2008 Oct 09 3:28 PM
‎2008 Oct 09 3:28 PM
> I dont want to loop itab.
I want to take a shower without becoming wet. How to do that?
‎2008 Oct 09 3:30 PM
‎2008 Oct 09 3:31 PM