OBIEE 11.1.1.5 disable sorting

Hi,
I am finding some issue when sorting the columns by ascending most of the time. The records are getting removed from the report. By default, now 11.1.15 introduced sorting on all columns including the measure columns as well and there is no way to disable them by column or remove this feature from the report as well. Did any one find any alternative way to disable this sorting in this version of OBIEE. Let me know the solution.
Regards
VM

Yes, definitely there is a problem the way OBIEE 11.1.1.5 has made this a default behavior including all the dimension columns as well fact measure columns also available for sorting and it acts wierd for pivot table issue but doesnt throw any error for table view.
Will be taken up by oracle support as a bug and might get fixed in its later version may be.
Regards
VM

Similar Messages

  • How to disable sorting for some columns in a ALV GRID?

    Hi i have requirement where I have to disable sorting for some columns in a ALV GRID. i am using REUSE_ALV_GRID_DISPLAY function module.
    Can anybody help me. how to acieve this? Any code snippets will really be appreciated.

    Hi,
    I have tried this but not completely successful. I think this can be done using the OOPS method.
      DATA: it_event_exit TYPE  slis_t_event_exit.
      DATA: w_exit TYPE slis_event_exit.
      w_exit-ucomm = '&ODN'.
      w_exit-before = 'X'.
      CLEAR w_exit-after.
      APPEND w_exit TO it_event_exit.
      w_exit-ucomm = '&OUP'.
      w_exit-before = 'X'.
      CLEAR w_exit-after.
      APPEND w_exit TO it_event_exit.
      CALL FUNCTION 'REUSE_ALV_GRID_DISPLAY'
        EXPORTING
          i_callback_program          = w_repid
          i_callback_top_of_page      = 'ALV_TOP_OF_PAGE'
          i_callback_html_top_of_page = 'ALV_HTML_TOP_OF_PAGE'
          i_callback_user_command     = 'USER_COMMAND'  <- User command form
          is_layout                   = wm_layout
          it_fieldcat                 = wt_fieldcat
          it_events                   = i_events
          it_event_exit               = it_event_exit    <- Need to fill
          it_sort                     = wt_sort
          i_default                   = 'X'
    Now you can capture this events in the user command
    FORM user_command  USING r_ucomm LIKE sy-ucomm
                             rs_selfield TYPE slis_selfield.
      IF r_ucomm = '&OUP' and rs_selfield-SEL_TAB_FIELD = 'Your field name'.
      ENDIF.
    ENDFORM.                    "user_command
    In this form you will get the function code in 'r_ucomm' and the field selected for sorting in 'rs_selfield-SEL_TAB_FIELD'. But reseting 'r_ucomm' will not work.
    May be somebody else can give some help on this.
    But this will work if you follow the oop method.
    Please see this document for more info.
    http://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/abap/an easy reference for alv grid control.pdf
    Thanks
    Vinod

  • Disable sorting and resizing columns on table view

    Is there a way to disable sorting and resizing columns on table view?
    Thanks

    Use
    setSortable(false)
    setResizable(false)
    on each TableColumn

  • Disabling sort button on the alv list display

    Hi,
       how to disable sort button on alv list display
    thanks

    Fill an itab
    1- Create an itab type SLIS_T_EXTAB.
    2- Populate it with the Function codes you want to exclude ('&OUP', '&ODN').
    3- Pass it as parameter to IT_EXCLUDING
    Regards
    Edited by: Jordi Escoda Ruiz on Apr 24, 2008 10:39 AM

  • How to disable sorting in ListView component?

    Hi ,
    I am using a listview component and is there any option to disable the sorting option.
    Regards,
    Nagaraj

    Use fixed header size, that will stop resizing the column width at run time.
    Regards,
    Anjani Kumar C.A.

  • How to disable sort in inputlistofvalues popup

    I'm building custom bpm task list using jdeveloper 11.1.1.7 and in this page i've added input list of values
    this input list of values comes from view object but I've changed its value to my xsd element to save returned value in this elemnt
    Problem happens
         when I open the input list of values popup and try to sort data in the appeared table in the popup
         error says "class cast exception appear"
    I want to avoid this error by disable search in the popup or catch the sort event by java script and cancel it.
    can I make this or no

    this is the error that appears to me
    oracle.jbo.server.ViewObjectImpl cannot be cast to oracle.adf.model.bean.DCDataVO

  • Disable sort function in datagrid

    In my application I have a datagrid with four separate columns and I was wondering if there is any way of disabling the sort functionality on each column in the datagrid component?
    If not I'm open to suggestions but would prefer not to use four separate list components?
    Thanks
    Adam

    Sorry just found the answer...
    Setting sortableColumns="false" is all that was required.
    Adam

  • Disable sorting in LOVs?

    Hi,
    We have a lot of LOVs in our ADF 11g application. We noticed that using the sort function of the table inside the LOV sometimes causes errors. Since we don't need the sort functionality in our LOVs (we have appropriate ORDER BY statements in the queries that fill them), we would like to disable the sort function in LOVs. I can't find a way to do this. Am I missing something? Or is it simply not possible?
    Best regards,
    Bart Kummel

    Hi Bart,
    I don't know if I've understood the requirement well enough.
    You mean, you have an LOV as one of the column in your table, for which you you want to disable the sorting?
    If yes, you can set the sortable property to false.
    Something like
              <af:column sortable="false" id="c1" width="105">
                <af:selectOneChoice label="Label 1" id="soc1" ... >
                  <f:selectItems id="si1" .. />
                </af:selectOneChoice>
              </af:column>-Arun
    P.S : Also make sure to remove if you have any sortProperty set for the column

  • Disabling sorting for a table

    Hi All,
    I want to disable the sorting function for my table. How can I achieve this? Please help...!!!
    -sps

    If you are using a JTable, by default row sorting is unable. Infact, to provide you the Table sorting, you have to put the line
    JTable table = new JTable (...);
    table.setAutoCreateSorter (true) //this enableinto your code or writing a RowSorter.
    Otherwise there's no sorter for the Table and you can't do any kind of sorting.
    Regards,
    Maurizio

  • Disable sort option in ALV GRID DISPLAY

    Hi Experts,
    I have an Alv output with fixed layout, means user should not be allowed to edit/sort/toggle any of the columns, particularly sort functionality should be removed.
    I have already tried the function code logic with excluding table. That only makes the sort option disappear. Still when you select a particular column and right click, you will find that the Sort in Ascending order' and 'Sort in descending order' functions are still enabled. This was already raised as a thread but not answered.
    [alv sort option]
    Please help.
    Note: Disabling the icon doesnt help in disabling the functionality.

    Try by excluding the entire Sort group. Like:
    Data:
    t_toolbar_excld1 type ui_functions, "buttons to exclude
    wa_toolbar_excld&1 like line of t_toolbar_excld1.
    wa_toolbar_excld1 = cl_gui_alv_grid=>MC_FG_SORT.   " <<
    APPEND wa_toolbar_excld1 TO t_toolbar_excld1.
    CALL METHOD r_alv_grid1->set_table_for_first_display
      EXPORTING is_variant = w_is_variant1
         is_layout = w_is_layout1
         i_save = c_alv_save_cd
         it_toolbar_excluding = t_toolbar_excld1
      CHANGING it_outtab = my_table
        it_fieldcatalog = t_fieldcat1.
    Regards,
    Naimesh Patel

  • OBIEE-ODI Lineage:Hiding or disabling lineage column

    Hi,
    I am working on OBIEE-ODI lineage implementation. When I click on the lineage icon its going to next level. For eg when I click on lineage icon the report is showing OBIEE logical table and logical column details ....In turn when I click on lineage icon in this report its showing the OBIEE physical table and column details...in turn when I click on lineage icon in this report its displaying the ODI target details and on next click the underlying ODI source details....once we reached the ultimate ODI source I want the lineage icon to be disabled or the column showing the lineage icon to be hidden. Any pointers on this would be of great help.
    Regards,
    Rajesh

    Hi,
    If you are on ODI 11g remove the odiRef.getObjectName("BI_OBJ_ID.NEXTVAL") function call and just give the sequence BI_OBJ_ID.NEXTVAL where ever its being used.
    Regards,
    Rajesh

  • How can I disable sorting in a folder? When mail arrived or move to a folder, I want that mail to show on top.

    This is mainly for my trash folder. Sometime when I accidentally deleted an email, going back to the trash folder to looking for it gives me headache. If it is on top, I know where to find it. Thanks.

    So you want the last thing that you placed in the trash to be on top no matter how new or old the message is? I am not sure how this could be done. Every window sorts on something. Maybe someone else will have a work around.
    If you notice right away you can select Edit-Undo from the menu bar or use the shortcut control+z. This will undo the last action. If you do something else before you notice it then this does not work.

  • ITunes access for the disabled (sort of)

    In the nearly 9 years since I've been disabled I have had to use my card about 2 times.  Once was when I got divorced.  I dont know what the 2nd time was but I'm just figuring there was probably a second time.  And now this is the 3rd.
    I am missing a part of my brain called the mammillary gland - it controls the development of short term memory & I dont have it.  So that, combined with some areas near that being damaged makes it hard to get things done when things are working properly let alone when you come across a poorly made piece of software or hardware.  My short term memory is nearly non existant but I do have one.  But I am able to get some stuff done, especially if its things that I was familiar with BEFORE.  And with repetition.  With regards to my issue & my problem with iTunes, I'm running into problems because I dont know what is going on as far as why so much of my stuff is just AWOL.  I dont know? I updated my operating system last week or so and with that came the iTunes update.  I look inside and all Hades has broken loose.   I know that nobody has the obligation to treat me differently or whatever just because I've got this problem.  But what is the DEAL with this forum moderation???  I paid for these products and for the right to use these forums.  Now i have no access to a decades plus worth of content PLUS i cant get help here??   I just want help.  Why are you guys so mean like this?
    My last -  I dont know how many - but i would guess nearly TEN questions here have been deleted.  I dont understand why I see what nears 20 other people asking the same thing in nearly exactly the same terms - including a guy who has got THOUSANDS OF RESPONSES over in the windows section - thought that was my own post when I saw it!!!  and they're not deleted.  Mind you, I do NOT want theirs deleted, I just dont want MINE deleted.  What is going on?????  I'm not like riddling my posts wtih profanity every 3 words. 
    The whole issue here is that this newest version of iTunes - which is.... first of all, I gotta tell you throughout all the times I've been posting about it the past week or so I have had to go & look up the version no less than 25 times.  I can remember all the times I've done that but I can never quite keep track of what it says each time I look it up.  Very, very aggravating.  So I give up & I'm not going to check anymore.  I know its either 10, 11 or 12.  Not even going to try to check anymore. 
    OK So i cannot get anything to work in iTunes.  Its all messed up.  Features seem to be missing.  I dont know if they're even Supposed to be gone or if its just user-unfriendly.  I cannot find my stuff.  I've posted many, many, many specific questions regarding it and now I am  worried that THIS post is going to be deleted for being too genereal just because I've already posted 3000 other things asking the exact specific ones & I cant even remember them anymore after so many deletions.
    ALSO , within iTunes, my phone is never backing up properly like it used to.  Its hard to explain this.  Really hard.    
    ANYWAY.   LIKE THOUSANDS OF OTHER PEOPLE HAVE AND DO AND ARE SAYING....I NEED HELP.  I CAN NOT DO ANYTHING WITHIN ITUNES. TIME & TIME & TIME AGAIN I AM POSTING QUESTIONS ASKING (BEGGING BY NOW) FOR HELP WITH SPECIFIC FEATURES WITHIN ITUNES. 
    I CANT FIND CERTAIN THINGS I CANT DO CERTAIN THINGS, ETC.  YET WITH EVERY POST I MAKE...POOF. 
    SO WHAT YOURE DOING IS SELLING ME
    MUSIC
    APPS
    VIDEOS
    FOR YEARS & YEARS & YEARS
    MAKING ME TOTALLY UNABLE TO ACCESS IT
    AND NOW MAKING ME TOTALLY UNABLE TO DISCUSS IT OR GET HELP FOR IT. 
    WHAT.   THE.   HECK.   
    I will attempt to give this here post a little legitimacy by asking just one of my plethora of questions but I'm so exhausted (i mean literally physically exhausted by all the typing and retyping from all of the removed posts!!) Its hard to know where to start or which question out of all of them to pick.  I almost feel like if I choose the wrong one its game over for me or something.
    I guess I really just want to know what to do like as far as figuring out why all of my libraries arent showing as far as music, videos, audiobooks - which are not bought thru Apple but until now had always shown in iTunes with no problem at all - and app
    If a mod is eading this and feels like Im not adding enough or that i need to say more or say less please just let me know.   POSTS CAN BE EDITED!!!  THEY DONT ALL NEED TO BE DELETED.  I've had another 500000 posts and points it just like i said I keep getting removed.  I am literally physically exhausted.  But I keep trying because I need help. 
    Look I am sitting here in my house, dying of a freakin brain tumor.  Can I just at least have this?  I just want to not be bored.  Thats all I want.  I just want to be able to listen to my audiobook and music.  And I cant.  12 posts I managed to make it through an entire dozen posts without having to go there but now i'm forced to.   And if anyone noticed me mention that I had a brain injury in prior posts & now sees me say this, yes its true.  Its how I found out about the tumor.  (they sent me to get checked out post-injury & were like hey.  guess what?)

    Hello:
    Disabled items are cleared out from session state upon Submit.
    Create a hidden item on your page and populate this hidden item just as you populated the disabled-item.
    In your page-process refer to the hidden item instead of the disabled item.
    Varad

  • Can I disable sort order, so I can simply stack My albums alphabetically?

    Hello
    Over the past year or so I've been updating smart playlists by adding My own info to sort columnes, like! Fast, Slow etc..
    Up until now everything was fine, because I had it all ordered by date added, but I've just got a new laptop, and of course the date added is useless now, but not only that, but if I resort to album, any of the songs that I've made changes to "Grouping and Sort Album" are scattered.
    It goes like (example) Track  = CD 01. Track = CD 02. Track = CD 01. Track = CD 15
    instead of simply Track = CD 01 T = CD 01 T = CD 01 T = CD 01...
    I had no option to use anything other than Sort Album, as everything else that is rewritable was already in use by other genre's (more smart playlists).
    I'd be delighted if anyone could help. Of course I can work around it, if there isn't a solution, as a new playlist I've made has mostly only all new music, but for the sake of being tidy.
    Thanks.

    Command (right) - click on one of the albums and select Sort Albums from the contextual menu:
    OT

  • How to disable sorting in hash map

    im adding like this ,
    Map Params = new HashMap();
    params.put("orderYear", "1");
    params.put("distrChannel", "2");
    params.put("salesOffice", "3");
    while iterating answer is coming like this
    1
    3
    2
    but i want
    1
    2
    3
    thanks in advance
    gowri

    while iterating answer is coming like this
    1
    3
    2You can print the Sorted HashMap values using the following way:
              HashMap map = new HashMap();
              map.put("1","First");
              map.put("2","Second");
              map.put("3","Third");
              ArrayList keys = new ArrayList();
              keys.addAll(map.keySet());
              Collections.sort(keys);
              Iterator it = keys.iterator();
              while (it.hasNext())
              System.out.println(it.next());
    Refer the outcome keys, and print the HashMap values, thats all.

Maybe you are looking for

  • Hp f4440 all in one printer will not copy or scan

    My F4440 all in one has suddenly stopped working.  The on light blinks constantly and the little orange light at the front of the printer blinks as well.  I have unplugged it from all electricity several times and checked all connections.  No luck. 

  • File does not have the correct plug inn while I made it in that programme

    Ever since I joined the creative cloud and I make a file in indesign, it is possible that the next time , I will not be able to open that file again because the plug ins can not be found or because the file was not stored properly. But then the next

  • Hide Reporting Period in LDB PNPCE

    Hi Experts, Can someone please tell me how to hide/disable Reporting Period in LDB 'PNPCE'. My clients requirement is to use custom date fields instead of LDB's Reporting Period. Thanks Vasuki

  • Introducing the Best Designed Workstation Ever - ThinkStation P series

    We are extremely proud to announce the new ThinkStation P series workstations.  This is the culmination of nearly two years of work by our collective teams, and to say that we're excited about this launch would be putting it mildly.  This is essentia

  • Ipad not showing in itunes on wifi

    Since upgrading to iOS6 my iPad doesn't show up in iTunes unless it's physically connected to my Mac. I checked in iTunes and "Sync over Wifi" is checked. Any thoughts?