【发布时间】:2019-06-05 16:10:57
【问题描述】:
我想从 NetSuite 导出“报告”(示例 URL:https://{{accountId}}.app.netsuite.com/app/reporting/reportrunner.nl?cr=127)。
我已经能够使用 SuiteTalk 示例应用程序 (Java) (http://www.netsuite.com/portal/developers/resources/suitetalk-sample-applications.shtml) 导出保存的搜索,但我在 API 中找不到任何可以导出报告的内容。
以下是导出已保存搜索的示例代码。我找不到任何建议他们可以导出报告的类:
TransactionSearchAdvanced advSearch = new
TransactionSearchAdvanced();
advSearch.setSavedSearchId(searchId);
SearchResult searchResult = client.callSearch(advSearch); final
String jobId = client.getLastJobId();
【问题讨论】: