嗨,我在使用sdata时遇到了一点麻烦。我已经能够使用http://localhost:5493/sdata/accounts50/GCRM/-/$schema查看模式。当我尝试查看帐户等时,通过类似下面的localhost:5493/sdata/accounts50/GCRM/-/accounts('ACCOUNTCODE'),我得到一个错误errorResourceKindNotFoundUnable来定位指定的对象'accounts50/GCRM/-/ accounts‘
我已经尝试了基于此资源http://sage.github.io/SData-2.0/的url的几个变体
我是不是错过了一些配置?我已经根据Sage.SData.Service.Config.UI.exe实用程序提供的详细信息创建了url。任何帮助都是非常感谢的。
发布于 2015-10-09 04:19:53
我一直在做一个使用sData的laravel项目,虽然似乎没有关于end的文档,但我已经编辑了一个可以用来从sage帐户收集数据的列表。
sagecrmErp2008feedsbankAccounts,商品,commodityGroups,commodityIdentifiers,computePrice,computePriceSchema,联系人,contactGroups,financialPeriods,交互,位置,operatingCompanies,机会,价格,priceLists,pricingDocumentLine,项目,purchaseOrderDeliveries,purchaseOrderDeliveryLines,purchaseOrders,purchaseOrderLines,收据,salesCredits,salesCreditLines,salesInvoices,salesInvoiceLines,salesOrderDeliveries,,
sage2009feeds
电子邮件、financialAccounts、笔记、phoneNumbers、postalAddresses、
这些应该会帮助你user835440
发布于 2015-07-23 20:56:15
这是我尝试过的方法,应该可以帮助您入门
http://localhost:5493/sdata/accounts50/GCRM/-/tradingAccounts如果想要执行查询,只需将以下内容添加到末尾?select=name&count=3,如果您想使用json,只需添加此&format=json即可,这样完整的字符串将读取为http://localhost:5493/sdata/accounts50/GCRM/-/tradingAccounts?select=name&count=3&format=json希望这会有所帮助
https://stackoverflow.com/questions/30347630
复制相似问题