2008 Apr 04 1:04 PM
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
2008 Apr 04 1:15 PM
2008 Apr 04 1:15 PM
2008 Apr 04 1:30 PM
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.