问题标签 [sdata]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
c# - Sage50 SData POST 到 tradingaccountCustomerfeed
我对 Sage SDATA 很陌生;到目前为止,我可以使用 c# 读取/写入各种提要。我正在尝试将电话号码添加到 tradingaccountCustomerfeed 但失败。我可以轻松地将电子邮件、姓名、地址字段等写入此提要。我不确定我错过了什么,有人可以帮忙吗?示例代码可能非常有用。
c# - 如何使用 DotNetSDataClient 在 Saleslogix Infor CRM 中创建新联系人
我正在尝试使用DotNetSDataClient 库在 Infor CRM 中添加新联系人。我已尝试在“创建”部分下遵循此文档。当我运行示例代码时,我收到错误“需要联系人的帐户”。这是有道理的,因为我相信数据库中的每个联系人都必须与一个帐户相关联。我修改了代码以指定现有帐户,但现在我收到错误“我们很抱歉,您遇到了错误。如果适用,请重试。” 带有内部异常,“删除服务器返回错误:(500) 内部服务器错误。”
这是我的代码。
有人对我做错了什么有任何想法吗?
accounting - sData 中的 AccountKey
我自己和其他两个人正在尝试使用 sData 与 Sage Accounting 进行通信,但也许有人使用过 sData。
我正在尝试将 sData 发布到我们的 Sage 服务器并创建将显示在银行对帐中的存款交易。我尝试了很多不同的变体,但这就是我当前发布到服务器的 sData 的样子。
我已经尝试过发布比这更多和更少的信息。我尝试逐行添加它,但当我使用有效的 Sage 帐户密钥添加 AccountKey 时,我总是收到错误消息。如果我使用无效的帐户密钥,则错误消息表明帐户无效,这就是帐户密钥有效时服务器返回的内容。
我在其他论坛上看到过帖子,但答案是“没有人使用 sData”。虽然这可能是真的,但它并不能真正解决我的问题。我暂时被 sData 困住了。有没有人以前见过这种错误并且对如何修复它有任何建议?
ruby - sage 100 ERP 的 sData REST API
我有一个商业伙伴帐户。而且,我在窗口服务器机器上设置了 sage SData 和 Sage ERP 100。我可以在浏览器中访问一些资源,例如:
它返回一个巨大的 XML 文件。我的问题是,我需要将 Sage ERP 与我的 Rails 应用程序集成。哪个将从 Sage ERP 获取产品并从 rails 应用程序为这些产品下订单?
因此,我需要一个完整的示例 API 请求,它在请求中接受一些参数(如页面、每页、请求类型 GET 或 POST)并返回可解析的 XML/JSON 响应。
在这方面的任何帮助将不胜感激。
json - Sage 50 SData XML to JSON POST Request
My end goal is to push orders from a csv into Sage 50 using SData and Python Requests.
I found a sippet of XML body schema (see below) to construct and push a sales order into Sage 50 using SData. I have successfully been able to push a sales order using this snippet through using Python requests POST
.
I have read in the Documentation also this link that you can interact with SData using JSON which would be much more preferable within Python by adding ?format=json
to the end of the URL. I have been able to use GET
requests and make it return a JSON response, however, I am unsure how to change the body of my POST
sales order request from XML to JSON.
I have made the GET
request http://xxxxxx/sdata/accounts50/GCRM/{xxxxxx}/salesOrders?include=SalesOrderLines&format=json
This returned a structure in JSON for a sales order with the order lines included so I tried to use this to create my JSON POST
request however it seems to error out every time I make the request.
Any advice would be great!
Working XML body of request:
#xA;Failed attempted at converting to JSON:
#xA;