0

如何从 BRIO 报告中提取基于报告的计算?例如多个请求

在此处输入图像描述

是否有可用的公共 API 来执行此任务?

输入代码以在查询完成处理后从“结果”部分中删除要隐藏的字段。例如:

// Eliminate fields from the drill path
ActiveDocument.Sections["Results"].Columns["State"].Remove()
ActiveDocument.Sections["Results"].Columns["Date Ordered"].Remove()
5) Now select the OnPreProcess event and enter code to put the fields back into the Results
section just before processing the query. That way, any dependent computed items will be
properly refreshed. The corresponding code for the current example would be:
// Add the "hidden" fields so computed items can be recalced
ActiveDocument.Sections["Results"].Columns.Add("Date Ordered")
ActiveDocument.Sections["Results"].Columns.Add("State")

获得了可以添加/删除计算项但无法检索计算项的现有列公式的 API,是否有任何 API 甚至可以检索列公式

4

1 回答 1

0

如果您正在尝试获取代码if(Count ( Account_Id, Account_Id)>1) {'Multiple Requests'},则可以使用 EIS(仪表板)代码ModifyComputed()将其视为字符串:https ://docs.oracle.com/cd/E17236_01/epm.1112/ir_user/ModifyComputed_meth.html

如果您不知道原始代码是什么,我认为您无法提取它。

于 2018-07-03T19:29:58.793 回答