Application Development 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: 

RFC enabled function module to insert , update and delete data in a ZTABLE

Former Member
0 Kudos
1,160

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

3 REPLIES 3

JozsefSzikszai
Active Contributor
0 Kudos
321

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

prabhu_s2
Active Contributor
0 Kudos
321

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.

Former Member
0 Kudos
321

Answered