OBIEE 10g Pivot Table Row heading
In OBIEE pivot table by default the row
heading would be empty. when we use measure labels as shown below
We cannot over write the row heading by default settings, to overwrite it use the following javascript.
Add a static / narrative view in the report and add the javascript.
Now the row heading will be avilable in the pivot table,
Change the'Measures' in the above code to
We cannot over write the row heading by default settings, to overwrite it use the following javascript.
Add a static / narrative view in the report and add the javascript.
<script language=javascript>
var arr =
new Array();
function overWriteRH()
{
var
arr=document.getElementsByTagName("td");
for (i=0; i<arr.length; i++)
{
if (arr[i].className=="PTRH")
{
arr[i].innerText="Measures";
arr[i].textContent="Measures";
}
}
}
overWriteRH();
</script>
Now the row heading will be avilable in the pivot table,
Change the'Measures' in the above code to
Hi Satya i want to display colimn heading for group of columns,like this for groups.Could you send step wise process from the begining.
ReplyDeleteThanks ,
Vinay