‎2008 Sep 23 1:45 PM
Hi..,
I want to update one of my custom table with function module.
Can i do this by using changing parameter, where my upload internal table may have multiple entries?
Thanks,
Naveen.I
‎2008 Sep 23 1:47 PM
you need to write code to insert data in FM...
Check what the FM has whether import/export parameters...if so use changing parameters....
if FM has table definition use tables directly...
‎2008 Sep 23 1:59 PM
Hi..,
We need to create structure and table type for that tabel and decalre itab in import parameter as type table type.
Now we can insert multiple entries.
Thanks,
Naveen.I
‎2008 Sep 23 2:01 PM
Hi
you create one structure with your internal table fieldsand put it in tables parameter.Tables parameter can work as import and export .Create another structure with ref to ztable.move the record from tables structure to yor ztable structure by looping.Later you will use this syntax
modify ztable from table zstr.