columns to display in a column dimension

Is there a way to show like 'Product Type' and 'Product' in a column in a report? (displayed as dimension)
where 'Type of product' and 'Product' are of different levels

Example: The first column in the report should look like this:

Product type 1
Product 01
Product 02
Product 03
Product type 2
Product 04
Product 05
Product 06

Thank you
Janne

Hello

one way is like going to union

Another way is: adding type, columns of product in the list of selection criteria... go to rotate

I guess the product type is first then product will come next...

Now apply subtotal on producttype > before that date hide this column of type of product...
And, to get the same values as the type of product he... instead of "Type of product Total 0 '...

The sigma button, click on "Format of labels", keep it in the caption field...

Published by: Kishore Guggilla on July 29, 2010 13:18

Tags: Business Intelligence

Similar Questions

  • The hidden column dimensions are break Internet Explorer on the client

    Hello
    We have an implementation on a customer system 11. We had to hide some dimensions of the column in some of web forms. Every time that the clients connect and try to open these types of forms where there is the hidden column dimensions, process internet explore in the customer hits the use of 50% and never to open the form. More interesting still, process continues to run even if we stop planning and essbase servers. I tried the same on the two planning 11.1.1.1 and 11.1.1.2 and unfortunately the results are the same. I would be very surprised if I'm the only one facing this problem. Otherwise I have to miss a few essential adjustments to bring.

    Thanks in advance & Best looks,
    Alp

    I just got an additional update for the SR, I logged with Oracle. looks like a bug, here's what the analyst:

    "Thank you for your update... On further research on your case, I replicated the issue at my end as well and found the same problem...

    When I found this question in order to be logged as a BUG and our development team worked on this...

    I enclose this SR this BUG... »

    Will update with something else I hear...

    Out DQ

  • Rearranging 'Period' in the column dimension

    Hello

    In most of my data forms, I have the period in the column. My time dimension hierarchy is

    YearTotal-> HalfYear1->->-> Wk1 Jul Quarter1. Its custom with 52 weeks period character.

    The user wants neighborhoods to display in the data forms after every month. As
    July, August, September... Apr, may, June, Q1, Q2, Q3, Q4, YearTotal.

    I use "Descendants (Q1), Descendants (Q2), Descendants (Q3), Descendants (Q4), Q1, Q2, Q3, Q4, YearTotal" in the size of the column. But still it does not display the form that the user wants. It shows me as
    1st quarter (+), T2 (+), (+) T3, T4 (+), YearTotal.

    How can I design the data form so that the form is displayed as the user wants?

    Kind regards
    Brig.

    Hello
    Have you tried adding a second column to your form and put the quarters for the second column?
    Who could do.

    See you soon,.
    Alp

  • Need help: column dimension a assoc with more than 1 level

    Hello

    I try to have several paths of forest for a single dimension. For example, the Date dimension should be navigable by the following hierarchies:

    DateDimension
    + - Calendar year
    ... - Calendar quarter
    ... - Calendar month
    ..................-- Day
    + - Calendar year
    ... - Day

    So, in other words, in the answers, I should be able to add 'Calendar year' to my report, view the results and then click down the calendar year-> Calendar Quarter trail-> month-> day OR calendar-> day.

    However, when I have this model in the administration tool, it allows him, but then I add the column in the answers and get a runtime error:
    + [nQSError: 14064] dimension [column name] column has associations with more than one level.

    This is possible to BO and other tools. If it is not possible in Oracle BI EE, then another alternative would be to have two separate versions of the "calendar year" added to the report in the responses, each with their own drill path.

    Any ideas?

    Thanks for any help you can provide.


    Matt Warden
    Balanced Insight, Inc.

    Hello

    I don't if it good or bad, but simply give a shot home

    In RPD create year--> quarter---> month--> day then right click on the year and select shared as child level and select level day in. Double click on the level of the year and in the path of favorite drilling choose quarter and the day in it.
    Results:
    In the report when I click on the year he takes me to the day and then again by clicking on the year I give quarter, month.

    Hope this helps and let me know if it does not work.

    Thank you.

  • Display the data in dimension without a recording made

    To explain my requirement, lets say I have 3 tables
    City (Dimension presents all the information of city)
    Day (Date Dimension with all dates in recent years (past and future))
    Sales (fact table showing all measures of sales, multiple records for a day and city)

    An example query to retrieve the data I need
    Select the amount of city.name, day.name, SUM (sales.amount)
    day, city, sales
    where city.code = sales.city_code
    and day.date_value = sales.transaction_date
    City.name group, day.name

    Now if there is no transaction of sales for a particular day and the city, still I want to show day and the city with amount 0

    The solution that I can think of is a Cartesian of the city and day tables use it as a point of view online and then perform a join with the sales table.

    Is there a better way to do this, using a simple query logic or any advanced functionality?

    All entries on the above would be a great help.

    Thank you
    Murielle

    Published by: user12033529 on Sep 12, 2010 06:57

    Hi, Murielle,.

    Welcome to the forum!

    Whenever you have a proiblem, please post your version of Oracle (e.g. 10.2.0.3.0); Some examples of data in a form people can re-create the problem (for example

    CREATE TABLE     city
    (     city_id          NUMBER (6)     PRIMARY KEY
    ,     city_name     VARCHAR2 (20)     NOT NULL
    );
    
    INSERT INTO CITY (city_id, city_name) VALUES (1, 'Asheville');
    INSERT INTO CITY (city_id, city_name) VALUES (2, 'Bryson City');
    INSERT INTO CITY (city_id, city_name) VALUES (3, 'Cherokee');
    
    CREATE TABLE     day
    (     dt     DATE     PRIMARY KEY
    );
    
    INSERT INTO day (dt)
    SELECT      DATE '2010-09-10' + LEVEL
    FROM     dual
    CONNECT BY     LEVEL     <= 3;
    
    CREATE TABLE     sales
    (     sales_id     NUMBER (6)     PRIMARY KEY
    ,     city_id          NUMBER (6)
    ,     sales_dt     DATE
    ,     amount          NUMBER (9)
    );
    
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (11, 1, DATE '2010-09-01',  10);
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (12, 1, DATE '2010-09-11',  20);
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (13, 1, DATE '2010-09-12',  40);
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (14, 1, DATE '2010-09-12',  80);
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (15, 2, DATE '2010-09-11', 160);
    INSERT INTO sales (sales_id, city_id, sales_dt, amount) VALUES (16, 2, DATE '2010-09-11', 320);
    COMMIT;
    

    ) and the expected results of these data (for example

    CITY_NAME            DT          TOTAL_AMOUNT
    -------------------- ----------- ------------
    Asheville            11-Sep-2010           20
    Asheville            12-Sep-2010          120
    Asheville            13-Sep-2010            0
    Bryson City          11-Sep-2010          480
    Bryson City          12-Sep-2010            0
    Bryson City          13-Sep-2010            0
    Cherokee             11-Sep-2010            0
    Cherokee             12-Sep-2010            0
    Cherokee             13-Sep-2010            0
    

    ).

    user12033529 wrote:
    ... The solution that I can think of is a Cartesian of the city and day tables use it as a point of view online and then perform a join with the sales table.

    Is there a better way to do this, using a simple query logic or any advanced functionality?

    For this particular problem, I think it is the best way.
    There is another way: SELECT... PARTITION OF feature (also known as query interior partitions ).
    For example:

    WITH     all_cities     AS
    (
         SELECT     c.city_name
         ,     s.sales_dt
         ,     s.amount
         FROM               sales     s     PARTITION BY (city_id)
         RIGHT OUTER JOIN     city     c     ON     s.city_id     = c.city_id
    )
    SELECT     a.city_name
    ,     d.dt
    ,     NVL ( SUM (a.amount)
             , 0
             )          AS total_amount
    FROM               all_cities     a     PARTITION BY (city_name, sales_dt)
    RIGHT OUTER JOIN     day          d     ON     a.sales_dt     = d.dt
    GROUP BY     a.city_name
    ,          d.dt
    ORDER BY     a.city_name
    ,          d.dt
    ;
    

    It seems that you should be able to do this without a subquery, but I don't know how.

    Partitioning of the application is really useful when you want to include only a few dimensions that are actually present in the fact table. For example, if you want to show only the cities that actually took sale (in other words, in this example, if you do not want to include Cherokee), but you don't want that all the dates in the table of the day for each city.

    Partitioning of the query was new in Oracle 10. If you have an older version, I think that a cross join, as you initially suggested, is the only reasonable way.

    Published by: Frank Kulash, Sep 12, 2010 13:14

  • sum of a column of the dimension

    Hello
    If my requirement of report said we get SUM (Treasury of column) of the dimension table then can we do it? I have undersatnd that function must be used for measures in fact table. What are we doing to reach the sum of the columns in the dimension table? The report tries to compare the sum (column done) sum (dimension columns). Earlier when I used the sum on the column dimension function he gave no precise results. Please advice.

    Unfortunately, I could not explain this matter in a simple unique way, without seeing exactly the report and generated queries

    In the simple table, OBIEE is supposed to do something like this (I assume you put the attribute of the year, money and a measure of 'real')

    "+ select +".
    + Year +.
    + Sum (cash) +.
    + Sum (fact measure) +.

    + Of +.
    + time_dim_table, +.
    + cash_dim_table, +.
    + fact_table +.

    + where (joins).
    + Group by year +.
    "

    You can check if the physical demand looks like this, in order to understand the results.

    In the PivotTable, it's totally different.
    Your physical demand will be no aggregation: so what will:

    "+ select +".
    + Year +.
    + Cash +.
    + Sum (fact measure) +.

    + Of +.
    + time_dim_table, +.
    + cash_dim_table, +.
    + fact_table +.

    + where (joins).
    + Group by year, money +.
    "

    But, OBIEE then apply logic calculatiosn to display goods results in the PivotTable.
    Who can explain the different results.

    But don't forget that told you right: avoid the aggregation on the dimension attributes. You can sometimes has good results (ex: using the pivot, or other), but it's not really the best way to make your reports. If you often need a "sum (cash"), create a new table of logic made with the 'picture of cash' (even if it is also a dimension table).

  • Displays dimension after measures for Pivot

    Hello

    I have a requirement to display some of the dimension columns after the columns in pivot mode. How do I get there?

    Any suggestion would be considered useful.

    Thanks in advance

    Concerning

    Remy

    If it is a text field, you must create a formula such as:

    Max(Table.Column by the others columns in the pivot without the excluded columns)
    

    Then you just drag and drop this column measures

    If you have excluded columns, you must set a max aggregate on this column in the pivot.

    And this response must be considered useful. It's free. ;-)

    See you soon
    Nico

  • How to adjust column widths individual classic SQL report

    Hello

    I use Oracle APEX v4.2 with IE8 browser and basically tries to adjust widths of individual columns in my classic SQL report. Basically, I have three columns I want to spacing, so that the width of the entire region for the report is used, but am not sure how to proceed.

    I drilled in individual columns and specified the column widths as the element, but in vain.

    Would appreciate help on how to do this for each column and hope that I do not need to change the model of report (if possible).

    Thank you.

    Tony.

    Tony F. says:

    I use Oracle APEX v4.2 with IE8 browser and basically tries to adjust widths of individual columns in my classic SQL report. Basically, I have three columns I want to spacing, so that the width of the entire region for the report is used, but am not sure how to proceed.

    There is an element of uncertainty in what we suggest as well, because you have not specified the theme and the report of model that is used. This information is required for any question of formatting or the visual layout.

    I drilled in individual columns and specified the column widths as the element, but in vain.

    Report in some themes templates may be missing in the #COLUMN_WIDTH substitution string # required for use of the declarative column widths, as shown here: Re: width of column in reports

    I don't know why it would be missing from a theme of so-called "modern" (perhaps the lack of documentation affects even the Oracle theme designers), but you can add it to the models listed in this thread.

    Width of the element applies only to controls on a form in a table.

    Would appreciate help on how to do this for each column and hope that I do not need to change the model of report (if possible).

    This can be done using selectors CSS attribute (for the themes of quirks mode non-traditional, because you are using a legacy version of IE). Add a style sheet in CSS Inline property page:

    #ALIAS,
    td[headers="ALIAS"] {
    width: 40%;
    }
    

    where the ALIAS value in the attribute selector matches the required column alias, and the width property specifies the column dimension required and the units.

    Note that the percentage widths will be compared to the width of the report table. Therefore, it may be necessary to also specify widths (100%) for the table of report and its components. Exactly how is based on the report, the region and the page templates and theme used, information that was not provided.

  • Only read the column in the form of planning

    Hi gurus,

    I want to do a red column in planning webform. How can I achieve this? If I give read access to this column for a user and assume that it is a computed column, the calculation is done for the user? To calculate a cell in the form, is that he needed centimeters to write to the user?

    Kind regards

    Hello

    Say you want to have Jan, Feb in your columns, but you want to make read-only Feb, that's what it takes

    In the columns/line under the column dimension tab

    Select period in the drop-down list, enter Jan as a member.

    Now click on add a column

    Enter Feb for the Member, click read-only.

    Ok?

    See you soon

    John
    http://John-Goodwin.blogspot.com/

  • 3D display matrix image RGB (from MATLAB) in Labview

    Hello. I try to display the RGB 3 dimensions image matrix / table (from MATLAB) in LabVIEW. MATLAB returns a matrix 3D with RGB data, but it seems that LabVIEW takes only the 2D matrices. Is there anyway to display the image in labview?

    Thank you!

    .. and here's the example code (matlab and labview). Yesterday, I didn't have access to my computer.

    Best regards

    K

  • Block Member component select only members of dense dimension

    I used the calculation Manager to create business for the planning application rule. The block Member component display only the dense dimensions. Why?

    His tent to force yourself to write the computation of optimally. Calculations with blocks of scattered members are much slower than the dense blocks. Even if you cannot select, you can always type in the name of sparse dimension member. You need not use the Member picker.

  • Unopenable after moving files

    When I move the files TIFF image on a server (I work in a Museum of history) a machine remote, often impossible to open these reliable image files.  Photoshop displays the message, "could not complete your request because it isn't the right kind of document.".   Look in Windows Explorer reveals that he has no data for these images in the column "Dimensions".  An attempt to rename the folder in which sometimes generates an "access denied" message (this occurs when the file is not open anywhere else).  No other Viewer or editor will open the file.  This doesn't happen when you move TIFF files from a remote computer on the server.  It also does not occur when you copy and stick a file only when it is cut and pasted or dragged and dropped.  He always seems to be a computer on the network, however, which can open the apparently altered files.  Curiously, it is not the same machine from one day to the other.  Sometimes, I was able to open these files after restarting the machine whose files have been moved to the origin.  I have not seen this happen with other types of image files (for example, JPEG files).  Our network administrator has not yet been able to solve the mystery.  What happens here?

    All what you describe sounds like a permissions problem access the file.  The default behavior is that moved files to another volume inherit the access permissions of the folder destination while the files moved within a volume to maintain their permissions.  Which copy (and not animated) files in the same volume, the copied file again will inherit the permissions of the folder to which it is moved to.  This is the default behavior.  It can be changed.  Everything is explained here:

    "How permissions are handled when you copy and move files and folders.
      <>http://support.Microsoft.com/kb/310316 >

    Another way to approach this problem is to check the folder that the file in network-transferred to has the access permissions for other users of this computer (as well as the folder that you end by moving to).  For more information on this aspect, try this link:

    "How to disable the file sharing simple and how to set permissions on a shared folder in Windows XP"
      <>http://support.Microsoft.com/kb/307874 >

    Hope this helps,
    JW

  • Report EN

    Hello!

    I use EMP 11.1.2.1.

    What I can into a single report (financial reporting studio) in the display of a MemberName column and the second column - an ALIAS of this member (member name and the alias of a dimension in different columns)

    A big thank you!

    Hello

    I got this formula worked :-)
    I have account in lines and period of in the column dimension. I inserted a text column and gave the formula below
    in the column of text inserted before the period column.
    > referring to the current grid, current line and the dimension account.

    Also selected the Descendants of account Dimension and above, the formula worked, and I'm getting the alias for all members who make their appearance on the report.

    Try it on your end...

    Thank you
    Sourabh

  • OBIEE variable not editable cells

    Hello

    My requirement is to change the layout of the PivotTable. The cell in the upper left corner should be removed.
    I followed the link below. Added a static text and a script. In 10g it works very well. But in obiee 11g, the changes are not reflective.
    http://obiee101.blogspot.com/2010/02/OBIEE-changing-unchangeable-cells.html

    Pls suggest...

    Thank you
    Smita

    Hello

    Robert suggested think will work for your case... Add static text and include the JS html checkbox

    [br /]

    FYI... See the short screen:

    http://ImageShare.Web.ID/images/955tu3bzhdtwzsmuphf.jpg

    and question 2 also answred in the empty screen line running alongside the column dimension header

    Just make the change below it will work:

    you are crosstab--> line properties--> uncheck Display headinges
    but the problem is that you can not see the header of the dimension.

    Close this thread it will be useful to others...

    Thank you
    Deva

  • Error loading Essbase Studio

    Hi all

    I am trying to create a cube Essbase Studio v11.1.2. Its showing successful deployment with warnings... but when you try to view the data in the EA indicating his error msg

    Cannot run view cube
    Malfunction: Essbase

    I followed the link below to fix the problem.

    Essbase studio deployment error message

    I can find a rule of load with the name of the database and able to open it.
    Here, I can only see column dimension and the measure without data.

    Please tell me what to do next to display the data in the EA?


    Thanks in advance...

    Lolita

    I'll assume this BSO as you did, what you've done now is built, the hiearchies and data loaded Level0, now you need to aggregate these data at higher levels, in the OSI world, this is done generally by using a calc script that you can grow in the EA.

    See you soon

    John
    http://John-Goodwin.blogspot.com/

Maybe you are looking for