"Sort" Option not working

Hi,
I have a particular characteristic 0WBS_ELEMT in my report. When I right click on that characteristic and click on sort and then sort in the ascending or descending order, the values are not getting sorted.Where am i possibly getting wrong?
Regards,
Anjana.

Hi...
DId you go to the InfoObject properties in Query Designer.
Its right there.
More into:
Right Click on the InfoObject in the Query Designer (in Rows)
Go down there and see Sort Order. Make the check box - ON.
Here, give the preferences by KEY, Ascending, etc.
Kindly assign me some points if this helps you...
Regards,
Debjani...
Edited by: Debjani  Mukherjee on Sep 6, 2008 9:19 AM

Similar Messages

  • In SharePoint sorting is not working in the list.

    Sorting is not working when i click on the list column, where the column filed is an people or Group datatype.
    Please help me out in this.
    Ramesh S

    Hi,
    You can refer this post-
    https://social.technet.microsoft.com/Forums/office/en-US/b748bb03-4881-4aa5-9c87-bd4558b9201c/unable-to-sort-task-lists-by-assigned-to-column?forum=sharepointadminprevious
    Thanks,
    Danny
    Please remember to Mark as Answer if it works or vote of it is helpful

  • Table sort is not working for columns.

    Hi,
    I am using TableSort.java class. Followed https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sapportals.km.docs/library/user-interface-technology/wd%20java/wdjava%20archive/developing%20with%20tables%20in%20web%20dynpro.pdf
    to create the action and assigned that to onSort event for the table. When I run, I see the ascending-descending icons besides the columns, but nothing happens when I click them. Here is the context.
    Context
    l
    l
    l ---User_Table
             > Email
             > Name
            |
             > Office
    Here Name is a custom string (last name, first name). Also office is a custom string (office1, office2, ...etc).
    Edited by: srinivas M on Feb 8, 2009 6:03 AM
    Edited by: srinivas M on Feb 8, 2009 6:03 AM

    Hi Srinivas,
      If you want to do an initial sort. You have to add the following method to the TableSorter class.
    public void initialSort(String columnId, IWDNode dataSource) {
              // find the things we need
              String direction = WDTableColumnSortDirection.UP;
              IWDTableColumn column = (IWDTableColumn) table.getView().getElement(columnId);
              NodeElementByAttributeComparator elementComparator = (NodeElementByAttributeComparator) comparatorForColumn.get(column);
              if (elementComparator == null){
                   //not a sortable column
                   column.setSortState(WDTableColumnSortDirection.NOT_SORTABLE);
                   return;
              // sorting
              elementComparator.setSortDirection(WDTableColumnSortDirection.valueOf(direction));
              dataSource.sortElements(elementComparator);
    In your wdDoModifyView() after initializing the tablesorter class you have to call the above method.
    if (firstTime) {
                IWDTable table = (IWDTable) view.getElement("Table");
                wdContext.currentContextElement().setTableSorter(
                   new TableSorter(table, wdThis.wdGetSortAction(), null));
                      wdContext.currentContextElement().getTableSorter().initialSort("Your Column ID", wdContext.nodeUser_Search_Results());
    Can you double check in your code if the table is bound to the node "User_Search_Results" and not "User_Table". If the table is bound to the "User_Table" then the sort will not work since in the code you are sorting the node "User_Search_Results".
    If you want to implement sort on only one column you can use the alternate constructor for the TableSorter class.
    TableSorter(IWDTable table, IWDAction sortAction, Map comparators, String[] sortableColumns)
    You have to give a String array of columns that need to be sort enabled.
    Regards,
    Sanyev

  • Wifi option not working in my i phone 4s ios 7.0.2, how to fix it

    wifi option not working in my i phone 4s ios 7.0.2, how to fix it

    Now my wifi is working but not showing the wifi logo on the top

  • Sorting does not work  with ROW_NUMBER () OVER (ORDER BY

    CREATE OR REPLACE PROCEDURE SP_SALES (
    p_sales_id IN VARCHAR2,
    p_rownnum_from IN NUMBER,
    p_rownnum_to IN NUMBER,
    p_sort_by IN VARCHAR2,
    p_query OUT SYS_REFCURSOR,
    AS
    v_query VARCHAR2 (32000);
    v_sort_list VARCHAR2(32000) ;
    BEGIN
    IF p_spv_sort_by IS NULL THEN
    v_sort_list := 'given_name ASC ' ;
    ELSE
    v_sort_list :=p_spv_sort_by;
    END IF ;
    DBMS_OUTPUT.PUT_LINE ('v_sort_list '||v_sort_list);
    OPEN p_query FOR
    SELECT sales_id,
    item_id,
    order_num,
    employee_name
    ,given_name
    dept_id,
    manager_name,
    ROW_NUM
    FROM
    (SELECT x.*,
    ROW_NUMBER () OVER (ORDER BY v_sort_list ) ROW_NUM
    FROM (sales_id,
    item_id,
    order_num,
    employee_name
    ,given_name
    dept_id,
    manager_name,
    FROM order rvw,
    sales pol,
    emp ca,
    WHERE pol.id = rvw.pr_order_id
    AND ca.empid =pol.employee_id
    AND status = 'SUP') x )
    WHERE ROW_NUM BETWEEN p_rownnum_from AND p_rownnum_to;
    -- ORDER by v_sort_list ;
    DBMS_OUTPUT.PUT_LINE ('v_sort_list '||v_sort_list);
    EXCEPTION
    WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE ('EX ');
    END;
    END;
    SHOW ERRORS
    Sorting does not work. Am I doing something wrong here?
    executing procedure using below
    declare
    x SYS_REFCURSOR;
    y number;
    BEGIN
    SP_SALES('70159_502',1,5, 'GIVEN_NAME'||' ASC' ,:x);
    --dbms_output.put_line (:x);
    END;

    Hello
    Depending on how many different columns you can sort on and the data types of them, it may be feasible for you to include the conditional logic in the existing statement without the need for dynamic sql...
    DTYLER_APP@pssdev2> var p_spv_sort_by varchar2(100)
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:='some other column'
    PL/SQL procedure successfully completed.
    P_SPV_SORT_BY
    some other column
    DTYLER_APP@pssdev2>
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G O    ROW_NUM
    c x          1
    b y          2
    a z          3
    3 rows selected.
    DTYLER_APP@pssdev2> exec :p_spv_sort_by:=NULL;
    PL/SQL procedure successfully completed.
    P_SPV_SORT_BY
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, 'z' other_column from dual UNION ALL
      3      SELECT 'b' given_name, 'y' other_column from dual UNION ALL
      4      SELECT 'c' given_name, 'x' other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G O    ROW_NUM
    a z          1
    b y          2
    c x          3
    3 rows selected.
    DTYLER_APP@pssdev2>But that would depend on the columns you're sorting on being of the same data type or at least having the ability to convert them to the same data type without loosing the sort order.
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN other_column
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
                WHEN :p_spv_sort_by = 'some other column' THEN other_column
    ERROR at line 14:
    ORA-00932: inconsistent datatypes: expected CHAR got DATE
    DTYLER_APP@pssdev2> WITH source AS
      2  (   SELECT 'a' given_name, sysdate - 2 other_column from dual UNION ALL
      3      SELECT 'b' given_name, sysdate - 1 other_column from dual UNION ALL
      4      SELECT 'c' given_name, sysdate  other_column from dual
      5  )
      6  SELECT
      7      given_name,
      8      other_column,
      9      ROW_NUMBER ()
    10     OVER (
    11        ORDER BY
    12           CASE
    13              WHEN :p_spv_sort_by IS NULL THEN given_name
    14              WHEN :p_spv_sort_by = 'some other column' THEN TO_CHAR(other_column,'YYYYMMDDHH24MISS')
    15           END)
    16        ROW_NUM
    17  FROM
    18      source
    19  /
    G OTHER_COLUMN            ROW_NUM
    a 12-SEP-2011 15:04:19          1
    b 13-SEP-2011 15:04:19          2
    c 14-SEP-2011 15:04:19          3
    3 rows selected.HTH
    David

  • Z Sort key not working

    Hi
    Sory Key Z02  field name AWKEY u2013 Reference  its assigned in GL Master data.
    Purpose :
    When billing document released for accounting then Billing Document number populated   in Assignment field of Accounting document, subsequently we can check this billing document in FBL3.
    It is working fine in 4.5b but not working in Ecc6 after Tech upgrade.
    imdad

    Please ask your SD consultant to do the same.
    Sort key doesn't work for this.
    Also please check VOFA & VTFA, here you have option that which value you want to capture in reference and assignment field.
    Rgds
    Murali. N

  • 'Get All New Data Request by Request' option not working Between DSO n Cube

    Hi BI's..
             Could anyone please tell me why the option ' Get one Request only' and  'Get All New Data Request by Request' is not working in DTP between Standard DSO and InfoCube.
    Scenario:
    I have done the data load by Yearwise say FY 2000 to FY 2009 in Infopackage and load it to Write-optimised DSO (10 requests) and again load Request by request to Standard DSO and activate each request. I have selected the option in DTP's to  'Get All New Data Request by Request' and its working fine between WDSO and SDSO. But not working between Cube and SDSO. While Execute DTP its taking as a single request from SDSO to Cube.( 10 request to single request).
    Regards,
    Sari.

    Hi,
    How does your DTP setting looks like from below options ? It should be change log, assuming you are not deleting change log data.
    Delta Init. Extraction from...
    - Active Table (with archive)
    - Active Table (without archive)
    - Archive ( full extraction only)
    - Change Log
    Also if you want to enable deltas, please do not delete change log. That could create issue while further update from DSO.
    Hope that helps.
    Regards
    Mr Kapadia
    *Assigning points is the way to say thanks*

  • InfoPath 2013 - Rich Text box - Expand to show all text option not working

    I have create an InfoPath form and created a view which will be used for printing. I have a rich text box in this print view and the scroll option for this rich text box is set to "Expand to show all text". However, it is not working and it doesn't
    expand the size of the text box based on the content length.
    same thing used to work in InfoPath 2010.
    Any suggestions?
    Thanks,
    Neelesh

    Hi Wendy,
    Here are the steps I have used:
    1. On default view added a rich text box.
    2. Created another view called Print and mapped it to the same Field which I added to default view
    3. Set the Wrap text and Expand to show all text on both the Rich Text Box Properties - in default view and in Print
    view. Also set the height of the rich text box to auto.
    4. Set the print views as the print view for default view
    5. Deployed the form to SharePoint Form Library
    6. Opened the form in browser
    7. Entered the content in the rich text box in default view. It expands well if I have much content
    8. Clicked on Print preview and that opens up the print preview and it shows the rich text box only one line in height and with scroll bar
    I missed to mention that it is a web browser enabled form and I am using InfoPath 2013 and SP 2013.
    It does work fine in InfoPath client.
    Thanks.

  • Hierarchy Node Variable search (find) option not working

    Hi Experts - I have created a hierarchy node varibale on a fixed hierarchy. When user run the report and click on hierarchy node variable selection option , A new window will pop up which has all the nodes.
    As the list is quite big and has many levels , On the same pop up , we have find option , when we enter any node in the find box , its always give a ABAP Dump , It never works for me...
    Is node find/search in not working in Bi 7.0 .
    Thanks
    R

    Hi Rohan,
    We can restrict the hierchey level at property of of the hiearchey enabled characteristic.
    Hope this hels...let me know if u require any further info on this..
    Best Regards,
    Maruthi

  • Complaint - Netflix and Youtube (internet option) not working on Apple TV 2 - Please advise

    Netflix and Youtube (internet option) is not working on Apple TV 2 I bought - please advise how to fix this.  Please note this is not to do with signing in as the internet menu and option to sign in is not given at all on screen/within ATV2.  The only menu options which appear on screen are "computer" and "settings" and nothing else.
    I have read from some other posts this may be because of the country in which I am located (currently the UAE) - this of course is not an acceptable excuse and if the real reason I hope Apple will fix this immediately.  From the box I bought the description on the reverse side of the packaging clearly states "Plays movies and TV shows from Netflix, live and archived games from MLB, NBA, and NHL, and videos from YouTube and Vimeo".
    If it is a country specific/territory issue then the packaging must be changed for countries in which this does not work as this product is being missold to customers, especially as having the option to stream Netflix, YouTube and Vimeo is one of its unique selling points - without which I would not have bought it in the 1st place!
    Currently very disappointed in Apple (normally a complete Apple fan!)
    Any help appreciated (positive comments only thank you).

    In reply to the comment "You seem to be saying that the box that you have is different in some way".  I'm actually not saying that at all as I have no idea what your box says and therefore can't comment. 
    And unless you're on the packaging design or distribution teams it would be a giant leap to presume every single box around the world is the same based on the product being the same.
    As a marketing person I know companies of all sizes and shapes tailor their products to cater for individual markets.  E.g. coca cola cans have different designs based on distribution location and languages used in particular countries and even the product itself can differ, although this may not be the case with Apple of course.
    I'm simply describing what is on my box and I don't neccessarily mean to be abrupt however I certainly wouldn't waste my time typing on this forum to say the box says something when it actually does not.
    Let me know if you can postively affect the outcome of this problem/help in someway and I'll be sure to send the image.
    Thanks.

  • "Restore last view settings when reopening documents" option not working with all documents

    Said option (found under Edit/Preferences, category Documents), which works like an automatic bookmark in that it takes you back to the same place you were at when you last closed a document, is very useful, but apparently doesn't work with *all* documents.
    - Does anyone know what determines whether a given document works with this option or not?
    - Is this by design or a bug? A matter of PDF format version?
    - Is there a way to work around the problem?
    I've compared two documents, only one of which works with the option, to determine what the relevant difference may be, and found two suspects (under File/Properties): the PDF version (1.5 in the document that works, 1.4 in the one that doesn't), and 'Fast Web View' ('yes' in the document that works, 'no' in the one that doesn't).
    Thanks,
    Michael

    This seems to be a problem with some PDF files.
    Suggested workaround: If the PDF you have allows "Save As", then try save-as to a new file. The "Restore last view settings when reopening documents" option should then work as expected (in the new file).
    (Original post: Restore last view setting not working in version XI)

  • Date Sorting is not working as expected

    Hey,
    I am using Report builder 3.0 to create one daily report where I need daily metrics and I am putting it under columns. I want it in day wise order but somehow it shows data in below format. My dates are in M/D/YYYY format. Notice how 1/10 is displayed
    before 1/2.
    Solutions tried -
    1. I tried Putting Date as first thing in the Sorting section on matrix.
    2. Created Expression in Sort  =Day(Fields!Date.Value)
    3. Created custom code to prepond 0 to day and month so dates becomes in MM/DD/YYYY format but it is not working.
    Query -
     SELECT NON EMPTY { [Measures].[Work Item Count] } ON COLUMNS, NON EMPTY { ([Work Item].[System_State].[System_State].ALLMEMBERS * [Date].[Date].[Date].ALLMEMBERS ) } DIMENSION PROPERTIES MEMBER_CAPTION, MEMBER_UNIQUE_NAME ON ROWS FROM ( SELECT ( STRTOMEMBER(@FromDateDate,
    CONSTRAINED) : STRTOMEMBER(@ToDateDate, CONSTRAINED) ) ON COLUMNS FROM ( SELECT ( STRTOSET(@WorkItemClaimsSandboxTargetVersion, CONSTRAINED) ) ON COLUMNS FROM ( SELECT ( { [Work Item].[System_WorkItemType].&[Defect] } ) ON COLUMNS FROM ( SELECT ( { [Team
    Project].[Team Project Hierarchy].&[{########-####-####-####-############}] } ) ON COLUMNS FROM [Work Item])))) WHERE ( [Team Project].[Team Project Hierarchy].&[{########-####-####-####-############}], [Work Item].[System_WorkItemType].&[Defect],
    IIF( STRTOSET(@WorkItemClaimsSandboxTargetVersion, CONSTRAINED).Count = 1, STRTOSET(@WorkItemClaimsSandboxTargetVersion, CONSTRAINED), [Work Item].[ClaimsSandbox_TargetVersion].currentmember ) ) CELL PROPERTIES VALUE, BACK_COLOR, FORE_COLOR, FORMATTED_VALUE,
    FORMAT_STRING, FONT_NAME, FONT_SIZE, FONT_FLAGS
    Replaced alphanumeric char with #### above.
    Nothing worked. Please help me out here. I am stuck for a month or so. Would appreciate your prompt response.
    Thanks in advance,
    Shrikant

    Hi Shrikant,
    Per my understanding that you have some problem when sorting on the column group on the matrix, which don't work, right?
    I have tested on my local environment and can't produce the issue, you issue can be caused by the wrong method you have used to setting the sorting, you may set the sorting by select the "Tablix Properties", if so, it will not work.
    Please reference to the details information below about how to do the sorting setting:
    Right click the "Column Group" and select the "Group Properties".
    Select the Sorting on the left pane and do the setting like below:
    This setting works fine on my side.
    If you still have any problem, please feel free to ask.
    Regards
    Vicky Liu
    If you have any feedback on our support, please click
    here.
    Vicky Liu
    TechNet Community Support

  • Ribbon options not working for SharePoint Central Administration

    Hi,
    I am able to see the options on the Ribbon of Central Administration, but clicking on the options is not working.
    Have tried, Starting the Central Admin with Admin account, Setting user account control to never notify, adding the site to the trusted sites, resynced the SP servers time etc.
    But nothing helped.
    The ribbon is not working only for the Central Administration, it is working for web applications created.
    I could not create a new web application, create a new service application, could not select a webapplication or simply i cannot do any thing on Central Administration.
    Need help on this, Thanks in advance.

    Couple of things, you can check..
    1) Run the Internet Explorer as Administrator and then open CA,
    2) make sure your Admin account is in Local Admin group,
    http://epmgelist.wordpress.com/2013/06/14/central-administration-greyed-out-ribbons-and-missing-functions/
    Check if UAC is enable or disable?
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • .svgz web preview in save options not working

    Hi there
    I'm a longtime Photoshop / After Effects type with rather less experience in Illustrator, using a newly built PC system
    I've just gone to save a diagram created in Illustrator as a .svgz in order to pass to the web guy, but wanted to preview it first, so hit the Web Preview button in the Save dialogue box.... and nothing happens. I have several browser windows opn - IE9 64bit, Chrome - but the svgz appears in none of them
    I presumed maybe I need to link Illustrator to a particular web browser somehow, but can't seem to find reference to how to do this, if it is necessary...
    How do I get the web preview to happen?
    All help appreciated...
    I'm using latest Illustrator in Win 7 64bit
    jON

    I'm using Illustrator CS5 on Win 7 64 bit, and I cannot get Web Preview to work when suning Export, and exporting a file to Flash swf with frames.  I have IE set on the Save for Web option, but no such option exists in the Export dialogue box. This option worked fine for the teacher in the help video that shows how to animate a snowboarder graphic when exporting to svf, but I cannot find anything dealing with this in the forums. Are you aware of why this is not working and how to implement it? 

  • Find Option not working in Defect Screen

    Hi,
    In QM I have more number of defect code groups in my system, during defect recording I m using Ctrl+F option to find the exact defect code. But this option was working fine in 4.6C but its not working in ECC 6.0. Is there any setting or how to solve this issue.
    Right now we r upgrading our system from 4.6C to ECC 6.0.
    Thanks in Advance,
    Regards,
    S.Babusingh

    Hi Anil,
    Thanks for information but the below mention note is not supported for ECC 6.0 with enhancement package 4.0.
    So pls let me know anybody having any alternative soln.
    Thanks in Advance
    Thanks & Regards,
    S.Babusingh

Maybe you are looking for

  • I am returning to using firefox 4.?.....I will need to turn off the automatic software update so that it does not update back up to firefox 7 again.

    Hi, I am back again with my tweaked brain. LOL I am trying to go back to Firefox 4, which I had so much less trouble with and liked a whole lot more. I am told that after installing the older version I need to turn off the automatic Firefox software

  • Issues playing music in itunes...

    I hope someone can help me. I have some songs in my itunes that will play for like, 30 seconds then the computer will freeze then it will skip to the next song. I don't know why. I tried updating the software and it keeps saying it was downloaded but

  • What's the best client isql tool on windows?

    Not sure what's the best UI tool for isql on windows XP? I have ASE 12.5.4 on Linux. Sybase Central  v6.0 and Interactive SQL on Windows XP Sybase Central has many errors when I try it connect to Server. Interactive SQL is not convenience to use and

  • URGENT - Multi-form problem

    Would be great if anyone could help me with this: Say I have two forms A and B, A has a repeating timer which, when fires, will GO_FORM to B and B's WHEN-WINDOW- ACTIVATED should fire and do stuff. Problem is if the focus is already on form B at the

  • How to make a list of symbols for exports.txt?

    I've got quite a sizeable C++ project using several 3rd party libraries (including boost), and it compiles and runs fine in FlasCC when built using -O3 optimization level. To be able to run it when built with -O4, I need to list all external symbols