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

Updating fields from table control

Former Member
0 Likes
525

I have a requirement to display the internal table fields in table control and 2 of these fields are editable.

I have created my code till this part.

Now when the user updates one of the editable field and clicks on update field. I need to update the corresponsing ztable.

Please let me know if you have any suggestions for this

4 REPLIES 4
Read only

Former Member
0 Likes
494

if you used the wizard in creating your table control then it may ask you for a work area and an internal table...data between your table control and internal table are in sync..you can use your internal table to update your ztable

Read only

Former Member
0 Likes
494

just use code at ur table control,

module modify.

module mdoify.

modify db table from table int_table.

endmodule.

this will modify what ever records user modified .

Reward Points if it is helpful

Thanks

seshu

Read only

0 Likes
494

I was able to modify the data from internal table to ztable.

But how can i update the user modified data from screen to ztable??

Read only

0 Likes
494

what is ok_code for save ?

write down the modify command under ok-code.

suppose if enter some data and then will enter,in this case..

case ok_code.

when 'ENT1'. Enter button.

modify table from table int-table

endcase.