Horizontal view in Pivot Table

Hi,
I'm new to OBIEE,We have 2 dim columns(i.e..,Vendor Name,month) and 4 measure fact columns (i.e.,Qty, Qty received,Qty Canceled and Amount).
My requirement is based vendor name data should be displayed.
In report i pull the columns and vendor name has been promoted but client required only measure columns in following format.I was try in by using pivot view but unable set this.
How achive this.Please let me know.
Format:
Month---------- -- Jan-Feb-mor- April
Qty--------------------- 10- 12 - 10 - 22
Qty received----------8- 10- 8- 20
Qty Canceled---------2- 2 - 2- -2
Amount--------------100-200-300-500

Hi,
By default there is no feature like that. only way you have to customize java script(work around) method and solve it.
Refer the below link
http://obiee101.blogspot.com/2010/01/obiee-horizontal-pivot-sections-part-2.html
Re: Pivot Table - horizontal layout
Thanks
Deva

Similar Messages

  • Creating View or  Pivot Table

    I have a query:
    SELECT circ.facilityid
    FROM ADMGID.CIRCUITSOURCE_DB CIRC,
    ADMGID.MINIRETICULATED_DB MN
    WHERE CIRC.DISTGRP_FID = MN.DISTGRP_FID
    AND Mn.Facilityid = 'NBRG 0002 0009'
    return me data , ever 4 rows
    BRG 0207
    BRG 0210
    BRG 0208
    BRG 0209
    of course when change Mn.Facilityid change rows
    I want that this rows show me as Columns , or to create a view thar return this columns

    this examples might be of help.
    SQL> select * from pivot_tab;
          COL1 COL2
             1 a
             1 b
             1 c
             2 h
             2 h
    SQL>
    SQL>
    SQL> select p.col1,
      2         substr(max(substr(sys_connect_by_path (p.col2,','),2)),1,60)
      3         as col2
      4    from (select col1,
      5                 col2,
      6                 row_number() over (partition by col1 order by col1, col2) rn
      7            from pivot_tab) p
      8  start with p.rn = 1
      9  connect by p.rn = prior p.rn + 1
    10  and prior p.col1 = p.col1
    11  group by col1;
          COL1 COL2
             1 a,b,c
             2 h,h
    SQL>

  • Replace Null With 0 in Pivot Table in a BI Publisher Report (Not OBIEE Answ

    I have a problem with nulls in a pivot table. I got a measure column in my BI Answers analysis and I made a report with a model based in this analysis. When I add a pivot table to my report the 0 measures don't display.
    In first place I found that there's a bug (13054445). I download and ran the patch, then I tried editing data format in my analysis column and in BI Answers and this worked. The 0 displays correctly, but in the report it's still not displaying.
    I tried editing the formula in the analysis with:
    IFNULL(column,0)
    CASE WHEN column IS NULL THEN 0 ELSE column END
    CASE WHEN column IS NOT NULL THEN column ELSE 0 END
    IFNULL(cast("column"as varchar (10)), '0')
    And nothing works
    When I tried this: CASE WHEN column IS NULL THEN 0 ELSE 656565656 END
    in the report the 6565656565 display correctly but the 0 still doesn't display.
    Does anybody know if that is a bug? Or does another option exist that can I try?

    Hi,
    Following on with this post, I followed the document posted and the formula worked fine. I was able to replace nulls with strikethrough in a pivot table. Since combining the report into a compound layout, the strikethrough has reverted back to nulls. Even when just viewing the pivot table, the same applies.
    I have double checked the column properties and the condition(is null) and formatting(strikethrough) still exists but does not take effect in the pivot table.
    I hav also checked that no data exists in the fact table under the null categories and they are true.
    Can anyone help with this problem, I have also removed the condition and re-applied but still face the same problem.
    Thanks

  • Pivot table Govenor exceeded

    Hi everyone,
    I'm getting the "Governor limit exceeded in cube generation (Maximum data records exceeded.)
    Error Details
    Error Codes: QBVC92JY " error.
    I've got the following entries setup in my instance config file
    <PivotView>
    <MaxCells>800000</MaxCells>
    </PivotView>
    <CubeMaxRecords>800000</CubeMaxRecords>
    <CubeMaxPopulatedCells>800000</CubeMaxPopulatedCells>
    The query I am running is summing up dollars by year and charge type over three years. In the pivot table, the year is the page, the charge type is in the row and the dollar amount is in the measure:
    PAGE= Year (in 2009, 2008, 2007)
    SECTION=<blank>
    Row=Charge Type Measure= Dollars
    When I try to view the pivot table I get the governor error. However, when I pull the query from the session log, run it in SQL Developer and add a "group by year, charge_type having count(*) > 800000" clause to the end of the query, it doesn't return any records. I even grouped by just the charge_type having count(*) > 800000 but I still got no results exceeding the limit I set in the instanceconfig.xml file.
    My understanding was that the governor should not be triggered when each individual bucket does not exceed the limit (800000). Is this not the case? Can someone explain how this governor works?
    Thanks in advance!
    -Joe

    Try this in instanceconfig..
    <PivotView>
    <MaxCells>800000</MaxCells>
    <CubeMaxRecords>800000</CubeMaxRecords>
    <CubeMaxPopulatedCells>800000</CubeMaxPopulatedCells>
    </PivotView>
    Add
    <CubeMaxRecords>800000</CubeMaxRecords>
    <CubeMaxPopulatedCells>800000</CubeMaxPopulatedCells>
    these tags also inside pivot view tags...
    Just give a try..
    Thanks & Regards
    Kishore Guggilla

  • How to hide/suppress empty columns in pivot tables

    In a pivot table, is there any way to do something like "suppress missing data" to make an entire column hidden only if it is empty? I have a situation where I can't hide an entire measure because the measure has values for another dimension, but I would like to hide the column that is empty. See the example below. I would like to hide the combination of Dim1 and Measure 2, and the combination of Dim 2 and Measure 3. I can't hide all columns with Dim1 and/or Dim2, or Measure2 and/or Measure3. Is there any way to hide just the column with the empty combination? Thanks.
    Dim1 Measure1 Always populated
    Dim2 Measure1 Always populated
    Dim1 Measure2 Always null
    Dim2 Measure2 Always populated
    Dim1 Measure3 Always populated
    Dim2 Measure3 Always null

    Bhawna -
    That made a difference, but it still needs some work. The IfNull() function picked up every value in the columns that I wanted to hide and changed them to zero. The conditional formatting that you suggested hid the content in those columns from the HTML. However, there ended up being several issues:
    1) IfNull() picked up other null values that happened to be in the resultset, so the conditional formatting was applied to more than intended. I could correct that by changing the data value in the physical database columns for the entire pivot table columns that I want hidden, but then I have to work around having bogus values in those intersections. Still, that is a possible workaround.
    2) The column headers for the columns that I want to disappear did not go away. When I applied CSS display:none, it shifts the pivot table cells to the left, so a lot of the data ends up under the wrong column headings.
    3) CSS display:none only hides the content from screen readers. When I view the pivot table on the dashboard and print it to a PDF, the data in the columns that I want to disappear are back.
    That still seems like it's a long ways from "suppress missing data" for the entire column. Thanks for your suggestion.
    Daniel

  • Creating a pivot table view with two levels of headers

    Hi,
    I have a requirement in which i need to have a common heading for two or more columns.
    For Example, I have two columns like total number of loans and Total loan amount. As per my requirement, i need to give a common header 'Total loan' as the main header and amount and Count as two subheaders under the main heading in the pivot table.
    In table view, i would be able to make it using the display column and table header property. But, i need to get the same in pivot table as we have to use pivot table view instead of table view.
    Please Help me on this issue.
    Thanks in Advance
    Deepak

    Hello,
    create one column in criteria and change it's fx to case when 1=0 then Products."Prod Name" else 'Tota Loanl' end
    Now go to pivot and drag this column to Columns block of pivot. But keep this column up of Measure Labels and Now, go to column Format values.
    Mention cell horizontal alignment to Center
    see the following screenshot, Header is the column i created with the above functionality.
    !http://i852.photobucket.com/albums/ab83/kishorg86/Header.jpg!

  • No data for Parent-child hierarchy column in Pivot table view

    Hi all,
    I used OBIEE 11.1.1.6.2 Version.
    I drag one Parent-child hierarchy column and one measure and show result with a pivot table view.
    But when I click "+" icon to show detail level data,
    It messaged that: "*the layout of this view combined with the data,selections,drills,or prompt values chosen resulted in no data*."
    But it can show every-level data when I used table view.
    It was so strange..
    Did anybody meet this before?
    Thanks in advance.
    regards,
    Anne

    Hi,
    Yes, I have the same problem with pivot table for hierarchy dimension.
    If you use a normal table (not pivot) it seem to work. Unfortunatley with restrictions as normal table view have.
    Same problem still exist in 11.1.1.6.5
    I have logged a SR to Oracle about this.

  • How to replace null as 0 in  obiee11g pivot table view?

    Hi,
    I am using obiee11g pivot table view,
    I have tried so many views but it's not work. My oracle support team also tired but could not solve it
    1.) used BIN method is that measure columns
    2.) ifnull(column name,0)
    3.) case condition:
    Case when columns is NULL then 0 else column end
    4) data formate override custom formate option
    It seems that the syntax for this custom format is positive-value-mask (semi colon) negative-value-mask (semi colon) null-mask. So this means we have a few options.
    E.g. if you want zeros (0) instead of null then enter:
    #,##0;-#,##0;0
    http://obieeelegant.blogspot.com/2011/06/how-to-replace-null-values-in-obiee.html
    Note:
    I don't want to show strike-rate and custom message in that blank cell. I want to show blank cell(null values) as 0 in the obiee11g pivot table view.
    Obiee10g version is working fine only issues in obiee11g
    Thanks in advance...
    Thanks
    Deva

    I tried this on 11.1.1.6.2 but I can't see good results.
    I choose subject area A-Sample Sales and I choose:
    T02 per Name Month on rows
    P1 Product on columns
    Measure : IFNULL("Simple Calculations"."17 Net Costs", 0)
    Prompted Year 2008
    On product Install and 2008/01 there isn't value...and I put Ifnull in my formula...
    My problem is that I want to do a conditional format when Product = Install. So I have all column with background colour except Null values...so is not pretty...
    If I add custom numeric format I can see 0 but not with background colour...
    I add a picture:
    http://imageshack.us/photo/my-images/600/tablegk.jpg/
    Any help about it??
    Is a bug on obiee??
    Edited by: Alex1 on 04-sep-2012 4:28

  • OBIEE 11.1.1.6 - Pivot table charts to display horizontally

    Hello,
    We have created 1 report it shows the pivot charts as sections vise in horizontal format, for this we have used javascript.
    Recently upgraded to OBIEE 11.1.1.6, now the script is not working and the section vise charts are showing in vertical format.
    Any one have faced the same issue? can you guide me what are the steps to done to show the charts in horizontal format.
    Thank you.

    Hi,
    Drag 'Measure Labels' to the columns space. By default this 'Measure Labels' is in excluded tab of pivot table.
    After dragged the label to column tab then try to move measure column to measure space. It will be moved.
    Hope it helps!
    Regards,
    Pandian

  • How to place the page items horizontal in pivot table in OBIEE

    Hi experts
    In pivot table i have two pages items. And i want to place them horizaontaly. So how can i achieve this.
    for Ex: I have placed my two columns in page section of pivot table: Year,city.
    then i need as ;
    Year City
    where year is one dropdown list and city is another drop down list.
    Thanks in advance
    Regards
    Sunil

    Hi,
    We can seperate the page items using 'Start New Page Drop Down', but the item will be displayed in the next line.
    I think you would like to show them side by side i.e, horizontally..
    If it is, i think it is not possible as of OBIEE 10.1.3.3.. not sure about 10.1.3.4..
    Please let me know if my assumption is wrong.. I will be very happy if anyone corrects me..:)
    -Vency

  • Remove Sort in Pivot Table View

    Hi Folks,
    How to remove sort options from column header on pivot table view?
    Thanks,
    Aj

    Do you want to remove the little arrows on the column header in a pivot view?
    If so the options are available in the analysis Criteria Tab. The problem is you cannot set it for one view, they effect the whole analysis
    In Criteria Tab  -> Analysis Properties just beside Filters and selection steps -> Interactions tab.
    Mark if this helps

  • Problem in pivot table view

    Hello gurus,
    I need a help in pivot table view. In pivot table, I have to show measure in accordance to month. For example show sales as per region by month name.
    Region               Sales                         
              Jan     Feb     Mar     Apr …………..Dec     Avg     Total
    A          10     40     92     92          32     xxx     xxx
    B          73     83     39     78          87     xxx     xxx
    So this is what I have to do. I am able to do this with one measure with created new calculated item. Now I have to create this report using two measures and the in the new measure I have to show only average and total.
    For example
    Region               Sales                              Target
              Jan     Feb     ………Dec     Avg     Total Avg Total
    A          10     40          32     xxx     xxx          xxx          xxx
    B          73     83          87     xxx     xxx          xxx          xxx
    Here sales and target are two different measures. The problem is when I add target column in measures; it will show all the month which I don’t require at all because I need all the month for sales only and for target I just need average and total. I try from head to toe but not getting any thing like this.Can i do this using other view if possible.
    Help me guys. If you need more explanation then please let me know.
    Thanks
    Regards,
    Suhel

    Anybody replies please.....
    Is this possible that we can use Calculated column in other calculation in pivot table. For example, total of one measure divided by total of another measure in pivot table.
    Regards,
    Suhail

  • Calculate a daily average in pivot table view

    I am new to biee 11g and would appreciate any assistance with the following.
    I have a pivot table view which includes a hierarchy column and a single measure, units. The pivot is filtered based on date that is prompted.
    I need to include a column in my pivot table that displays the average unit sales for the period being displayed based on working days. ie total units for the period divided by the number of working days in the period selected. The date dimension contains a flag indicating whether a date is a working day or not.

    Measure Columns can't be hidden like an attribute. How ever you can use custom style sheet for Value and Header Properties to not show the measure.
    for the "Custom CSS Style Options (HTML Only)" under measure properties of the column set "Use Custom CSS Style" value to 'display:none'.
    Let me know if this worked.
    Regards,
    Jay

  • How to re-arrange the columns present in pivot table view in obiee 10?

    Can you please tell me How to re-arrange the columns present in pivot table view in obiee 10?

    I have columns as 1,2,3,4,6,7, in pivot table view.
    I have calculated item (column 5 as summation of 1,2,3,4) and caluclated itme (column 9 as summation of 6,7)...now if i arrange ascending then calculated columns 5,9 don't get affected.
    I need the order as 1,2,3,4,5,6,7,9

  • Need to eliminate Space between two Pivot table view  in OBIEE 11g

    Hi,
    I have a requirement to eliminate space between two pivot table views. In a single report I have two Pivot table with two different column, I placed both of them one after another, but I need to eliminate the space between two pivot table views as if it should show as a single pivot table in OBIEE 11g.
    Could anyone please let me know how I can do this in OBIEE 11g?
    Thanks in Advance
    Anirban Mitra

    If I create narrative view it will be another view. And if I put that in between that two pivot view, it will show the space. I need to remove space between two pivot table within a single report so that it can appear as a single pivot view.
    Thanks

Maybe you are looking for

  • My old computer no longer works.  I want to transfer my music from my Ipod to itunes on my laptop, but now mix it with my wife's music.  How do I do that?

    My old Gateway is dead.  I have saved my 20 gigs of ipod music on an external hard drive.  On our Dell laptop, my wife has itunes music installed.  I want to add my music and use itunes to add more,etc., but I want to keep it separate from her music.

  • SQL Reporting Services with Visual Studio 2012

    Hi I would like to know if there will be any release to improve on the placeholder feature in SQL reporting services. Currently, I have users who uses HTML editor to input data and tables. However, the table in html format cannot be read. I do unders

  • How to use java class in pl/sql

    Hai Guys, here is my java class: import java.io.*; public class ListFiles public static void main (String[] args) File file=new File("C:\\"); File[] files=file.listFiles(); for(int fileInList=0; fileInList<files.length; fileInList++ )      System.out

  • Question about Manager Self Service .

    Dear All, I am on PeopleSoft 9.0 environ and trying to facilitate a reporting change transaction through the MSS. I have a few queries on the same : 1.) Is there any level of validation provided in PS 9.0 ( without customization) based on grades/leve

  • Problem during runtime....

    hi.. can someone help me with a simple program i am creating... Its a program for getting 6 lucky random numbers... everytime i try and run the program, it is able to run, but when i click the button to start to get the random numbers, a problem come