1

我需要从外部(外部)将一些数据字段(例如:客户电话等)插入到已经开发/工作(安装)的 ERP 发票应用程序中。当我打开 ERP 应用程序时,这些字段应自动出现在表单中特定订单的应用程序中。目前,外部数据正在手动输入到 ERP 应用程序中。我需要使用其他应用程序(如 C# Windows 应用程序)从不同的地方集成到 ERP 应用程序。我们可以访问ERP数据库。如何在外部使用 C#/windows 应用程序来解决这个问题。

4

2 回答 2

1

I am not sure what approach you used for Integration, but as it seems from your question that you have enough knowledge about their database structure and flow of data you can directly write to the tables to reflect the updated information in that ERP.

But this is not a recommended approach to integrate with any ERP, by directly interacting to their database tables, even if you have access to them and you very well understand the data flow. Integration to any ERP should only be done through API's provided by that ERP, or through some connectors available in market which are recommended by the ERP vendor.

于 2015-03-28T11:31:31.860 回答
0

您应该寻找您的 ERP 应用程序提供的 API 或接口来集成外部应用程序和/或模块,否则,如果您对该 ERP 的工作原理和底层数据库结构有足够的了解,那么您就可以直接与数据交互......

于 2011-08-15T04:32:51.380 回答