‎2008 Mar 11 7:33 AM
friends..
Is there any standatd RFC enabled function module to insert , update and delete data in a custom database-table (Ztable)?
if not how can we create it? plz give me the details steps..
what are the import, export parameters and how to code and process it.. (for example: suppose fields in the table is Emp_Id, Name, Address. I need to develop a RFM which does the 3 tasks, insert update delete in the same RFM)
Thanks and Regards
‎2008 Mar 11 7:48 AM
hi Sivaji,
FM VIEW_MAINTENANCE_CALL does everything you want (insert, delete, update any table) except it is not RFC. I think you have to create your own Z... FM, which is RFC type and call the above standard FM.
hope this helps
ec
‎2008 Mar 11 7:48 AM
create a f.n mod in se37 and make it rfc enabled. ur import parameters are Emp_Id, Name, Address and TASK and u can have an export parameter like result which gives the status of the update. based on task u can insert using keyword INSERT....and update using UPDATE or MODIFY and delete using DELETE. these keyword are not compelte with syntax but need to refer the SAP documentation.
‎2010 Nov 11 6:26 AM