Sorting Customization

Hi All,
I done the pagination using the below link.
http://codeplay.net/2011/04/21/simple-adf-traditional-pagination-2-with-business-component/
But my problem is when i tried to do sorting,Filtering both are applying for the overall result set. How can i perform the sorting with in the page(Say currently if i am in second page which consists of 10 records, sorting and filtering should be performed within the 10 records only).
Can anyone provide some suggestions,links to achieve this.
Thanks

Hi,
I have also implemented the pagination using the same post and it worked fine for me. By default, sorting and filtering works only with in the page but I had a requirement to do it for full result set so I overridden the default sort listener on af:table. If you can send me your code I can take a look.
Check if af:table value = #{<Collection Binding>.rangeSet}
Thanks,
Sachin
Edited by: Sachin Saxena on May 13, 2012 7:04 PM
Edited by: Sachin Saxena on May 13, 2012 7:08 PM
Edited by: Sachin Saxena on May 13, 2012 7:10 PM

Similar Messages

  • ITunes 11 - How do you Sort by Genre then Artist? Other General Customizations

    Hello,
    Maybe somebody else knows how to do this, if so please post it. I am really disappointed in iTunes ever since version 10 I think, where they majorly revamped the whole look for it. No, I am not one of those people who are opposed to change and are slow to adapt when changes are made to applications either. I just feel these new changes majorly suck.
    So I am using version 11, the latest one. Apple has made it so uncustomizable that it is ridiculous. Correct me if I am wrong in saying this, that you can’t do any of this stuff anymore. When I open iTunes I like to be able to select Genres and then have the music within the Genre sorted by artist. I don’t see how you can do this anymore. Now when you click on Genre there is no longer an option to sort anything. Everything is sorted by CD Name and you aren’t allowed to sort it any other way. Seriously, who really knows the name of every CD they own, especially when you have several 100 CDs?
    So if I want to view my music by artist I have to select Artists, which that lists all artists (regardless of genre).  I hate this because then it is harder to find the exact artist you are looking for because the list is that much longer and you are scrolling through a ton more artists just to get to the one you are looking for. Yes, I already know there is a search library feature. I also like viewing the artist by Genre because it is easier to determine if the newly added CD was placed in the correct Genre. I know some people just add music and don’t care where it is placed or how it is organized, but I like to keep it all organized. I even have it organized on my computer by folders Genres, folders Artists, and then folders CDs.
    This is the same for viewing your Playlists. You used to be able to select your playlists and then view a specific genre within that playlist. From there I could sort the playlist however I wanted, like by artists, and then CD. I have several playlists that have more than one genre in it. With this new version you can’t view your playlist by genre, you can only view all of the songs within the playlist.
    I also liked in the old version how you could view the number of songs in each genre. Well, you can still do this once you click on the genre, but there isn’t an overview anymore. Like in the old version it would list all the genres and then in a caption underneath each genre it would show how many songs and different artists are in each genre. There was no need to go into each individual genre to view this information. You could also view the number of songs in each genre within each playlist as well.  The playlist thing has been removed altogether. Now you can only view how many songs are in the playlist, regardless of genre.
    The new version does have a few tiny benefits, like easily being able to see what playlist(s) a particular song is in by right clicking on a song and then selecting Show in Playlists. I however, don’t feel the tiny tweaks outweigh the view customizable benefits of previous versions. These new tweaks could have easily been added to the older versions without disabling the customizable view settings.

    Max OSX 10.6.8, iTunes 11.1
    I had a similar problem: I wanted to synch my playlist to my iphone. I like to have my playlist sorted by genre. But under each genre, albums are not sorted by the track numbers. This is a problem, especially when I am listening to club mixes when the DJ smoothly transitions from 1 track sequentially to the next one. Under the properties of each audio file, the Track Numbers and Disc Numbers are already there.
    My perfect solution was to turn On Sorting - Sort Album under View>Show View Options. Then, select all the songs in that album (Shift click, Cmd click, etc) , and Edit multiple item information (Cmd I). You will see Info-Video-Sorting-Options buttons. Click on Sorting. Then, under Sort Album, Enter the name of the album. Then OK.
    You should now have the playlist sorted by Genre, then each album individually sorted by track numbers. On your playlist you should see, if you scroll right, the column added called "Sort Album".
    Hope this helps.

  • How to customize SORT event in the View Form ?

    I'm using Jdevelper 9.0.3 with BC4J+UIXML, and I need customize the View Object Query, including "bind variables" as:
    SELECT A.COD_CLIENTE,
    A.NUM_TESTE,
    A.NOM_TESTE
    FROM TESTE A
    WHERE A.COD_CLIENTE = :1
    I create the java class for prepare assign values to View Object as:
    //Nome da Package da Tela Detail
    package br.com.siadem.siaed.ed00010;
    // Importa as Bibliotecas necessárias
    import oracle.jbo.ViewObject;
    import oracle.cabo.servlet.BajaContext;
    import oracle.cabo.servlet.Page;
    import oracle.cabo.servlet.event.PageEvent;
    import oracle.cabo.servlet.event.EventResult;
    import oracle.cabo.data.jbo.servlet.bind.*;
    import oracle.cabo.ui.data.BoundValue;
    import oracle.cabo.ui.data.DataBoundValue;
    import br.com.siadem.siaed.util.*;
    public class FunPreQuery
    public static EventResult FunConfiguraQuery(BajaContext context, Page page, PageEvent event) throws Throwable
    TrataDadosSessao varDadosSessao = new TrataDadosSessao();
    // Configura os Parametros
    String valor1 = varDadosSessao.getCodCliente();
    // Cria o objeto ViewObject para a difinição dos parametro na Query
    ViewObject view = ServletBindingUtils.getViewObject(context);
    // Configura os parametros na query do ViewObject
    view.setWhereClauseParam(0,valor1);
    // Executa a Query
    view.executeQuery();
    // Retorna o Resultado para a Página
    return new EventResult(page);
    This works very well customizing the "Search" event in the View form as:
    <event name="search" >
    <!-- using the ApplicationModule causes it to be checked out from the
    ApplicationPool. It is released using stateful mode. -->
    <bc4j:findRootAppModule name="TesteView1AppModule" >
    <!-- establish the ViewObject scope -->
    <bc4j:findViewObject name="TesteView1" >
    <!-- search for the view criteria -->
    <bc4j:findByExample>
    <bc4j:exampleRow ignoreCase="true" >
    <bc4j:exampleAttribute>
    <bc4j:nameBinding><bc4j:parameter name="attrName" /></bc4j:nameBinding>
    <bc4j:valueBinding><bc4j:parameter name="attrValue" /></bc4j:valueBinding>
    </bc4j:exampleAttribute>
    </bc4j:exampleRow>
    </bc4j:findByExample>
    <method class="br.com.siadem.siaed.ed00010.FunPreQuery"
    method="FunConfiguraQuery"/>
    <!--<bc4j:executeQuery/>-->
    <!-- store the current search criteria as page properties -->
    <bc4j:setPageProperty name="attrName" >
    <bc4j:parameter name="attrName" />
    </bc4j:setPageProperty>
    <bc4j:setPageProperty name="attrValue" >
    <bc4j:parameter name="attrValue" />
    </bc4j:setPageProperty>
    </bc4j:findViewObject>
    </bc4j:findRootAppModule>
    </event>
    I'm use the sortable columns with <bc4j:sortablecolumn> as:
    <bc4j:column attrName="NomTeste">
    <columnHeader>
    <bc4j:sortableHeader/>
    </columnHeader>
    <contents>
    <bc4j:input readOnly="true"/>
    </contents>
    </bc4j:column>
    But, the "Sort" event does not enable a manual control for call Java Class. When user click in any sortable column, occur the follow error:
    oracle.jbo.SQLStmtException: JBO-27122: SQL error during statement preparation. Statement: SELECT A.COD_CLIENTE, A.NUM_TESTE, A.NOM_TESTE FROM TESTE A WHERE a.cod_cliente = :1 ORDER BY A.NUM_TESTE ASC
    Anybody know to implement this functionality ?

    Ok, the solution:
    Sort BC4J table with reduced view objects

  • How can I customize the sort options in the product search?

    Is there a way to customize the sort options availabe when you search for a product?

    That is covered here: http://helpx.adobe.com/business-catalyst/kb/modules-quick-reference.html#News
    {module_productresults, rowLength, targetFrame, resultsPerPage, sortType, hideEmptyMessage, useLi}
    This module can only be used in conjuction with a product search form. Whenever you insert a product search form into a page the system also adds the {module_productresults} module right after the form. When viewed in the front end this module does not render anything until the form's "Search" button is presed and a search is triggered. This module and the product search form can also be placed on different pages, take a look at this article for more details on this particular setup.
    Parameters
    rowLength - will limit the number of items per row when items are displayed as a list. Default is 1 item per row.
    targetFrame - possible values are _blank, _self and _top. This parameter is used to specify the frame you want the item to open in.
    resultsPerPage - specifies the number of results the search will display per page.
    sortType - sortType can be alphabetical, price, date, or weight. Do note the sortType is ignored if the "Sort By" field is present in the product search form.
    hideEmptyMessage - specify True if you don't want the No Items Found message to be displayed
    UseLi - specify True to render the output in Li's instead of tables
    This module is rendered with these layouts
    Online Shop Layouts > Individual Product - Small
    This module also supports custom templates
    Examples
    {module_productresults,4,_blank,10,,true} - displays the products that match the search criteria 4 per rotw, 10 per page and hides the "No products found matching your query." if no products are found. The structure rendered is a table. When clicking the product name the detail view (rendered using theIndividual Product - Large layout) opens up in a new tab.
    {module_productresults,,_self,2,,,true} - displays the products that match the search criteria 2 per page and renders "No products found matching your query." if no products are found. The structure rendered is an unordered list. When clicking the product name the detail view (rendered using the Individual Product - Largelayout) opens up in the same tab.
    {module_productresults,2,_self,2,,,true template="/layouts/custom/moduleproductresults.tpl"} - displays the products that match the search criteria 2 per page and renders "No products found matching your query." if no products are found. The structure is no longer an unordered list as it is in the example above, thecustom template is used instead.

  • Customize sorting

    I was wondering if there is a way to customize the column sorting routine to properly sort numbers? The default sorting rounting works fine with strings, but poorly with numbers (including reals) and integers. The sample app
    http://htmldb.oracle.com/pls/otn/f?p=24317:28
    appears have a modified sorting routine. Any suggestions will be greatly appreciated.

    I've never had a problem sorting numeric fields.
    Are the fields actually numeric or are they strings?
    Andy

  • Advanced Sort, Filter (color, image size), DUPLICATES, face recognition, GUI customizeability

    Hi,
    here are some of my Lightroom Feature Requests (maybe later more):
    - Filter based on image size. Example: show me all photos with a resolution of 1600x1200 or less.
    - More complex filtering. Example: show me all photos from the Collection A that are tagged with keyword 'k1' and 'k2' but not with keyword 'k3' and that are in the date range d1-d2 and were made with camera model X.
    - Automatic portrait/human face recognition
    - Sort and filter by color! Example: show me all photos that are mostly green (blue, yellow, red, ...)
    - Intelligent recognition and optional deletion of duplicates. Calculate some kind of fingerprint for each photo (file size won't do I guess) so that it will be possible to recognize duplicates EVEN if they are of different image resolution or orientation (landscape, portrait), i.e. really based on CONTENT of the image!
    - Make the components in the side panels movable so that the user can arrange his/her own panel with the components he uses most and on that side of the screen where he wants it.
    Besides that: I LOVE Lightroom. A GREAT product!! Use it A LOT!
    Nice greetings from Germany,
    Stefan.

    I second that.
    "More complex filtering. Example: show me all photos from the Collection A that are tagged with keyword 'k1' and 'k2' but not with keyword 'k3' and that are in the date range d1-d2 and were made with camera model X."
    This should be relatively easy to do. Most other DAMs in the market, e.g. ACDSee, do have this feature. It doesn't really becomes a real database until you have this feature.
    "Intelligent recognition and optional deletion of duplicates."
    Another great feature in ACDSee. Somehow it finds duplicates, even if filenames and dates are different, shows the different photos and gives you an option on what to do.

  • PNP LDB Sort Order Customization

    Hi all,
    I need to add a custom field to the list of "Sort Order" fields available on PNP LDB Selection screen. Any idea how can we achieve this??

    Hi Markus,
    No, the Sort Order has not been removed in  PNPCE.. which report are you using? If it is tied to the Report Category PNPCE, the Sort Order icon is displayed 4th from the left on the tool bar.. You can alos use the CTRL + F1 keys option.
    Regards,
    Suresh Datti

  • Can i customize the sort order of filter or metadata in bridge cs6?

    Hi
    can i custmize the sort order of fiter or metadata items draging up or down?
    for example have aperture value at the begining of the list instead file type? like the screenshot
    or camera data at the top instead file properties
    i'm not sure but i guess i was able to do it with bridge cs3 or cs4
    but i have no more installed
    thanks
    cheers

    ops
    i mean
    about the 1 screenshot
    can i have  the list
    caeram data exit
    iptc core
    camera raw
    file properties
    second screeshot
    can i have the filter list
    aperture value
    exosure time
    file type
    keywords
    and so on
    thanks

  • Customize Sort Order

    I would be thrilled if I could sort my albums by artist, and then by date released, especially in the cover flow. This way, albums appear in the order they were recorded for each artist.
    By default, it appears albums are sorted by artist but I can find no way to order albums for a particular artist.
    I'm pretty sure iPod knows the release date. Any chance it could be used for sorting?

    Only one way to sort!
    And it's different to iTunes!
    It beggars belief on what is supposed to be a state of the art system.
    My taste in music is sufficiently wide to make sorting alphabetically by artist about as useful as sorting by size of text on sleeve notes.
    Is it really to much to ask to be able to sort hierarchically by genre, album, artist (for classical music) and maybe genre, artist, album (for pop, rock, etc). You know, like they do in real record shops.
    Coverflow is such a brilliant concept it's one of the reasons I went iPod iTunes. What a shame that it's like trying to find a record in the pile spread over the floor after a really good party.

  • Customize sort disappeared after adding a column structure

    Hello BI experts,
    When the users want to add a hierarchy in column, the customized sort in rows is removed   (see example)
    After :
    Is there a patch to correct this issue ?
    For your information, we are in BI 4.1 SP2 patch 6.
    Regards,
    Nicolas

    Hello Ian,
    Thank you for your answer and sorry for hard copies.
    these is new one :
    The sort is not coming from BEX but made directly in analysis (by drag and drop)
    That's why you don't see sort icon.
    I tried  in Analysis for Excel but unfortunalty it's not possible to manage customized sort like in web.
    Thank you in advance for your help.
    Regards,
    Nicolas

  • Creating a PDF that is customizable/interactive for different companies and representatives

    I am rather new to Adobe, however I am able to use most of the software (illustrator, indesign, Photoshop, LiveCycle)  just fine.
    My issue is I am not sure which program/technique I should use for an interactive PDF I need to create.
    I am trying to create a PDF document that will be around 50 pages.  This document I will distribute to representatives in my company who work for many different financial institutions.  I somehow want to create this PDF for them to be able to customize by inserting their financial institution's logo and date to the footer and insert their name to title page (and any other applicable pages).
    If possible, I was hoping there was a way to include a page where our representatives could select from a checklist which of the 50 pages of the PDF they wanted to include in their document.  The representatives also are not that tech savvy and think just telling them to delete the pages from the PDF could cause potential problems.  Also a checklist would be simple and look much more professional. 
    The representatives would not have access to any Adobe design software, so the final document would have to be some sort of interactive/customizable PDF through Acrobat. 
    I am kind of lost as to how I can create this PDF and so if anyone can point me in the right direction I would greatly appreciate it!  It's also possible I may be in the wrong program forum.  So apologize if I am.
    Thanks!

    This can be done using Adobe Acrobat yes.
    You need to decide how many uses this item will get. The reason is you have to specially enable the forms so that the users can use Reader to save the changes afterwards. These enabled files have use restrictions. You can send them to 500 people and they can use them as many times as they want or you can send them to as many people as you want but can only collect the item back 500 times.

  • I just updated to Firefox 4 and my Roboform toolbar disappeared. Following the instructions on your site and Roboform's site did not help. It doesn't appear in the Customize Toolbar window nor in the Extensions list. How can I get it back?

    I followed the instructions on your site and Roboform's site, but Roboform doesn't appear in the Customize Toolbar window nor does it appear in the Extensions list. How can I get the Roboform Toolbar back?

    Here's an interesting bit: iTunes will let me restore my iPod touch from backup: it's still running iOS 4.3.3. I figured as much... there's backups showing in the Preferences -> Devices list for both devices (and even my old, long gone iPod touch 2G), but my iPhone (on iOS5) isn't giving me any such option. I remember I had to downgrade before to get the backup restored (something went haywire in the setup assistant, and I couldn't restore a backup from iTunes there)... If it was possible to go to iOS 5.0 rather than 5.0.1 I would just do the same thing again, but iOS 5.0.1 isn't an option. I attached a screenshot. Hopefully Apple can get this nonsense sorted out; I think iOS 5 might be the root of this, somehow.

  • With Reports 10G can you customize you message and stop formatting?

    Oracle, states to come here for answer. they said, OTN should be able to help.
    If any one knows how this can be done can you please help me out?
    thanks,
    We were told this was fixed with 10G so we upgraded to 10G. We have a
    report and we want it to execute if it's less than 10 records if not we want a
    message to come up that the report needs to be scheduled.
    Well we run the report and it displays exceeded record count but the format
    still runs so no time saved on the web.
    If the record count was exceeded we want to HALT the system and not go any
    farther.
    Now if we could modify the system message 1825 we would be o.k. But we don't
    know if that is going to work. If we could change the message we would be
    o.k. with that. that would mean changing the system codes though.
    ### How is the Report being called (Command line, URL or via Oracle Forms): ###
    If false comes back in the beginning then we don't want any report formatting
    to be done. Right now the format is done it seems but no data is displayed
    because criteria isn't met.
    So we dont wnat the formatting to be run when criteria isn't met. But for
    some
    reason it still runs and takes time.
    See we have some reports on the web that can only be ran by date range right
    now the clients can only run the reports for a 6 months range.. Well some
    clients have a lot smaller record count. So we want to change the way the
    reports are ran to a records count. If the count is large than said amount
    then a message comes up that states the report has to be scheduled. If the
    amount is under said amount then the report runs.
    So at this time in the report we do a count then we move onto will the report
    run or not if over the amount we want to abort the process but we don't want
    the client to see the abort. We definately don't want the client to sit and
    wait for the format to run when NO Data is to be returned.
    ### Error messages and error scenario: ###
    So what we want is too see a message "Schedule the report count exceeded" and
    NO formatting done. If under amount we want the report to run.
    ### Provide a detailed step-by-step description of your problem or question: ###
    Or is there a way to customize the messages the client / users will see. And
    no formatting time for no records returned.
    Contact me via : E-mail -> [email protected]
    Text continued in next action...
    20-SEP-04 18:39:53 GMT
    Text continued from previous action...
    20-SEP-04 19:18:51 GMT
    New info : Is there a way if the error messages have to come up that we can
    hide the message or have another screen cover that error message something to
    cover the message so that the user doesn't see the error message.
    20-SEP-04 19:30:23 GMT
    Hi Darlene,
    Thank you for using MetaLink. Iam currently working on a very critical issue.I shall review/research your issue at the earliest opportunity and w
    ill update the SR / call you as soon as we have relevant information. Thank you
    for your patience.
    Best Regards,
    Seema,
    Oracle Support Services
    STATUS
    =======
    @WIP -- Work In Progress
    20-SEP-04 19:30:30 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 00:32:18 GMT
    Hi Darlene!
    If you are calling the report from a form, try using the EXIT_FORM line in your code.
    Thanks and Regards,
    Seema
    21-SEP-04 00:33:01 GMT
    Email Update button has been pressed: Sending email to [email protected]
    21-SEP-04 14:09:20 GMT
    New info : We will try it and let you know.
    21-SEP-04 14:19:04 GMT
    New info : We are not calling the report from a form so this won't work. Any
    other way. We are needing to do this badly.
    21-SEP-04 14:39:06 GMT
    New info : Can I get detailed steps about how to customize the system message
    or hide the message when we abort the report?
    21-SEP-04 15:38:39 GMT
    Hi Darlene!!
    As talked to you on phone, here are the steps for you to try.
    The below has been run as a test case using emp table in scott schema of a database
    1) create a summary coloumn say cs_1 in the data model.
    2) point the function to count.
    3) Point the source to what ever's count you want it to be pointed to(say empno of emp table of
    scott schema)
    4) create a user parameter say NO_ROWS
    5) in its property palette make its data type number and initial value as 1
    6) I had teh following query for my report:
    select empno, ename from emp
    where rownum <= :no_rows
    This means that the report that will be generated will consist of a total no of NO_ROWS(that we
    shall be specifying at run time). The before report trigger(mentioned in 7 below) shall assure
    that whenever we specify NO_ROWS greater than 5 then the report will display a customized pop up
    message.
    7) create a before report trigger as:
    function BeforeReport return boolean is
    user_excp EXCEPTION;
    begin
    if :cs_1 >5 then
    raise user_excp;
    return (false);
    else
    return true;
    end if;
    EXCEPTION
    WHEN user_excp then
    SRW.MESSAGE(30, 'Data is more please schedule this report:');
    raise SRW.PROGRAM_ABORT;
    return (false);
    end;
    This way when u run a report, an argument is asked whether how many rows do you want to be
    displayed as in the parameter NO_ROWS. then you specify the number. If that number is greater
    than 5(in this case, due to if :cs_1 > 5 then....) then it will pop up a message saying "Data is
    more please schedule this report:"
    In case you do not want to specify NO_ROWS..then you need not put that and modify the report
    query as "select empno, empname from emp;" i.e. without where clause.
    21-SEP-04 16:49:30 GMT
    New info : we will try this then update the TAR.
    21-SEP-04 16:58:09 GMT
    ok you update the tar when you try the above steps.
    STATUS:
    @CUS
    23-SEP-04 02:16:00 GMT
    New info : Information from the person that did this suggestion step by step.
    I tried this step by step, but unfortunately, it doesn't work the way we want.
    First with this suggestion, the user needs to choose how many records they
    want
    to get, or we default a number of records, in order to run the report. The most
    important thing is, whenever you specify the statement return false or raise
    SRW.PROGRAM_ABORT in the before report trigger, the system message will pop up.
    I really hope that people from Oracle would let us know how to customize the
    system message or hide it.
    23-SEP-04 14:23:04 GMT
    New info : I just thought that we have some sort of message, which I guess is
    from the database, when we do claim search on client inquiry. I am just
    wondering if we could try the same thing to the report.
    The some sort of message looks like this on dev box:
    Your search exceeded 5000 records and will surpass the capabilities of this
    connection. Please narrow the search criteria and resubmit.
    It's just a thought, not sure if it's going to work.
    When could we have the DBA Make this change. The servlet.properties???
    23-SEP-04 17:30:55 GMT
    REQUESTED INFORMATION PROVIDED
    ===============================
    Hi Darlene,
    Thank you for providing the requested information. I am currently reviewing/resea
    rching the situation and will update the TAR / call you as soon as I have additi
    onal information. Thank you for your patience.
    Best regards,
    Ajit
    STATUS
    =======
    @WIP -- Work In Progress
    23-SEP-04 18:04:31 GMT
    UPDATE
    =======
    Hi Darlene,
    We cannot modify the system messages nor do I think there is a method to hide the system message. The message that was coming is
    due to the raise srw.program_abort command, which is the element through which
    we can abort the program.
    Thanks
    Best Regards
    Ajit
    @CUS
    23-SEP-04 18:29:26 GMT
    New info : Can you please look into a way that we can get something to work?
    23-SEP-04 18:49:28 GMT
    Hi Darlene,
    I am sorry to say that but I don't think there is any any workaround to this because the system message is what is generated by the oracle reports i
    nternally. Still if you wish you may refer to the otn discussion forum which is
    maintained by teh product management group and post a new thread on it. the link
    to the forum is Reports
    Also since nothing can be done on our side I don't see any reason to keep this TAR open an
    d if you wish we can soft close this.
    Thanks
    Regards
    Ajit.
    New info : Shouldn't there always be a way to do something? I don't understand
    why we were told in 10G that this could be done and now we are told it can't.

    K T wrote:
    Yep - not nice...unless you do a TE 'Get Info' in the Finder and √ the 'Open in 32-bit mode' box and try again...then, all seems well in snow leopard land.
    Really? I figure since I have a Core Duo chip, everything always opens in 32-bit mode. In any case, I did file a bug report and will give your suggestion a try later today.

  • Display Month verbiage on chart but sort by month number

    Hello,
    I have inserted a simple bar chart (values by month for a single year) and my goal is to get the data values to group by month.
    I found that I can achieve this by using a formula that extracts the month from my Date/TIme field MONTH({Command.OB_DELIVERY_DATE}).
    This works OK and displays months as 1, 2, 3,  etc. on my chart), but I want to display the month text instead (Jan, Feb, Mar)
    I tried a second variable:  ToText({Command.OB_DELIVERY_DATE},'MMMM')
    This works in displaying the verbiage of the months, however, the problem is that it groups the months on my chart alphabetically now (April is now my 1st month instead of January).
    What is the trick to displaying month verbiage on my chart, but still sorting these months in their proper numerical order?
    Many Thanks!

    Hi Dave,
    Try this please:
    1) Insert a Crosstab and place it on the Report Header. Use the Delivery Date field as the row and add the measure field as the Summary Field with the right Sum function
    2) Highlight the Delivery Date field > Group Options > set it to print 'For Each Mointh'
    3) While in the Crosstab Expert highlight the Delivery Date field > Click Group Options > Options  tab > check the option 'Customize Group Name field' > Select 'use formula as group name' and click the formula button beside. Use this code:
    ToText({Command.OB_DELIVERY_DATE},'MMMM')
    4) Right-click the Crosstab and select Insert Chart. Choose the right Chart Type
    5) Suppress the Section that holds the Crosstab
    Hope this helps.
    -Abhilash

  • Unable to Customize SharePoint 2013 Discussion Board

    Hi,
    We are trying to customize SharePoint 2013 Discussion Board app and are unable to modify existing Flat, Subject, and Threaded views or create new views.  Following are the error messages we are getting:
    *** Error message when creating new views based on view types Subject, Flat, or Threaded:
    TypeError: Unable to get value of the property '0': object is null or undefined
    Note that when creating the view no options are available (only option to name and make default are available).  The view created after display of this error message does not have any Columns, Sort, Filter or
    other properties defined.  Manually defining these properties does not make the view function as desired (Flat view is not flat).
    *** Error message when editing existing default views Subject, Flat, or Threaded:
    Cannot complete this action.
    Please try again.
    Troubleshoot issues with Microsoft SharePoint Foundation.
    Note that this is nothing to troubleshoot or error number provided.  The URL shows /_vti_bin/owssvr.dll?CS=65001.  Also, the edit screen does not show any view property to change.
    Note that both ability to edit existing views and create new views work in SharePoint 2010.  This issue is with SharePoint 2013.  Please guide to resolve this.  View in other apps can be edited. 
    This issue is only with the Discussion Board app. 
    -Thanks, Maqsood.

    You will not be able to modify the default view in SharePoint 2013 i.e. Subject/Flat or threaded. However you can create a new view based on your requirement and use it.
    When you try to create new view, the fields will not be available for you to select during creation of view, instead create a view with proper name, once the view is created, go back for modifying the new view and you will have the fields available for selection.
    Note: Make sure you have mandatory CU installed on the farm.
    Raghavendra Shanbhag | Blog: www.SharePointColumn.com
    Please click "Propose As Answer " if a post solves your problem or "Vote As Helpful" if a post has been useful to you.
    Disclaimer: This posting is provided "AS IS" with no warranties.

Maybe you are looking for

  • To get path to source flat file

    Hi. I need to get file from remote server through scp. I've decided to use OdiScpGet tool. The remote path won't change, but local path could be changed dependent on dev and prod environment. So I need to get local directory from ODI topology. I made

  • Help:  How to get rid of the default None from Radio buttons?

    Hi, I searched the forum and found a work around for inputSelect. It seemed it does not work for Radio buttons, i.e., inputSelectGroup with multiple=false. Please anyone help us to get rid of the none choice for gender among female and male. Thank yo

  • Freeing up Memory During CFFILE

    I have a process that generates flat files using CFFILE. The process uses a database reference table that feeds the query parameters. I have several loops in this process which I thought would be more efficient and free up memory after each CFFILE "a

  • How to OPEN / Access .SAP files?  .SAP File extension!!

    I have downloaded SAP Classic English Training (CU44), inside the archive are a lot of .SAP files.  How do you open / play these files? .SAP  -  These are all SAP Education Content.  Here is label.asc SAP KW 4.0 - 7.0 Content Update No. 40 December 2

  • How to edit a rectangle

    I haven't been using fireworks very long and I need help editing the corners of a rectangle. My client wants the left corners of the rectangle to "fly out" up and down, just slightly, at the corners. In other words, he basically wants an inverse of r