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

EDITOR-CALL

Former Member
0 Likes
390

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.

2 REPLIES 2
Read only

Former Member
0 Likes
369

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

Read only

Clemenss
Active Contributor
0 Likes
369

Hi Anil,

EDITOR-CALL is the wrong tool. In editable ALV you can control what columns are open for input.

Regards,

Clemens