Reorder of Columns in Voyager

Hi,
Can you please let me know how to move the columns on Voyager workspaces.
What i can see is, Voyager workspace by default arranges the columns in the same sequence that of listed measures in data provider. I am not able to re-arrange the column as per my requirement.
for eg. Voyager workspace gives the columns in below order (same as in the list of measure)
1.Sale
2.Market Share
3.Growth
I want the order as :
1.Sale
2.Growth
3.Market Share
Thanks in Advance !
Regards,
Pallavi

Hello,
Sorry for my English.
Voyager does not allow sorting. If you can not sort on OLAP, Voyager will be displayed in the order that is in OLAP.
Sorry.

Similar Messages

  • Apex 2.2: Reorder report columns

    The new reorder report columns under Report Attributes in Apex 2.2 is great, much faster than 2.0 where each column up/down needs a page refresh.
    Small request: If I have 25 columns in a report region and I want to move the 20th column to the 5th position, I have to click-click-click the Up arrow on the 20th column until it is in the desired position. While doing all this clicking, since the row re-ordering is so slick, I sometimes tend to lose track of which row I am moving!
    Instead, how about a UI like http://htmldb.oracle.com/pls/otn/f?p=24317:33
    Clicking on a up/down arrow highlights the row and as long as the same row is moved up/down, it stays highlighted (serving as the visual aid I need). If you start moving a new row, that is "remembered" and highlighted.
    Comments?
    Thanks
    [Sorry for not posting this as a comment on the Apex 2.2 feedback app, I wanted to see  if others agree, thus strengthening my case. Hopefully the Apex team will include this feature in 2.2]
    P.S: Of course, drag and drop to reorder these rows would be the next logical feature instead of all this silly clicking around! ;-)

    OK I added this to the feedback app under Missing Features.
    Just for completeness, here is how this is implemented.
    The column with the 2 arrows is a derived column with the following HTML Expression
    < img src="/i22/htmldb/icons/up_arrow.gif"
         style="cursor:pointer;cursor:hand;"
         onclick="doUp(this)"
    >
    < img src="/i22/htmldb/icons/down_arrow.gif"
         style="cursor:pointer;cursor:hand;"
         onclick="doDown(this)"
    >The Javascript functions are defined in the Region Header as
    <script>
    var g_last_row=false;
    function doDown(pThis)
        var l_tr=html_CascadeUpTill(pThis,'TR');
        if (g_last_row && g_last_row==l_tr) html_RowHighlight(l_tr,'pink');
        else if (g_last_row) {
            html_RowHighlightOff(g_last_row);
            html_RowHighlight(l_tr,'pink');
        else html_RowHighlight(l_tr,'pink');
        g_last_row=html_RowDown(pThis);
    function doUp(pThis)
        var l_tr=html_CascadeUpTill(pThis,'TR');
        if (g_last_row && g_last_row==l_tr) html_RowHighlight(l_tr,'pink');
        else if (g_last_row) {
            html_RowHighlightOff(g_last_row);
            html_RowHighlight(l_tr,'pink');
       else html_RowHighlight(l_tr,'pink');
       g_last_row=html_RowUp(pThis);
    </script>I am sure the code can be refactored to be more concise/clever, I just whipped this up in 15 minutes.
    Thanks

  • Unable to reorder/change column names on interactive single row view

    I have created an interactive report and grouped my columns to display nicely in a single row view report. However, once I initially add the columns to a group, I am unable to reorder them. I can move them up and down the list, but the changes don't save. Also, I have gone through column by column and unchecked the box that says Use Same Text for Single Row View and expanded the column name. However, the single row view still displays what is in the master report. I've tried closing out my browser completely and reopening, but I am still not seeing my changes. Any suggestions?

    I also just stumbled about the "Use Same Text for Single Row View" option actually doing nothing - in Single Row View I still get the label text from "Column Heading", no matter what I enter in "Single Row View Label".
    I had to adjust a column width using a span tag in the heading (as this seems to be the only way to do that - any other suggestions I found adding style information to the region header had no effect), and now that tag is displayed in the Single Row View label.
    I can live with that for now, but it's not really nice.
    Is this a known bug? Didn't find anything else in the forum regarding this problem so far.
    Holger

  • How can i reorder the columns in the do not display section of the interactive report.

    Hi,
    My interactive report contains 185 columns, and the user requieres to build his customized reports with some columns, but the he gets lost between this amount of columns, this would be easier if the columns in the do not display section of the interactive report would be sorted automaticaly, Is this possible?
    Thanks a lot,

    Hi Eva,
    One solution would be to order the column names alphabetically. You can create a JavaScript dynamic action to handle the sorting.
    The shuttle of the IR attribute "Select Columns" have the ID's "apexir_SHUTTLE_LEFT" or the Hidden colums and "apexir_SHUTTLE_RIGHT" for the displayed columns.
    The function you'd need to create would look like:
    var options = $('select#apexir_SHUTTLE_LEFT option');
    var arr = options.map(function(_, o) { return { t: $(o).text(), v: o.value }; }).get();
    arr.sort(function(o1, o2) { return o1.t > o2.t ? 1 : o1.t < o2.t ? -1 : 0; });
    options.each(function(i, o) {
      o.value = arr[i].v;
      $(o).text(arr[i].t);
    var options = $('select#apexir_SHUTTLE_RIGHT option');
    var arr = options.map(function(_, o) { return { t: $(o).text(), v: o.value }; }).get();
    arr.sort(function(o1, o2) { return o1.t > o2.t ? 1 : o1.t < o2.t ? -1 : 0; });
    options.each(function(i, o) {
      o.value = arr[i].v;
      $(o).text(arr[i].t);
    You'd need to find the propper timing for the dynamic action to run, I guess click of the button "Select Columns" would do the trick.
    Regards,
    Vincent
    http://vincentdeelen.blogspot.com

  • Reorder key columns in "Use for Drill down" option

    I have Product Detail as the leaf hierarchy level which has Product Id and Product Name are both selected as Logical Key.
    When I drill down to this level in Answers, I see both Product Id and Product Name as expected. However I see Product Name as first column followed by Product Key.
    Is there a way to change this default behaviour and make Product Key column as first column followed by Product Name?

    Hi Prassu,
    I had done that and it did not help. I marked the ProductKey&Name column as Primary Key in both the Logical table as well as Dimension Hierarchy level.
    I can drill down from Product Category to Product Type. But Product type does not come up as Hyperlink to be able to drill down to ProductKey&Name.
    If I make the Product_Id as the primary key then drill down works fine. But with the derived logical column "ProductKey&Name" it does not work.
    Any ideas?

  • How can I reorder the columns in the Files panel in Dreamweaver CC 2014.1?

    I just upgraded to Dreamweaver CC 2014.1, and I want to change the order of the columns in the Files panel. But I can't figure out how to do this. Can anyone help?
    Thanks,
    Kim

    <I want to change the order of the columns in the Files panel>
    You can change the sorting order by file name (ascending or descending), size, type, or date modified by clicking those labels on top of Files Panel.
    Nancy O.

  • HELP!   SQL Query:  Other ways to reorder column display?

    I have a SQL query report with a large number of columns (users can hide/show columns as desired). It would be great if the column display order could be changed by changing the order of the columns in the SELECT list in the Report Definition, but that doesn't work -- it puts changed or added columns at the end regardless of the order in the SELECT list of the query.
    Is there some other way to reorder the columns displayed without using the Report Attributes page? It's extremely tedious to move columns around using the up/down arrows which redisplays the page each time. Am I missing a way to change display order, or does anyone have a "trick" to do this? It's so painful....
    When defining forms you can reoder columns by specifying a sequence number for each column. Just curious as to why reports were not done the same way, and are there any plans to address this in a future release?
    Karen

    Yes, reordering columns is extremely painful.
    It is supposed to be much improved in the next version.
    See
    Re: Re-ordering columns on reports
    Moving columns up/down in Report  Attributes
    See my example at
    http://htmldb.oracle.com/pls/otn/f?p=24317:141
    Basically, let the users move columns around until they are blue in the face, provide a Save button to save the column order in a user preference and reorder the columns when the page reloads.
    Or you can use Carl's PL/SQL shuttle as the widget to specify the columns shown and their order. The shuttle is at http://htmldb.oracle.com/pls/otn/f?p=11933:27
    Hope this helps.
    Message was edited by:
    Vikas

  • Reorder columns in Flat File Destination

    Hi Friend's
    Although, I did some google in order to find the solution for reording the columns before exporting to a text file using FLAT FILE DESTINATION, one of the work around which i found is editing the final package xml file and moving the DTS:FlatFileColumn
    fields as required.
    Is there any other solution in order to avoid this approach as I have some 40 fields to be displayed in text file and manually reordring these fields in xml would be cumbersome.
    I need to create  text file using FLAT FILE DESTINATION.

    SSIS Data flow doesn't support dynamic metadata, and any changes in metadata like re-arrange mappings should be done manually. if you want to have columns in a re-arrange design which could be re-mapped dynamically and simply it is better to looks for
    another way than data flow task, dynamic t-sql queries can be good alternative.
    http://www.rad.pasfu.com
    My Submitted sessions at sqlbits.com

  • Reorder columns in JTable

    Hi.
    I want to reorder the columns in a JTable. I want the user to be free to resize and reorder the columns just as he wants, save it, and reuse these settings the next time. I have no problems getting the current configuration. But I cannot handle resetting these. What I tried is
    mytable.getColumnModel().getColumn(i).setModelIndex(newIndex);
    mytable.getColumnModel().getColumn(i).setWidth(newWidth);The data is reordered correctly. But the header is still the old one. And the width is also the old. What do I do wrong here?
    (I also thought about TableColumnModel.moveColumn(int,int), but I don't want to remember all movements, just the result...)
    Thx.
    Kay Dohmann

    ADF Swing's table binding doesn't support dynamically adjusting the column model automatically based on the hidden control hint.
    The ADF Swing design time does hide the hidden attributes to they don't show up in the generated panel/form.
    I'd recommend looking at the techniques illustrated in the ADF JClient Component Demo on this page full of demo code:
    http://www.oracle.com/technology/sample_code/products/jdev/index.html
    The readme file for that demo is here:
    http://www.oracle.com/technology/sample_code/products/jdev/1012/jclient_guide/adf_jclientcomponentdemo_readme.html
    The table demo has a checkbox that illustrates hiding a column as well as another that illustrates changing a column heading dynamically.

  • Reorder columns in View Responses window

    Can the columns in View Responses window be reordered?
    If so, can it be done prior to all the responses being received?
    How does the program determine the order for the columns? It is different from the tab order on the form.
    Thanks

    Yes, they can be reordered. Just select the column (where the column letters are) and drag it where you want it to go.
    You can reorder the columns anytime you want. The default order is based on the order of the fields in the Design tab.
    Randy

  • Hiding Column in Data Grid

    Is there is way to hide a column in data grid column?
    Is it possiblo to reorder the column like in excel . I know its not possible bcoz it <table> tag ...

    Select the column within the table and in the property window uncheck the visible. You can also include visible="false" in the jsp page within the column tag.

  • How do I change the order of columns in the responses table?

    How do i change the order of columns in the responses table in FormsCentral?  The default setting puts them in reverse order!

    Hi,
    The issue with the default ordering of columns in the response table is something that we hope to address in the next update to FormsCentral. In the meantime, you can reorder the columns by selecting them then click/drag using the gray area above the column name. As shown below, an orange marker will show you where the columns will be placed when you release the mouse button.
    Sorry for the inconvenience.
    Regards,
    Brian

  • Almost invisible JTable column headers

    I'm writing an applet which contains a JTable within a JScrollPane. For a while the column headings (text) were visible, but recently the column headings have become very small in height. There is barely enough there so that the mouse can be used to sort, or resize or reorder the columns, but the text can not be seen. It doesn't seem to be related to the number of rows in the table. The getColumnName() method is being called and returning the correct strings, but they don't show up on the screen. As I said, this was working ok until recently, and I don't know what I changed that might have caused it.
    Any ideas? Thanks ... John Lawrence

    I am trying to have a JTable with variable height header. I give the headers a renderer that parses the text into a vector (breaking it into lines), and then returns a JList populated with the vector.
    ex: if the text is "Line1\nLine2", the header will have double height, with two lines:
    Line1
    Line2
    The problem is the same that you encountered: Swing only looks at the header of the 1st column to determine the height of all! So if there are headers with more lines than the 1st one, they get chopped!
    Does anybody know a workaround?

  • Selective reordering of columns in a Jtable

    Hi
    I have this problem where I need to allow the first 8 columns to be reordered but not the remaining columns in a Jtable.
    I have tried a few approaches by adding listeners to the jtable header and identifying the column which is clicked for reordering and accordingly setting the rearrange policy / feature of the jtable to true/false.
    This works fine in almost all scenarios except for one where the user selects a column which can be reordered and drags it to a position beyond the allowed 8 columns, and now that column is frozen since it is beyond the permissible index of 8.
    I was wondering if there was a 'cleaner'/ better way to go about implementing this.

    Thanks for the link...
    I went through it but seems like a big change for the functionality I want to achieve.
    I am thinking about allowing the user to reorder the column and then if he has chosen an invalid column (one which cannot be rearranged) just undo that action using the moveColumn method.
    I tried overriding the columMoved method to inform me about a column reorder evernt but that method keeps getting fired while the user is rearranging.
    Is there anyway to get a notification once the user is done rearranging the column.
    Thanks

  • FireTableStructureChanged losses the Re-ordering of Columns in JTable

    Hello All:
    I have a JTable which uses a TableModel. (I would call PipeFilterTableModel) (The TableModel is based on swingx ). The PipeFilterTableModel takes a Sorter which in turn takes a TableModel.
    One of the filterring mechanism I have is hiding the columns. The way I hide the column is I just reduce the ColumnCount by 1. My method getColumnCount returns one less than the previous filter. I know I can hide the colums by just making the preferred size to zero. But the reason am doing at the TableModel level is becuase i have export and print and other functionality :).
    Anyway, the Table allows Re-ordering of the columns i.e user can move/dragg the columns. But when a ColumnHideFilter is callled I have to use "fireTableStructureChanged" since my table structure is changing (Columns are decreased my one). When that happens I lose the reorderring. Is there anyway I can preserve the reorderring after the firetableStructureChanged ?? I would really appreciate for any help..
    I do have access to JTableHeader (before and after the firetableStructureChanged), but not sure how to reorder the columns after the firetableStructureChanged.
    Thanks
    -Pankaj

    Hi:
    I agree with you guys... that I can remove the column from the TableColumnModel and it would work great. the table won't show the column.
    But in my case I have the export data, print data and all the other functionality written around the tableModel. So as I mentioned previously.. I am using PipeFilterTableModel which filters out data and columns (which are asked to be hidden). So i have to implement the hidden column stuff at the tableModel level.
    So even if I remove the column from Table the export , print and other functionality will get that column (hidden) values from the tableModel.
    As i said I got almost all the things to work except this Reorderring stuff.
    Once I get everything to work fully, I would post it so others can also use it :)
    Thanks
    -Pankaj

Maybe you are looking for

  • Acrobat 9 Typewriter increasing file size

    I have scanned forms that I need to edit with the Typewriter tool in Acrobat 9 Pro - basically I just need to add a date to the form and then e-mail it.  Evidently I have accidentally clicked some box that I did not want to click, because now when I

  • Ipad 1 sync ends up with pictures half white

    when i sync my pictures(taken with a canon dslr)  with the original cable plugged in directly into my imac, almost half of the pictures are broken(30%-60% of the picture is white). What can I do? I tried resycing but didnt help. The pictures are fine

  • JFrame: How to detect a change in size?

    Hello everyone, I have a question related to the size of a JFrame or JPanel. I add a few JPanels to a JFrame and I wanted to detect when the size of the JFrame window or the JPanel itself had changed (if the user pressed the "Maximize icon" or simply

  • Any way to find lost data from the xml file?

    Is there any way I can retrieve lost metadata from my mp3's? I have had 9 months worth deleted, the mps's are still there but I've lost playlists and date added info etc. from the xml file. There are old restores from 9 months ago and now, (the iTune

  • BP search

    I Have created one account with role sold-to-party in the SAP GUI.when i search for the same BP through SAP UI, i m not able to find the account.same someone let me know,wat are the settings that i m missing on?