使用 C#/Windows 应用程序集成 ERP

发布于 2024-11-29 08:09:06 字数 226 浏览 0 评论 0原文

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

I need to insert some fields of data (example: Customer Phone etc) from outside(Externally) into the already developed/working (Installed) ERP Invoicing application. When I open the ERP application those fields should automatically appear in the application for the particular order in the form. Currently the the external data is entering manually into the ERP application. I need to integrate from the different place to ERP Application using some another application, like C# Windows Application. We can access ERP database. How can I approach this for the solution to the problem using C#/windows application externally.

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

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

发布评论

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

评论(2

用心笑 2024-12-06 08:09:06

我不确定您使用什么方法进行集成,但从您的问题来看,您对他们的数据库结构和数据流有足够的了解,您可以直接写入表格以反映该 ERP 中的更新信息。

但这并不是推荐的与任何 ERP 集成的方法,即直接与数据库表交互,即使您可以访问它们并且非常了解数据流。与任何 ERP 的集成只能通过该 ERP 提供的 API 或通过 ERP 供应商推荐的市场上可用的一些连接器来完成。

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.

俯瞰星空 2024-12-06 08:09:06

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

You should look for an API or interface your ERP application provides to integrate external applications and/or modules, otherwise, if you have enough knowledge of how this ERP works and underlying database structure, than you can directly interact with the data...

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