SAP ERP 与 C++ 集成
是否有适用于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我不确定 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
基于之前的答案:使用 C++ RFC SDK,您可以调用 SAP 端的 ABAP 函数和对象。因此SAP数据的实际读取或写入将由另一端的ABAP代码完成。
从非常高的层面来看,RFC 有两个选择:
在这两种情况下,您都需要确定需要向您调用的 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:
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.