SAP ERP 与 C++ 集成

发布于 2024-09-17 19:32:31 字数 59 浏览 1 评论 0原文

是否有适用于 SAP ERP 4.0 的 C++ 或 .NET SDK,因为我需要在其中读取和写入数据?

Is there a SDK for C++ or .NET available for SAP ERP 4.0 as I need to read and write data into it?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

人间不值得 2024-09-24 19:32:31

我不确定 SAP ERP 4.0 指的是哪个版本,但肯定有您可以使用的 RFC SDK(可以与 C++ 和 .Net 一起使用):

非常旧的版本:
http://help.sap.com/saphelp_40b/helpdata/ pt/8c/20e2bf493311d1894a0000e829fbbd/frameset.htm

最近版本:
http://help.sap.com/erp2005_ehp_04/helpdata/ EN/22/04287a488911d189490000e829fbbd/frameset.htm

I am not sure what version SAP ERP 4.0 refers to, but there is certainly the RFC SDK that you can use (can be made to work with C++ and .Net):

Very old version:
http://help.sap.com/saphelp_40b/helpdata/pt/8c/20e2bf493311d1894a0000e829fbbd/frameset.htm

Recent version:
http://help.sap.com/erp2005_ehp_04/helpdata/EN/22/04287a488911d189490000e829fbbd/frameset.htm

坏尐絯 2024-09-24 19:32:31

基于之前的答案:使用 C++ RFC SDK,您可以调用 SAP 端的 ABAP 函数和对象。因此SAP数据的实际读取或写入将由另一端的ABAP代码完成。

从非常高的层面来看,RFC 有两个选择:

  • 找到一个可以完成您想要的功能的工厂 SAP 功能。即编写或读取 SAP 数据
  • 或编写您自己的自定义 ABAP 脚本来完全满足您的需求。

在这两种情况下,您都需要确定需要向您调用的 ABAP 传递和接收哪些参数,并确保您的 RFC 调用能够做到这一点。

Building on the previous answer: with the C++ RFC SDK you can call ABAP functions and objects on the SAP side. So the actual reading or writing of the SAP data will be done by ABAP code on the other side.

Looking at this from the very high level you have two options with RFC:

  • find a factory SAP function that does what you want. i.e. write or read the SAP data
  • or write your own custom ABAP script that does exactly you wanted

In both cases you need to nail down what parameters you need to pass and receive to the ABAP you call, and make sure your RFC calls does that.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文