0

我想在 Nmbrs.nl 中运行查询以获取运行的日志信息。

所以我选择了一家公司:

using 111111

然后进行以下查询以获取运行信息:

select *
from   CompanyRunsYear(2017)

这为我提供了 Nmbrs 中的运行列表以及这些运行的 ID。然后我继续运行CompanyRunJournals以获取我需要的信息:

select * from CompanyRunJournals(444444, 888)

我收到以下错误消息:

soap:Sender: Server was unable to read request. ---> There is an error in XML     
document (14, 67). ---> Input string was not in a correct format. ( 
https://api.nmbrs.nl/soap/v2.1/CompanyService.asmx)
The remote server returned an error: (500) Internal Server Error.

将 CompanyID 和 RunID 放在引号中也不起作用。知道我在这里做错了什么吗?

4

1 回答 1

1

确实有效,Nmbrs.Company.CompanyRunJournalsV2它需要 3 个参数,companyid、runid 和 year。例如:

select * from Nmbrs.Company.CompanyRunJournalsV2(111111, 444444, 2017)

请注意,这将返回一个需要进一步解析才能使用的 XML 文件。

于 2018-06-19T15:01:16.180 回答