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

regarding rfc function module

Former Member
0 Likes
406

hi

i need to create a rfc function module where i need to declare a table structure.when ever the user calls the function module he passes the data into table and from there my program will get executed which is a bdc.

can u explain the procedure for how i should create a table structure and the procedure how he uploads data into table.

thanks in advance.

2 REPLIES 2
Read only

abdul_hakim
Active Contributor
0 Likes
344

hi,

you can create rfc function module in se37.while creating choose the option Remote Function Module.

You should create the table structure in ABAP Dictionary.

You have no other option...

After creating the rfc function module and the necessary structures in ABAP Dictionary you could call your rfc function module from other system.(external systems).

Note:If you are looking to get the data for BDC i would advice you to extract the data from your external system in to your Application Server/Frontend and then upload it into your SAP System.This is the best approach rather than creating a rfc function module.rfc function modules are mainly intended for calling the SAP Functions from the external system.

Cheers,

Abdul Hakim

Mark all useful answers..

Read only

Former Member
0 Likes
344

1)Create a z structure in se11, with the structure you want.

2) Declare the tables parameter in the TABLES tab strip in se37, referring to the z structure created.

Regards,

Ravi