.NET 与 SAP 的连接
我想学习 SAP 系统与 .NET 的连接。我对SAP软件的了解是0%,甚至我没有任何SAP环境可以尝试。您能建议我如何实际学习它吗?我的意思是是否存在像 SAP Express [只是 Visual Studio Express Edition 的一个想法] 这样的东西,以便我可以创建 BAPI 并查看连接情况。
I wanted to learn SAP system connectivity with .NET. I am 0% in SAP software and even I don't have any SAP environment to give it a try. Can you suggest me how can I learn it practically? I mean is there anything exists like SAP express [Just a thought from Visual Studio Express Edition] so that I can create BAPI and see how connectivity is going.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以从 Microsoft .NET 和 SAP 这本书开始,这样您就可以熟悉SAP、ERP 概念以及互连 .net 和 SAP 的工具。 SAP 有一个可与 .net 配合使用的 API,我过去在 .net 和 SAP 之间执行了一些迁移和 Web 服务,那本书对我很有帮助。您将需要您提到的作为标签的 sap-connector。
为了让您更深入地了解它:SAP 它是一个完整的平台,包括服务器和软件,这就是为什么您需要像这样的东西作为“连接字符串”
SAP ERP 有很多包含工作所需数据的表,所有这些表和列名称都有特定的名称,例如电话的 TELF1 和传真的 TELFX。许多列都本地化为德语,因此日期格式为:DD.MM.YYYY,请小心。
构建它的常见应用程序是一些将数据从 SAP 迁移到应用程序或以其他方式从自定义应用程序迁移到 SAP 的服务,您需要充分了解映射的数据。这两个链接可能非常有用:
作为个人经验,我一直使用 SAP ERP 的现有测试实例,后来才转向生产,所以实际上我从未问过自己 SAP 为测试目的提供的某些软件,但是我深入研究了一下,发现了这个:
SAP 下载部分
在那里你可以找到他们产品的一些试用版。
You can start with the book Microsoft .NET and SAP so you became familiar with SAP, ERP concepts and the tools to interconnect .net and SAP. SAP have an API to work with .net, I performed some migrations and web services between .net and SAP in the past, and that book help me. You'll need that sap-connector that you mention as a tag.
To give you more insight about it: SAP it's a complete platform that include the server and software, thats why you need to have something like this as a "connection string"
The SAP ERP have a lot of tables with the necessary data to work, all of these table and column names have an specific names like TELF1 for telephone and TELFX for fax. And a lot of columns are localized to German so the date format it's: DD.MM.YYYY be careful with that.
A common application to build it's some service that migrate data from sap to an application or the other way from the custom app to SAP, and you will need to know well the mapped data. This two links may be very useful:
As a personal experience, I had always worked with existing test instance of SAP ERP wich where later just move to production, so actually I never asked my self about some software provided by SAP for test purpouses, but I dived a little and find this:
SAP download section
where you can find some trial version of their products.