SAP ERP integration with C++

隐身守侯 提交于 2020-05-28 09:56:46

问题


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


回答1:


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




回答2:


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.



来源:https://stackoverflow.com/questions/3656361/sap-erp-integration-with-c

标签
易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!