Hi all,
we are currently moving our RFCs to a custom namespace in SAP.
Until now we just called some RFCs by the function name, e.g. ZABC_MYFUNCTION, like
JcoConPool.getInstance().getRepository().getFunctionTemplate("ZABC_MYFUNCTION").getFunction();
Now these RFCs have been moved to our custom namespace so they look like /ABC/ABC_MYFUNCTION
Is there any way to make this distinction in the Java code? Or do we just call the function ABC_MYFUNCTION?
And if so, how do we call identical named RFCs in different namespaces? That must be possible, right?
Sorry, this is rather a beginner question but we're stuck at this point.
Thanks,
Carsten
Hello Olaf,
have you tried to use JcoConPool.getInstance().getRepository().getFunctionTemplate("/ABC/ABC_MYFUNCTION").getFunction(); ?
Regards
Gregor
Add a comment