收集供应商名单

发布于 2025-01-06 04:08:41 字数 199 浏览 1 评论 0原文

我在 Google 和 Microsoft 上搜索了几个小时,找到了如何通过 eConnectMicrosoft Dynamics Great Plains 9 收集活跃供应商列表的代码示例。

我已经下载了 3 个 SDK、多个代码片段和大量文档,但没有任何效果。

我该怎么做?

I have been searching for hours on Google and Microsoft to find a code example of how to collect a list of active vendors from Microsoft Dynamics Great Plains 9 via eConnect.

I have downloaded 3 SDKs, multiple snippets, and an obscene amount of documents, to no avail.

How would I do this?

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

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

发布评论

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

评论(1

小猫一只 2025-01-13 04:08:41
VendorCriteria x = new VendorCriteria();
x.IsActive = new RestrictionOfNullableOfboolean();
x.IsActive.EqualValue =true ;
VendorSummary []=wsDynamicsGP.GetVendorList(x,context);
VendorCriteria x = new VendorCriteria();
x.IsActive = new RestrictionOfNullableOfboolean();
x.IsActive.EqualValue =true ;
VendorSummary []=wsDynamicsGP.GetVendorList(x,context);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文