查询时为空列
Empty columns when querying
当使用 Invantive 查询工具在 Exact Online 上请求 table GLTransactionlines
时,我的查询超时。
当 select 查询单个列时,查询 return 没有数据。具体来说,我想知道我可以从什么 table 请求我的交易行。
我使用了以下查询:
select division_code
, gltransaction_date
, gltransaction_journal_code_attr
, glaccount_code_attr
, amount_value
, glaccount_balancetype_attr
from gltransactionlines
where glaccount_balancetype_attr = 'W';
local export results as "${rptoutpath}\TransactionsPLlsc.xlsx" format xlsx
当我 select *
时,Invantive 查询工具 return 发现 GLTransactionLines
中的列太多。
准确的错误是:
De externe server heeft een fout geretourneerd: (401) Niet gemachtigd.
十分钟后发生。当我让 运行 DebugView 出现时,它告诉我下面的 URL 不 return:
Load Exact Online data using URL 'https://start.exactonline.nl/Docs/XMLDownload.aspx?Topic=gltransactions&Params_details=1&Params_documents=0&_Division_=1362280'
当我尝试导出另一个 Exact Online table 时,它成功了。有时获取 GLTransactionLines 也有效。
似乎 GL 交易行的 XML API 在您的环境中运行缓慢或出现故障。请就此联系您的供应商。作为替代方案,您可能希望切换到使用包含类似数据的 REST API,例如:
select *
from TransactionLines
where financialyear = 2016
and financialperiod = 12
当使用 Invantive 查询工具在 Exact Online 上请求 table GLTransactionlines
时,我的查询超时。
当 select 查询单个列时,查询 return 没有数据。具体来说,我想知道我可以从什么 table 请求我的交易行。
我使用了以下查询:
select division_code
, gltransaction_date
, gltransaction_journal_code_attr
, glaccount_code_attr
, amount_value
, glaccount_balancetype_attr
from gltransactionlines
where glaccount_balancetype_attr = 'W';
local export results as "${rptoutpath}\TransactionsPLlsc.xlsx" format xlsx
当我 select *
时,Invantive 查询工具 return 发现 GLTransactionLines
中的列太多。
准确的错误是:
De externe server heeft een fout geretourneerd: (401) Niet gemachtigd.
十分钟后发生。当我让 运行 DebugView 出现时,它告诉我下面的 URL 不 return:
Load Exact Online data using URL 'https://start.exactonline.nl/Docs/XMLDownload.aspx?Topic=gltransactions&Params_details=1&Params_documents=0&_Division_=1362280'
当我尝试导出另一个 Exact Online table 时,它成功了。有时获取 GLTransactionLines 也有效。
似乎 GL 交易行的 XML API 在您的环境中运行缓慢或出现故障。请就此联系您的供应商。作为替代方案,您可能希望切换到使用包含类似数据的 REST API,例如:
select *
from TransactionLines
where financialyear = 2016
and financialperiod = 12