ERPConnect (Theobald Software): RFC Authorization

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 a folliwing exception: User ... does not have RFC permission for the RFC1 function group

Generally, you need to have RFC1 group authorization?

+3
source share
3 answers

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

0
source

Source: https://habr.com/ru/post/1744324/


All Articles