Categories
- All Categories
- 15 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 212 Oracle Analytics News
- 42 Oracle Analytics Videos
- 15.7K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 78 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
OBIEE 12c - Change tooltip on column prompt values

Hi,
For a specific column prompt I would like to show the contents of another column in the tooltip (on mouse hover over) for the values of the drop down list.
As an example I've a column prompt on countries. When the user clicks the prompt and the country list is displayed once they hover over any of the values with mouse the tooltip should show the corresponding currency code of that country instead of the country name.
I been able to change the tooltip contents for a column in an analysis report using html since I guess the column formula supports HTML markup, however the same html does not work in the column prompt (Prompt For Column) formula since there is no 'Contains HTML markup' check box. Anyone know how I can force the HTML to take effect in the column prompt or is there an alternative way of doing it?
Regards
Adrian
Answers
-
Unfortunately there is not such an option for prompts out of the box.
Few ideas:
- Concatenate country and Currency (in your example) and use that as prompt: be aware that this solution has an impact on the SQL pushed down to database
- Create an analysis and with a narrative view simulate a prompt (PortalPageNav or GoURL can help you), a narrative will allow you to customise the layout in HTML
- Leave the prompt as default and add a table next to it with Country->Currency conversion.
The 1st and 2nd option are kind of an hack. the 3rd one uses the default features of OBIEE but doesn't provide you exactly what needed.
0