从Business Objects中的webI报告中检索查询

时间:2011-04-28 07:05:51

标签: business-objects business-objects-sdk

是否可以使用SDK从业务对象的报表中检索SQL查询。

任何教程或代码都会很有用。

的问候, nithen

1 个答案:

答案 0 :(得分:0)

我假设您知道如何通过Java SDK获取WebI DocumentInstance对象。

DocumentInstance docInst; // get your DocumentInstance object via preferred route
DataProvider dp = docInst.getDataProviders().getItem(0); // retrieve the DataProvider that you would like the SQL for
String sql = dp.getQuery().getSQL(); // the SQL out of the DataProvider

getSQL()已弃用,因此可能会在下一个版本中消失