Sort PivotTable dynamic 11g

Hi all

In 10g, I was able to sort a column in the 'criteria' and then create a PivotTable and exclude that this column, but the data would still be sorting based on gender in the criteria.

No, it seems that if you do not include the column in the pivot table sorting is not included either.

Is this a bug? or a change in how BI works now?

Is no longer, you can sort on the columns that are excluded?

Can you hit it:

'Sort the column is ignored.
If there are two columns with sort of the first column and then sorted by the second column and you choose to exclude the first column from the view, 10 g, the first quarter is always respected. 11 g, the first sort is ignored and the data is sorted by the secondary column included in the view.
"
It is taken from the official upgrade-Docs available at [http://download.oracle.com/docs/cd/E14571_01/bi.1111/e16452/apndx_ui_chngs.htm#sthref199]
Section: B of possible changes in Oracle BI Enterprise Edition appearance and behavior after upgrade

Tags: Business Intelligence

Similar Questions

  • Sort PivotTable double-decker?

    Hi all!

    I'm building a PivotTable that is show all projects in my company, and then budgeted vs actual hours for each employee in these projects. I want to sort all projects initially by the total number of hours, then within each project sort employees by "gravity" (total number of hours during this employee).

    The first sorting works fine - project are properly ranked by total number of hours above. However, the second sort is only good for the first project (see screenshot below):
    http://i.imgur.com/CyFzn.jpg

    Can someone help me solve this problem?

    As a side note, the table sorts properly these data - I have only one problem with my PivotTable:

    http://i.imgur.com/HuGPH.jpg

    935764 wrote:
    Hi all!

    I'm building a PivotTable that is show all projects in my company, and then budgeted vs actual hours for each employee in these projects. I want to sort all projects initially by the total number of hours, then within each project sort employees by "gravity" (total number of hours during this employee).

    The first sorting works fine - project are properly ranked by total number of hours above. However, the second sort is only good for the first project (see screenshot below):
    http://i.imgur.com/CyFzn.jpg

    Can someone help me solve this problem?

    As a side note, the table sorts properly these data - I have only one problem with my PivotTable:

    http://i.imgur.com/HuGPH.jpg

    To sort in a PivotTable, you must do:

    (1) duplicate the layers of all the columns that you want to sort, unless the sort column is the first column in the lines section. In your case, the project is the first column, and that's why it sorts fine as the primary sort. Therefore, simply duplicate the column of 'gravity '.

    (2) in the section lines, drag the duplicated "gravity" column to the right of the column of project.

    (3) add the sorting (click on the arrow) and hide the column.

    That's all.

    In PivotTables, sorting is in the order of that column is in the lines section. If you want the column to another in the beginning of your PivotTable, you have to dupicate layer, make it slide to the left, apply the sort and then hide the column. Unlike in the Table view, OBIEE normally ignores the arrows in a pivot table and sorts by column order. Only when the sort columns are in any section of line start they have meanings.

    This concludes the tutorial. ;)

  • Sort on dynamic query problem!

    Hello

    I have a dynamic query written in pl/sql, when I check "Sort" for each field in the report attribute, error message resurrected as "ORA-01785: ORDER BY item must include the number of an expression in the SELECT list.
    If I do not check sort, it works very well. In my applications, I need all the fields sorted by user, how do I solve this problem?

    My query as below:

    declare
    Ask varchar2 (2000): = "select";
    s_class varchar2 (1000);
    cursor c1 is select * from demo_preference;
    Start
    for c1_val looping c1
    If c1_val.login is not null then
    query: query = | » ' || 'login ' | ',';
    end if;
    If c1_val.id is not null then
    query: query = | » ' || 'id ' | ',';
    end if;
    .......
    end loop;
    query: = SUBSTR (query, 1, length (query)-1);

    s_class: = ' (NVL (: P2_class, "%" |)) ''null%'') = ''%'' || "zero percent" OR
    EXISTS (SELECT 1 FROM apex_collections WHERE collection_name = "P2CLASSCOL" AND class = c001))';

    query: query = | » ' || ' from ming.reg_report_view1 where '.
    || ' ' || s_class;
    Return (Query);
    end;

    Maybe the internal column used when you clicked the sort is not indicated in the report. Try to use aliases when you build the query string, it might help apex internally to identify a column even if its order is changed to another user. After all, the order of the columns in the code is dynamic and I assume that even the number of displayed columns can vary that could sort on a column that is identified by a number not valid.

    How about somewhere, displaying the report query so that you know what is the exact query processing, it could give you the best information on the problem.

    If the problem persists, use a collection that is extracted these record using the same query string, then replace the report to view the collection and then set the sort column on. This way Summit could get confused about which columns are being sorted and it would just sort on a c001... C050 column as if it were a string (Yes problems with the number of sort columns when you do this).

  • A Collection of sorting with dynamic columns using a custom multi-column comparison function

    I need help and ideas on how to sort a ListCollectionView.  My problem is complicated by requirements - 3

    1. the values of column contain HTML tags which must be removed before the custom to strip HTML (use of compareFunction) sort

    2. the columns are dynamic, so dataField names are not known at compile time (need a unique compareFunction for all columns)

    3. the data is used in an AdvancedDataGrid, so multicolumn sorting is necessary

    I understood how to resolve any 2 of the 3 conditions.  However, I have difficulty taking care of all the 3 requirements.

    Any help or ideas would be greatly appreciated.  Thank you.

    Here's my analogy simplified your script.

    I have a set of fields that I get from a place:

    Var columnFields:Array = ["firstName", "lastName"];

    And I want to generate columns for these fields:

    Var columns: Array = [];

    For (var int index = 0; index< columnfields.length;="">

    {

    the col: AdvancedDataGridColumn var = new

    AdvancedDataGridColumn (columnFields [index]));

    and assign a custom comparison function that uses that

    columnField

    col.sortCompareFunction =?

    Columns.push (col);

    }

    ADG. Columns = column;

    I mean subclassing AdvancedDataGridColumn

    SerializableAttribute public class MyAdvancedDataGridColumn extends DataGridColumn

    {

    public void MyAdvancedDataGridColumn(dataField:String)

    {

    sortCompareFunction = mySortCompareFunction;

    }

    public void mySortCompareFunction (obj1:Object, obj2:Object,

    fields: Array = null)

    {

    in this function, you can use 'obj1 [dataField]'

    access the field for this column

    If (obj1 [dataField]<>

    Returns - 1;

    ...

    }

    }

    Then your just loop will look like this:

    Var columns: Array = [];

    For (var int index = 0; index< columnfields.length;="">

    {

    the col: AdvancedDataGridColumn var = new

    MyAdvancedDataGridColumn (columnFields [index]));

    Columns.push (col);

    }

    ADG. Columns = column;

  • How does the sort of dynamic dashboards works?

    I need to know how to sort the dashboards that appear on the logo on the tab panels.

    Thx for your help ;)

    Hello

    Check this box...

    http://oraclebizint.WordPress.com/2008/04/02/Oracle-BI-EE-101332-changing-sort-order-of-dashboards/

    I'm not sure we can set dynamic dashboards...

  • How to change the caption for the entire Section of column in the PivotTable dynamic

    Hi Experts,

    I'm trying to apply a Total in the Section of the column in PivotTable view, but not able to rename the topic as Total instead it always shows the name of the column that is only in the criteria.

    Concerning

    Hello

    1st solution is:

    ! http://i852.Photobucket.com/albums/ab83/kishorg86/MeasureLabels.jpg!

    Click on Format labels > caption and change... Here I use measure total Labels instead of the columns
    He disappears?

    2nd solution is:

    ! http://i852.Photobucket.com/albums/ab83/kishorg86/MeasureNameChange.jpg!

    Here without applying the totals on the labels of the measure, I kept the totals it is on columns... but changed the name of measure... as you can see in the picture... so that total name takes the same name...
    But use this setting when you show no name of the measure in report...

  • ListSort sorting dynamic lists?

    Hi I have of course to sort a list type with ListSort function as follows:

    < cfset myList = ListSort ("wango, jango, tango and cash", "TextNoCase", "ASC") >

    < cfoutput > #myList # < / cfoutput >

    that translates into only a text with no html:

    WANGO, tango, jango, silver cash

    But, what happens if I need to sort a dynamic list which is displayed in another page with a cfinclude?

    < cfset myList = ListSort ("some_lists", "TextNoCase", "ASC") >

    I tried the cfinclude of packaging in a variable cfsavecontent = "some_lists" > then convert this variable with no luck. Is it not possible? or I'm going about this all wrong? Thanks for any help in advance!

    teedoffnewbie wrote:

    It seems now sort the correct vendors and all throughout the application complete!

    Yes, vendors are sorted by these lines creating a sorted list keys from the seller and then a loop for this list, rather the the structure verdor itself.

    
    
        
    

    teedoffnewbie wrote:

    but course there was something he didn't like.

    Yes, he did not like the line that you comment, because I have not used the table sort function correctly.

            
    

    Should have been:

    
    

    As I posted in my previous answer.  This line would also sort the products by each provider.

  • How do I change mouse cursor over a graphic, graphic, table, or PivotTable in 11 g

    Hi all...!!


    I tried to change the shape of the hand to an arrow cursor.
    As we know whenever the mouse cursor is over any button or PivotTable dynamic, graphic or graphics, it turns into a form of hand, I wanted to keep it in the form of default arrow.
    It is obiee 11g.
    Help, please.

    above ground only help you see the cursor on the local machine
    to make it visible on all machines

    Column Goto properties > additional CSS > css write cursor: default
    then save the wide system for these types of data changes
    Also make the same changes in other types of data as...

    see you soon

    Ankit

  • Dynamic watermark

    Hi, is it possible to set some sort of dynamic watermark so that when a user prints a document that is saved in a central location, their username is printed under the watermark? Thank you

    Hi Rebecca,.

    It is quite possible, but only thanks to Acrobat, Reader would not be able to perform these actions.

    Reader is the software used to display the PDF "." However, Acrobat is able to create a watermark in whatever you please.

    If you do not have Adobe Acrobat, I recommend you download it so that you can edit a PDF file and add a watermark.

    If you have Acrobat installed on your system, please let me know so that I can guide you through the exact steps on how to add a watermark.

    If you want to install Acrobat on your computer, you might see the following links.

    To subscribe:https://helpx.adobe.com/acrobat/kb/acrobat-dc-downloads.html

    For a perpetual license:download Acrobat products | Standard, Pro | DC, XI, X

    Concerning

    Sukrit diallo

  • Maximum number of pages allowed in the PivotTable has exceeded the configured limit:

    When you try to create element based on PivotTable dynamic section of Page point as Division dim the calculated item is 'All'-> sum * and the customer again the calculated item is ' everything-> sum *. He performed the first calculation (by division), but in the following, it gives the error
    «Maximum number of pages allowed in the PivotTable has exceeded (configured limit: 1000).»

    Try to limit the result set or upgrade [MaxVisiblePages]

    See: http://obiee101.blogspot.com/2008/02/obiee-controling-pivot-view-behavior.html

    concerning

    John
    http://obiee101.blogspot.com

  • Source of data switching / sphere in the same thematic analysis / Pivot / Chart

    Hi gurus,

    Here's my business case.

    Y at - it an easy way to disassociate an analysis / dashboard / graph of the data source / sector of activity?

    I have an existing dashboard, with guests and PivotTable dynamic, executed on a data source Essbase. So far so good.

    Now, I need to dynamically change the content of my PivotTable, as well as the new data from a source of different data (an RDBMS like SQL Server for example) displayed in the same PivotTable.

    If it is clear enough, suppose that I have given weekly on sales by region and product lines.

    Actual data is stored in a model of schema-similar to a star of RDBMS, and the Budget figures are stored in an OLAP (Essbase) engine.

    I'm not trying to display two digits at the same time, so I don't think that the Union would do the trick.

    I just want to sort of/switch to toggle between data sources, move the duct by a prompt value / variable.

    Who is?

    Thank you!

    Laurent

    Hello

    a union would do it, just give everyone an extra field - "Datasource" with the value of 'Oracle', 'Essbase', ' etc... »

    Then put your extra field in a page, the position in a PivotTable, or filtered by a line of dashboard, or else...

    Simple!

  • Unable to connect to my 'new' dn Color Laserjet 5500

    I tried the simplest of methods, an ethernet cable into the printer and the desktop, but not joy.

    Its a 5500dn "renovated", way to much for an office at home, but at a price advantageous and all, I want to do is printed.  Is there something that I am missing?

    He finally cracked with a value of £30 to help of the boys at the Black Box in Lancaster.  Using two plug PowerLines and sort of dynamic/static IP addresses, I can now print on my printer cheap and very heavy.  Thanks for the tips.

  • SideBySide errors w R &amp; R 4.30

    I just deleted the XP and installed W7 Pro 32-bit on a T61.  I installed several applications Lenovo, including Power Manager, Access Connections 6.01, updated system and R & R 4.30.0027.  I noticed several SideBySide Event ID 33 errors.  The machine has Microsoft Visual C++ 2008 Redistributable-x 86 9.0.30729.17 and x 86 9.0.30729.6161, the first since the initial installation and the second an update from Microsoft.  I determined that R & R was causing SideBySide errors.  Apparently, scheduler_proxy.exe process sought versoin 8.0.50727.762 and impossible to find.  Other processes were looking for version 8.0.50608.0 and couldn't find it.  I uninstalled R & R and SideBySide errors disappeared.  Either incidentally, during the installation, I was informed that scheduler_proxy.exe could not be automatically stopped by the uninstall program and should be.  I stopped the process manually by using the Task Manager and the uninstall is complete.  It seems that system update uses the process of scheduler_proxy.exe also so I had some problems after the restart, even if the update system seemed to be working normally.  I uninstalled and then updated the system, during which I have been informed that all files would be deleted for one reason or another.  After another reboot, there was a number of scheduler_proxy.exe errors in Event Viewer.  Then I re-installed update system, which again seems to operate normally.  Now no error SideBySide, but also no R & R 4.30.

    My question is, R R & 4.30.0027 requires that the two already on the machine, the instances of Visual C++?

    For what it's worth, I lalso failed to install the rest of scan/copy/fax/printing programs for a HP Officejet and receipt of the error messages that included "file not found" and that a runtime error had been held.  I suspect I have a sort of dynamic C++ question and would appreciate any help / advice / sympathy that can be supplied.

    Drek


  • OBIEE 11.1.1.5.0 export Excel with filters?

    Hi all

    Is it possible to OBIEE 11.1.1.5 to export the analysis with active filters?

    Thanks in advance,

    Alexander.

    Go to the view Options when you select Narrative View or PivotTable dynamic in that you can see a filter, simply click and export the results to excel it will work under the screen shot for your reference.

    Recordings_2 - download - 4shared

    Check if helps.

    Thank you

  • cover monitors versus view multimonitor Client 4.5

    I thought that it meant the same thing, but I notice something a little strange. On regular PC and computers laptops with the 4.5 Client view, display mode option reads like multi-monitor. On our thin clients HP, the display reads like Span monitors.

    Calibration of monitors requires that the number of pixels in the vertical axis is the same for both monitors. This is the normal behavior.

    I think the difference is that Multimonitor is something I thought was impossible. It takes two separate resolutions and allowing a RDP session to be covered through it.

    To test this, I took my laptop and connected to an external monitor. Resolution of laptops has been set to 1400 x 1050 and the external monitor 1280 x 1024. When I chose multi-monitor, successfully allowed me to cover the RDP session.

    My question is, what are the requirements to View Client to present multi-screen rather than Span monitor option? Is it detect the video and inviting material to make a sort of dynamic zoom?

    Some versions of RDP support true multimon.  To do this, RDP7 on the client side and server.  RDP7 is packaged with Win7 and some XP and Vista can install the client RDP7.

    See http://blogs.msdn.com/b/rds/archive/2009/08/21/remote-desktop-connection-7-for-windows-7-windows-xp-windows-vista.aspx and http://blogs.msdn.com/b/rds/archive/2009/07/01/using-multiple-monitors-in-remote-desktop-session.aspx for more information.

    I don't remember the semantics in the view of the customer, but I believe that we are trying to say 'Span monitors' when the remote desktop will see 1 Logic Analyzer and "full screen" when the remote desktop will be > 1 Logic Analyzer.

Maybe you are looking for

  • Impossible to download or update the app IPAD / iphone

    Hello Can someone help me out of this. not be able to download apps on the apple store. I have enough space in my air of 128GB ipad 2 and iphone 4S. He can't have a problem with the unit. If it is with the device I could have downloaded the app even

  • MIX A FILES

    I just bought a rocket + 2 weeks ago and it was working fine. Recently he has begun to disconnect while I connected to my computer with the USB cable. NOW all files are messy. There are music files in the video and image sections, individual songs in

  • AutoPlay works for CD/DVD, but no USB or memory card reader

    My autoplay works for CDs and DVDs, but stopped working for my USB key and installed memory card reader. I tried to disable the AutoPlay and turning power on and which did not work, I also tried the commandnet start shellhwdetection , and he says tha

  • Western Digital drive hard problem; Forced to Format

    I have been using an external hard drive Western Digital Home Edition 500 GB with Windows Vista for more than 8 months without any problem.  Recently, I used the hard drive on a computer running Windows XP (also without any problem).  Now, the hard d

  • Passport passport for blackBerry turns on, loaded with bright orange to 12 hours

    I accidentally left my passport and he stayed on the 7 days and empty the battery it is Nothing.  I plugged it in to charge and the LED slowly flashes orange (in and out).  Happened for 12 hours, and now it's only drawing about 100 my and it refuses