cancel
Showing results for 
Search instead for 
Did you mean: 

Standard Component in CRM that will call RFC Function Module

venkata_bharath
Participant
0 Kudos

HI all,

Is there any Standard Component in CRM that will call RFC Function Module from ECC and that called RFC FM should Fetch the data from ECC.

Accepted Solutions (1)

Accepted Solutions (1)

robert_kunstelj
Active Contributor
0 Kudos

You can call RFC from different places, like programs, function modules, web dynpros, classes...

So you just have to have appropriate RFC on ERP side and call it from CRM side. To call it you use the following statement...

CALL FUNCTION 'YOUR RFC FUNCTION'

DESTINATION i_dest "name of server

EXPORTING

your export parameters

IMPORTING

your import parameters

Regards.

Answers (1)

Answers (1)

Former Member
0 Kudos

No is the direct answer.

You will need to make do explicitly as stated

thanks.