2007 Dec 15 4:58 PM
Hi Experts!!
Itab has 4 following fields.
Student_name mark1 mark2 Address.
I want edit address column only after executing program.
(not four fields.)
how to do that?
thanks in advance.
Hi Experts!!
Itab has 4 following fields.
Student_name mark1 mark2 Address.
I want edit address column only after executing program.
(not four fields.)
how to do that?
thanks in advance.
2007 Dec 15 5:39 PM
Hi Anil,
use Modify statement within a loop..
SYNTAX:
MODIFY itab [FROM wa] [INDEX idx].
[TRANSPORTING f1 ... fn [WHERE cond]].
Do something like this...
LOOP AT itab INTO wa.
wa-address = 'address1'.
MODIFY itab FROM wa transporting Address.
ENDLOOP.
also go through below threads..
Hope it ll solve ur problem..
<b>Reward Points if it is helpful.</b>
Thanks & Regards
ilesh 24x7
2007 Dec 15 7:22 PM
Hi Anil,
EDITOR-CALL is the wrong tool. In editable ALV you can control what columns are open for input.
Regards,
Clemens