• What is dbt_artifacts?

    dbt_artifacts is a package for modeling a dbt project and its run metadata. It includes the following models to help you understand the current state of a dbt project and its performance over time. It...

  • Data migration from the Salesforce to snowflake Data warehouse by using Matillion

    Purpose of the Article: This blog explains how to load the data from Salesforce to Snowflake Intended Audience: This article will help our Organizational level kind of developers working on data migra...

  • WiMAX-A Study of Mobility

    1. Introduction The wireless market is growing rapidly; being pushed through wireless connectivity demand various wireless connectivity means are emerging (WLAN/802.11, WMAN/802.16a, WWAN/802.16d) [IE...

  • Weblogic Upgrade

    Patch Name wls1036_upgrade_generic.jar Reference https://www.youtube.com/watch?v=Be6hrYTANQE Just Click Next and Next MAKE SURE ALL OBIEE SERVICES ARE DOWN AND CLOSED IN PROCESS Open CMD prompt C:Mid...

Tags

bics installation OBIEE obiee 11g installation guide Oracle

Categories

Tooltip On Column Headers : OBIEE 11g

Tooltip On Column Headers : OBIEE 11g

In one of our projects we had a requirement of putting tooltip on column header without losing the data format of the column values.

Below are the steps:

  • Open an analysis in OBIEE 11g
  • Go to column format of the column where tooltip is required

Column

  • Put HTML tag in column Heading and check Contains HTML Markup tag
E.g.: <b title="Exposure Calculated in USD">Exposure (In USD)</b>
column1
  • Go to Results tab and check

results

I have exported this report in all formats PDF, CSV, EXCEL and HTML.None of the downloads contains HTML tags in column heading.
Part2:

What is the formula behind a measure? What is the source of the column in the report? These kinds of questions could be handled in multiple ways. The data dictionary feature is one, although a common reaction to the data dictionary feature is that it’s more suited to IT than to the business users. Another way is to present a “tool tip” in Answers (the text of which comes from the Description property of the logical or presentation column in the metadata). However, many users do not have access to Answers or mainly encounter the columns while perusing reports in a dashboard.

A pretty good solution is to create a “tool tip” that appears when a mouse hovers over a column heading in a table, as shown here.

Tips   Picture1

 

 

 

 

To present a tool tip in a column header, create a custom heading for the column using the html span tag, like this:

Tips   Picture2

 

 

 

 

 

 

 

The full text of the column heading in this case is:

<span title=”Three letter abbreviations for the calendar months”>Month Name</span>

The title, enclosed in double quotes, will become the tool tip when a mouseover occurs.

This technique will work with virtually every browser, including IE, Firefox, Opera, Chrome, and Safari. (Which is not to say that Opera, Chrome, and Safari will necessarily be fully compatible with OBIEE). Tool tips will appear in pivot tables as well as in tables:

Tips   Picture3

 

 

 

 

 

 

However, there are a few limitations. One is that you cannot control how long the tool tip appears (as far as I know). It appears for about 5 seconds. So limit the amount of text in the span title.

Tool tips will not appear in charts or column selectors. In charts, the entire tag will appear in an axis title unless you delete it  in the Axis Title control .

describe the image

 

 

 

 

 

 

 

Tips   Picture5

 

 

 

 

Another limitation is that you have to allow “cross-site scripting”. The instanceconfig.xml file must include the following tag:

<HardenXSS>false</HardenXSS>

Place this somewhere between <ServerInstance> and </ServerInstance> and restart the presentation server. OBIEE, by default, prevents cross-site scripting.

Before deciding to set HardenXSS to false, you should be sure that you understand the potential security vulnerabilities that this opens up.

No Comments
Post a Comment

This site uses Akismet to reduce spam. Learn how your comment data is processed.