问题描述
基于此视频 https:///www.youtube.com/watch?v=c1ynn2CH0Pc&list=LL&index=1&t=3s我正在寻找 rest api 以便创建/修改/读取 SAP B1 事件,但是似乎没有文档可用于我的问题.
Based on this video https://www.youtube.com/watch?v=c1ynn2CH0Pc&list=LL&index=1&t=3sI'm looking for a rest api in order to create/modifiy/read incident with SAP B1, however no documentation seems to be available for my issue.
我找到了以下节点模块 https://www.npmjs.com/package/node-sapb1 但不清楚是否适合我的目的.
I've found the following node module https://www.npmjs.com/package/node-sapb1 but it's not clear if is fit for my purpose.
有什么想法吗?
推荐答案
SAP Business One 的 REST API 是服务层".最新文档:https://help.sap.com/doc/6ab840ef2e8140f3af9eeb7d8fef9f06/10.0/en-US/Working_with_SAP_Business_One_Service_Layer.pdf
The REST API for SAP Business One is "Service Layer". Latest documentation: https://help.sap.com/doc/6ab840ef2e8140f3af9eeb7d8fef9f06/10.0/en-US/Working_with_SAP_Business_One_Service_Layer.pdf
我不确定您所说的事件"是什么意思;- 你是说服务电话还是活动?如果是这样,服务层会公开这两个对象.您还可以对用户表/对象执行 CRUD 操作.
I am not sure what you mean by "incident" - do you mean Service Calls or Activities? If so, Service Layer exposes both of these objects. You can also perform CRUD operations on user tables/objects.
你找到的 Node 模块是 Service Layer 的封装,我没用过.如果您愿意,您可以直接使用 http 客户端访问 SL.
The Node module you found is a wrapper for Service Layer, I haven't used it. You can just access SL directly with a http client if you wish.
这篇关于SAP Business One - >嵌入式事件的 Rest API的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!