If you are unable to create a new account, please email support@bspsoftware.com

 

News:

MetaManager - Administrative Tools for IBM Cognos
Pricing starting at $2,100
Download Now    Learn More

Main Menu

Dynamic tooltips using dimensional source (SSAS)

Started by LDJB81, 27 Jul 2012 07:31:25 AM

Previous topic - Next topic

LDJB81

Hi

A client has a requirement where if they hover over a calculation measure on a report, a tooltip pops up displaying the numerator and denominator that make up the calculation.

In the report I have:

Measure 1 = tuple(Measure,Dimension1)
Measure 2 = tuple(Measure,Dimension2)
Measure 3 = tuple(Measure,Dimension3)

The calculation in the report is as follows:

tuple(Measure,Dimension1) / tuple(Measure,Dimension2) + tuple(Measure,Dimension3))

I would now like to display the numerator and denominator in a tooltip, any ideas?



pricter

You should use tha SPAN tag in HTML item.

For Example insert before an HTML item as
<SPAN Title= "your mouse over information">
and after another HTML item
</span>

LDJB81

that isn't dynamic though? Thats just code for a normal tooltip.

I need to be able to return the value of the intersections in the cube

pricter

If you play a little with HTML item you can make it dynamically.

For example if you use an HTML item with the following code
<SPAN Title= "

and the place an HTML item which its source would a data item ( you could do that on the properties of the HTML item)

and then HTML item with the following code
">

Then the title would be dynamic

Rahul Ganguli

You have to use JavaScript for doing all these.
Charts are rendered as image map in Cognos, they have hotspots defined.

You have to make use of <Area> tag and traverse through the image map and set the tooltips accordingly.