Replies: 3 comments 3 replies
-
Hi @vwetter, Yes, it's possible to perform RFC, but you would need SAP JCo. Dockerfile:
As I'm not that familiar with the SAP JCo, I guess this Maven Dependency could be also used to package it: https://mvnrepository.com/artifact/com.sap.conn.jco/com.sap.conn.jco After you've packaged the SAP JCo dependency, then you could call the JCo Java classes by FQN: let destination = com.sap.conn.jco.JCoDestinationManager.getDestination("myDestination");
let ft = destination.getRepository().getFunctionTemplate("bapiName");
let myFunction = ft.getFunction();
... Here you could find how to build a custom stack: https://www.dirigible.io/samples/tutorials/customizations/custom-stack/ Also you could reach out to us via Slack: https://slack.dirigible.io Regards, |
Beta Was this translation helpful? Give feedback.
-
You can also check out these tutorials: |
Beta Was this translation helpful? Give feedback.
-
Here you could find how to do it on the SAP BTP Cloud Foundry environment: |
Beta Was this translation helpful? Give feedback.
-
Hi,
is it possible to perform a Remote Function Call (RFC) against an ABAP stack (within the same network) ? If yes, what is required (e.g. SAP JCo, RFC SDK, Cloud SDK) ? I wasn't able to find any information for this.
The Dirigible App should only act as RFC client, not RFC server.
Thanks
Beta Was this translation helpful? Give feedback.
All reactions