问题描述
这里有一个报告:
ProductID Price
LCD1 12
LCD2 11
LCD3 10
TV 100
GAME 50
我希望添加一个新的此报表在OBIEE中的列,结果应如下所示:
I hope to add a new column on this report in OBIEE and the result should be like below:
ProductID Price New_ProductID_Grouped
LCD1 12 LCD
LCD2 11 LCD
LCD3 10 LCD
TV 100 TV
GAME 50 GAME
我希望在 New_ProductID_Grouped
字段中将LCD *产品显示为LCD。
I hope to show LCD* products as LCD in the New_ProductID_Grouped
field.
是否可以在OBIEE中?
Is it possible in OBIEE?
我希望创建该列,然后在以后进行层次结构。
I hope to create the column and then do hierarchy later.
在此先感谢。 / p>
Thanks in advance.
推荐答案
是否要仅为此分析添加此列?通常最好在RPD中定义该列,这将使其可用于所有报告和分析。
Do you want to add this column only for that analysis? It is usually better to define that column in the RPD, this will make it available to all reports and analysis.
如果仅希望该列用于特定分析,则至少两种方法:
If you only want that column for this particular analysis there are at least 2 approaches:
A)如果您可以通过查询来确定值(即您可以通过编程方式找出产品是LCD,TV还是游戏):
CASE ( SUBSTRING("Products"."ProductID" FROM 0 FOR 3) )
WHEN 'LCD' THEN 'LCD Group'
WHEN 'TV' THEN 'TV Group'
ELSE 'Game Group'
END
B)如果必须手动选择类型(即,必须查看productID来确定产品是LCD,电视还是游戏):
希望这会有所帮助
这篇关于我可以在OBIEE分析报告中创建新的“分组依据”列吗?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!