我们有一个基于SDK示例的测试C#VS2013网络程序。
我们在尝试通过FullyQualifiedName(即Major:Minor)进行查询时遇到问题。
Select * From Item WHERE Name = '" + pItemName + "' MaxResults 1
有效但
Select * From Item WHERE FullyQualifiedName = '" + pItemName + "' MaxResults 1
以ValidationException
失败。
pItemName = 'Test' or 'Major:Minor'
确实如此。
有人可以告诉我如何为FullyQualifiedName编码查询吗?
答案 0 :(得分:0)
根据prod docs,这个字段是可过滤的。 参考 - https://developer.intuit.com/docs/0025_quickbooksapi/0050_data_services/030_entity_services_reference/item
它看起来像是服务中的错误。我告诉开发团队。我会尽快更新这篇文章。
请求强> select * from Item,其中FullyQualifiedName ='Item_1af77Test4'
<强> Respose 强>
<IntuitResponse xmlns="http://schema.intuit.com/finance/v3" time="2013-12-23T23:04:41.421-08:00">
<Fault type="ValidationFault">
<Error code="4001">
<Message>Invalid query</Message>
<Detail>QueryValidationError: Property FullyQualifiedName not found for Entity Item</Detail>
</Error>
</Fault>
</IntuitResponse>
修改强> 截至目前,您无法将此 FullyQualifiedName 用作可过滤属性。确认。
由于