4

I want to call a remote SAP function via ERPConnect (Theobald Software):

R3Connection con = new R3Connection("host", 1, "user", "pw", "EN", "700");
con.Open(false);
RFCFunction func = con.CreateFunction("FUNCTION_NAME");

Here I get the following exception:

User ... has no RFC authorization for function group RFC1

Is it generally necessary to have RFC1 group authorization?

Sandra Rossi
  • 11,934
  • 5
  • 22
  • 48
Elmex
  • 3,331
  • 7
  • 40
  • 64

3 Answers3

3

Mybe this will help: http://www.theobald-software.com/wiki/ERPConnect_Authority_Objects

Kottan
  • 4,944
  • 9
  • 41
  • 67
0

The link to the authority objects for ERPConnect moved to the new Knowledgebase of Theobald Software. It can be found here now:

https://my.theobald-software.com/index.php?/Knowledgebase/Article/View/7/67/authority-objects

Best

Ali

alibabi
  • 16
0

Yes. RFC1 and SYST are required to read information about the RFC data structures and the system infrastructure from the target system.

vwegert
  • 18,371
  • 3
  • 37
  • 55