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

Basic function module in order to update table

Former Member
0 Likes
1,620

Hi,

I have a very basic question. I need to make a fuction module that when accessed will update a z* table with a few inputs parameters..

Can someone give me some sample code and a few explanations about this?

Best Regards

João Fernandes

1 ACCEPTED SOLUTION
Read only

former_member194669
Active Contributor
0 Likes
1,070

Try with fm DB_UPDATE_TABLE

2 REPLIES 2
Read only

former_member194669
Active Contributor
0 Likes
1,071

Try with fm DB_UPDATE_TABLE

Read only

Former Member
0 Likes
1,070

You can also try this.

first you collect all records that has to be updated in an internal table,then create a function module in se37 and pass this internal table to that FM as table parameter.

For function module write following statment.

modify <Standard TABLE_NAME> from table ITAB.

check if it help u.