Suggestions for sorting dates

Hi everyone,
Im in need of sorting a few Date objects in descending order.
I was thinking of storing them in some sort of vector/array but not sure how i could swap the objects in those positions.
eg. if date at vector.elementAt(4) > date at vector.elementAt(0) swap positions.
What would you people recommend i use to sort dates?

i've been trying to add dates to an array but its not adding for some reason. here is a bit of my code:
         Date[] dates = new Date[500];
                       z = 0;
               for (x=0;x<books.size();x++)
                  for (y=0;y<((Book)books.elementAt(x)).transactions.size();y++)
                     if ((((Transaction)((Book)books.elementAt(x)).transactions.get(y)).memberID).equals(memberID))
               dates[z] = (((Transaction)((Book)books.elementAt(x)).transactions.get(y)).dateRent);
                        z++;
                        System.out.println (dates[z]);
               }i know the dates are not adding to the array because when i try to print it out i just get null. and i know there is no problem with the dates im trying to add because i can print them out fine.

Similar Messages

  • UDF for sorting date

    Hi Guys,
    I am doing scenario File to Idoc, i have to sort date in acending order, the date format will be in either 22.10.2007 or 22/10/2007 . can any one send UDF for this.
    Regards,
    venu gopal

    Hi Venu
    You can execute this without UDF. Use " Transform" function in the Date functions.
    When you are using the UDF....you keep the strucure as "yyyMMddhhmmss" for that clickon Trnasform function and there you can see ShowAdvancedProperties...there u can find the format of the source which you are expecting and also change the strucutre of you target expected format.
    You please try this and check the mapping it will get execute.
    Use Standard Date Function DATATRANS. It have the property for format and input is the source date field. It will convert the date format to required specified format which you menstion in the DARTATRANS function
    for UDF
    Re: UDF  for this mapping rule
    Re: Problem in UDF please Help?
    Thanks!

  • Need suggestions for imporving data load performance via SQL Loader

    Hi,
    Our requirement is to load 512 (1 GB each) files in Oracle database.
    We are using SQL loaders to load files into the DB (A partitioned table) and have tried almost all the possible options that come with sql loaders (Direct load path, parallel=true, multithreading=true, unrecoverable)
    As the tables is growing bigger in size, each file load time is increasing (It started with 5 minutes per file and has reached 2 hours per 3 files now and is increasing with every batch- Note we are loading 3 files concurrently on the target table using the parallel = true oprion of sql loader)
    Questions 1:
    My problem is that somehow multithreading is not working for us (we have multi CPU server and have enabled multithreading=true). Could it be something to do with DB setting which might be hindering the data load to be done in multiple threads?
    Question 2:
    Would gathering stats on the target table and it's partitions help improve load performance ? I'm not sure if stats improve DML's, they would definitely improve sql queries. Any thoughts?
    Question 3:
    What would be the best strategy to gather stats on this table (which would end up having 512 GB data) ?
    Question 4:
    Do you think insertions in a partitioned table (with growing sizes) would have poor performance as compared to a non-partitioned table ?
    Any other suggestions to improve performace are most welcome !!
    Thanks,
    Sachin
    Edited by: Sachin Tiwari on Mar 13, 2013 6:29 AM

    2 hours to load just 3 GB of data seems unreasonable regardless of the SQL Loader settings. It seems likely to me that the problem is not with SQL Loader but somewhere else.
    Have you generated a Statspack/ AWR/ ASH report to see where all that time is being spent? Are there triggers on the table? Are there bitmap indexes?
    Is your table partitioned in a way that is designed to improve the efficiency of loads so that all the data from one file goes into one partition? Or is data from each file getting inserted into many different partitions.
    Justin

  • Sort data Date wise(YYYY-MM-Date) in BPEL output

    HI,
    Can any one help me, how to write code for sort data Date wise(YYYY-MM-Date) .
    I pass the input as Name from the service wsdl(Exposed Services) and its call the third party service(External References) , its return the output like below one,
    Name:Vodafone
    Pole:INdia
    End Date:2012-05-12
    Name:Airtel
    Pole:USA
    End Date:2012-05-13
    Name:Uninor
    Pole:Canda
    End Date:2020-10-13
    Name:Celltell
    Pole:INdia
    End Date:2011-03-21
    Above o/p in Random way, but i need this one in sort data date wise.
    Finally i need output based on the latest End Date..
    like,
    Name:Uninor
    Pole:Canda
    End Date:2020-10-13
    Name:Airtel
    Pole:USA
    End Date:2012-05-13
    Name:Vodafone
    Pole:INdia
    End Date:2012-05-12
    Name:Celltell
    Pole:INdia
    End Date:2011-03-21.
    Could you please help me the format of code, and where to i implement this one. its very urgrnt.
    Regards,
    Harsih

    Hi
    Sukanya,
    Thanks for ur quick replyy, i fetch data from external reference onlyy. If i fetch data from DB what u said its exactly right.
    Re: Sort data Date wise(YYYY-MM-Date) in BPEL output 

  • Efficent method to sort data from tab delimited text file

    I am currently writing a program to sort through data that was acquired and display it on a graph and some other indicators.  The file is a tab delimited text file with possibly 100,000s of data points.  the current method that I have tried using was that if I wanted all of the data from Oct, I would parse out the month from the timestamp, compare that to the desired month, and add it to the array if it is the same.  Other possible options of sorting are yearly and daily, possibly even hourly.
    The method does work, however it does take some time (up to a minute on a P4 3.6 GHz with 2 gb ram), and most of the other computers are not nearly as fast or with as much memory.  Is there a more efficent method to sorting the data??
    I attached my sorting vi as well as a sample data file.
    thanks for the advice.  It is saved in LV8.0.1
    Kenny
    Kenny
    Attachments:
    data sort.zip ‏84 KB
    oven1.txt ‏21 KB

    First of all, "sorting" has usually a different meaning (Sorting and numeric array ascending or descending, a string array aphabetically, etc.). Your data already seems sorted by date and time, you just want to pick a subset having certain characteristics.
    The main problem that is slowing you down is your constant growing of large arrays. This causes constant memory reallocations.
    Since your data is already sorted by date and time, all you need is to place your data in a sutable data structure, find the start and end point of your selection, then use "array subset" for example.
    Your code also seems to have a lot of unecessary complexity. See for example your "test for sort data" (see image below).
    the four cases only differ by filename --> only the file name belongs into the case and the file operation outside the inner case. Even better, just use autoindexing.
    that shift register does not do anything, because it always contains the same data. Using "index array" with index wired to [i] is equivalent to an autoindexing tunnel.
    You have a case structure to select which files to read, skipped files give you an empty array. Do you really need to do all these operations on an empty array. Why not place all code inside the TRUE case??
    Below is an image of one possible code alternative that addresses some of these points.
    Message Edited by altenbach on 10-26-2006 09:32 AM
    LabVIEW Champion . Do more with less code and in less time .
    Attachments:
    testForSortData.png ‏33 KB

  • MRP is not considering material availability dates for sorting customer ord

    Hello Experts,
    MRP is not considering material availability dates for sorting customer order/ sales order in sequence (thatu2019s is oldest from newest in order) in MD04.
    Please suggest.
    Thanks,
    Om

    Om,
    No.  Aside from my obvious desire to preserve my privacy, it would be a disservice to the other forum members.  No-one else but you and I would understand your problem, and no-one else but you would be able to benefit from any solutions. 
    There are dozens of free public portals suitable for posting pictures on the internet.  I suggest that you use one.
    Best Regards,
    DB49

  • Need Suggestion for Archival of a Table Data

    Hi guys,
    I want to archive one of my large table. the structure of table is as below.
    Daily there will be around 40000 rows inserted into the table.
    Need suggestion for the same. will the partitioning help and on what basis?
    CREATE TABLE IM_JMS_MESSAGES_CLOB_IN
    LOAN_NUMBER VARCHAR2(10 BYTE),
    LOAN_XML CLOB,
    LOAN_UPDATE_DT TIMESTAMP(6),
    JMS_TIMESTAMP TIMESTAMP(6),
    INSERT_DT TIMESTAMP(6)
    TABLESPACE DATA
    PCTUSED 0
    PCTFREE 10
    INITRANS 1
    MAXTRANS 255
    STORAGE (
    INITIAL 1M
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    LOGGING
    LOB (LOAN_XML) STORE AS
    ( TABLESPACE DATA
    ENABLE STORAGE IN ROW
    CHUNK 8192
    PCTVERSION 10
    NOCACHE
    STORAGE (
    INITIAL 1M
    NEXT 1M
    MINEXTENTS 1
    MAXEXTENTS 2147483645
    PCTINCREASE 0
    BUFFER_POOL DEFAULT
    NOCACHE
    NOPARALLEL;
    do the needful.
    regards,
    Sandeep

    There will not be any updates /deletes on the table.
    I have created a partitioned table with same struture and i am inserting the records from my original table to this partitioned table where i will maintain data for 6 months.
    After loading the data from original table to archived table i will truncating the original table.
    If my original table is partitioned then what about the restoring of the data??? how will restore the data of last month???

  • Date Format for Spry data set sort

    Hi
    Just feeling my way through the use of Spry Datasets for the
    first time and have a couple of issues hopefully someone with more
    knowledge of it than me know the answer to.
    I had an issue with my Spry Dataset initially that it would
    not work in ie7 but was OK in FF3.
    After some mucking round I realised the error I was getting -
    albeit obscure in IE was telling me it was a date format issue in
    my data set.
    The db data I am playing with here is fairly simple: I have a
    couple of text fields, an integer field that contains the
    unixtimestamp of the entry (its a simple diary application) and a
    formal date field that holds the same date in mysql's date format.
    When I display the date in the dataset I do so in the format
    "23rd May 2009" (as an example)- I code this using phps date
    function in my xml query.
    I had set this field to date format in the Spry dataset
    conditions but IE seems to barf on this- I can change it to
    textstring but then my sort is done on Alpha/Numeric sort of the
    first character in the date field which is rubbish.
    I only display the date in this format and one of the other
    text fields in my dataset- the unixdate is for programmatic
    purposes not general display so I cannot sort on this field if its
    invisible. How can I acheive a date based sort with this set up- or
    what date formats does Spry code prefer for date sorts? (My client
    wants the date to show as I have explained). Many thanks. I have a
    second query which I will post separately!
    Kenny

    "Tanushiheadbash" <[email protected]> wrote
    in message
    news:gqa70o$iat$[email protected]..
    > I think I follow what you are saying and in fact I think
    its what I
    > already
    > have. I have set the sort order to use the unixtime when
    the page
    > initially
    > loads and thats OK.
    I am sorry, but you aren't following my explanation. English
    isn't my mother
    tongue, and I am not able to explain it any better.
    > However what I need to be able to do is to have the
    AJAX/Javascript sort
    > (done in this case with Spry- ) to sort on the date when
    the column header
    > is
    > clicked. The problem I have is the date format in this
    visible column is
    > in
    > DDth Month YYYY format and Spry does not recocnise this
    as a date format-
    > it
    > wants it as a string ( or ie gives an error). Maybe its
    not possible what
    > I am
    > trying to do- just thought there might be a clever way
    to implement this.
    You can take a look at this page:
    http://visual.unipv.it/tmt_calendar/admin/reports/events.cfm
    Even if all the dates here are incidentally using the
    yyyy-mm-dd format, the
    dataset display the date from the "start_date_formatted"
    field:
    <td><a href="javascript:"
    onclick="showUpdate('{event_id}')">{start_date_formatted}</a></td>
    But uses another field to sort the table:
    <th scope="col" spry:sort="start_date">Start
    date</th>
    You can have the same date, using two different formats,
    inside two,
    separated dataset fields. One is used for display, the other
    one is used for
    sort.
    You may try to read again my previous explanations, look at
    the code in the
    page above and see if you get the idea.
    Massimo Foti, web-programmer for hire
    Tools for ColdFusion, JavaScript and Dreamweaver:
    http://www.massimocorner.com

  • Supported date formats for sorting

    Can someone point me to a document describing the supported
    date formats for sorting? I mean, how should I format a date column
    in an XML dataset in order to have this column correctly sorted
    using the Spry framework?
    Thank you and sorry if the question is trivial.

    Thanks, what I have done for the moment as a temporary
    solution is to use the two date formats and have them both inside
    the one cell in the table (the column for the sortable date
    yyyy-mm-dd). In my CSS I have created a style for the first date
    that has it's visibility as hidden. That way it's sorting the Date1
    but only Date2 is being shown to the users as the other cells have
    more than one line of text it doesn't look too off centre.
    <div spry:region="ds2">
    <table width="662">
    <tr>
    <th width="127" class="eventhead"
    spry:sort="Date1">Date</th>
    <th width="151" class="eventhead"
    spry:sort="Type">Type</th>
    <th width="146" class="eventhead"
    spry:sort="Title">Title</th>
    <th width="189" class="eventhead"
    spry:sort="Venue">Venue</th>
    </tr>
    <tr spry:repeat="ds2" spry:setrow="ds2">
    <td height="53" class="event">{Date2}<span
    class="eventhide">{Date1}</span></td>
    <td class="event">{Type}</td>
    <td class="event">{Title}</td>
    <td class="event">{Venue}</td>
    </tr>
    </table>
    </div>
    </div>
    It seems to be working for the moment...

  • Excel14.4.7 (Excel for Mac 2011); can't sort data

    Upgraded to Excel for Mac 2011 (v.14.4.7) and cannot sort data. Have read instructions but keep getting error message "missing column/row name"
    Tried doing it with box checked "My list has headers" and with the box unchecked....same non-result and error message.
    I'm doing something wrong, obviously but can't figure it out. I am totally mystified & frustrated!
    any ideas????
    Thank you
    Rose

    This may be a related issue and fix:
    https://discussions.apple.com/message/26086328#26086328

  • BIA Test: Suggestion for creating enormousTest Data for Infocubes

    Hi,
    I need to create some enormous amount of data for infocube in order to test BIA.
    I don't think my basis team will allow me to load data from Production to Sandbox and moreover production has less than 250 millions records.
    Any suggestion for 250 million records?

    Hello,
    Just an idea. If you can load a minimum of data for your cube then it is easy.
    You just have to generate for your cube for instance a datasource and then create some update rules to loop on your data.
    a. generate export datasource
    b. map it to your infosource
    c. define some update rules to ensuere your data will be different. For example in the start routine.
    Hope it helps.
    Patrice

  • Technology and training suggestions for data gathering app

    Can anyone suggest some technologies and/or support to get us started on a mid-sized handheld effort?
    Specifically, we're starting a project to build a handheld (WinCE-based) app which will allow users to fill out a short form and gather a GPS reading and perhaps a camera snapshot to accompany the form data. This data will later be imported into our J2EE app.
    We have almost no handheld experience and don't know what technologies to evaluate, or what consulting expertise to set up to help start the team.
    Many thanks for your help!

    Hi Adam,
    I'd suggest to implement it in a way that will be the fastest to deliver
    working code, except the case when the main purpose of the project
    is teaching you EJB, Weblogic and J2EE.
    For this particular problem that could a session bean making
    direct JDBC calls. It's just 5 lines of code...
    Regards,
    Slava Imeshev
    "Adam Harvey" <[email protected]> wrote in message
    news:3d1c7466$[email protected]..
    >
    I'm new to the WebLogic arena, and we're launching a new portal. We'vegot a portlet
    that I want to query a SQL Server database for three records (specificallyonly one
    column for the three records, that I want to concatenate). This data isupdated
    approximately every four hours via an outside admin tool.
    Looking for suggestions for the best way to implement this.
    We don't need to constantly query this data, but it may also be overkillto persist
    this data in a full entity EJB. I began to write a read-only entity EJBthat I figure
    I could specify it's refresh interval in the deployment descriptor. Isthere a better
    way? In a previous app, we were simply querying the database, storing astring (~1000
    characters) in an application scope in memory, along with a date variable,and for
    each user just checking the date variable. If the date was over fourhours ago,
    we requeried the database with a component call (Microsoft COM). I'dprefer to reduce
    even the RMI lookup for the bean if I can, but I don't think I grasp quiteenough
    about the EJB pooling mechanism -- this might not be an issue.
    Could I do this in a stateless session bean more efficiently?
    We're running WLS6.1sp2 in a dev environ with Portal4.0sp2. (But upgradingto sp3
    soon.)
    Any suggestions would be appreciated! Thanks!
    - Adam

  • Just updated to new iOS 6 on iPhone 3G. Get 'can't connect to iTunes' message. Tried the setting date and time trick but still no success. Any suggestions for 3G iPhone?

    Just updated to new iOS 6 on iPhone 3G. Get 'can't connect to iTunes' message. Tried the setting date and time trick but still no success. Any suggestions for 3G iPhone?

    also must mention i have never had trouble that i couldn't fix on itunes but all of this has started since i have been using icloud for basic backups hope this helps solve problem

  • Suggestion for Improving Number

    Hello Oracle Java community,
    I've recently encountered some difficulties using the abstract class java.lang.Number, and have a suggestion for improvement.
    I'm writing a class that computes statistical information on a list of numbers - it would be nice to not couple this class to Integer, Double, BigDecimal, or any other wrapper by using generics. I saw that there is a nice superclass that all Number objects inherit from.
    I came up with:
    public class Statistics<T extends Number> {
    private List<T> data;
    // statistical data that i wish to find and store, such as median, mean, standard dev, etc
    public synchronized void setData(List<T> data) {
    this.data = data;
    if (this.data != null && !this.data.isEmpty()) calculateStatistics();
    private void calculateStatistics() {
    // Welcome to instanceof and casting hell...
    h4. It would be nice to have richer functionality from the Number class, say to do mathematical operations with them or compare them.
    h4. After all, in the real world it is possible to do so.
    h4. Real numbers are much like BigDecimal. Why not take the idea of BigDecimal, and make that the parent of Integer, BigInteger, Double, Short, Byte, Float (I'm probably forgetting a few)? All of those are limited forms of real numbers. It would make comparison between Number datatypes easy, would probably remove all of that duplicated arithmetic code between all of the children of Number, and also allow Numbers to be used in powerful generic ways. The parent/replacement of BigDecimal could even be named RealNumber, which stays true to its math domain.
    As a side note, I'm solving this problem by taking an initial step to convert the List<whatever type of Number that the user enters> into a List<BigDecimal> by getting the toString() value of each element when cast as a Number.
    private List<BigDecimal> convertData(List<T> data) {
    ArrayList<BigDecimal> converted = new ArrayList<BigDecimal>();
    for (T element : data) {
    converted.add(new BigDecimal(((Number) element).toString()));
    return converted;
    Criticism is always welcome.
    Thanks for your time and thoughts.
    -James Genac

    How compareTo() came into existence is from Comparable interface. As I understand, Comparable came into existence since Collections API has sorting functions - which needs to be run with a matching Comparable object that knows how to determine which element is larger than the other (not limited to objects representing numbers, you might sort a list of Persons). Hence, compareTo() is not solely meant for the comparison of numbers. Existence of the method in BigDecimal is just one case.
    Subclasses can override the equals() method, but that cannot be implemented in a cleaner manner and leads to a very poor design. For example, you might want to compare an Integer and a Float. So the Integer class's equals() method need to have some if-else structure to determine the other type and then compare. Same holds true for the Float class's equals() method as well. Ultimately, Everything becomes a mess. All subclasses of RealNumber needs to know about all other subclasses of RealNumber. And you will not be able to introduce new subtypes and expect the equals() method to work correctly.
    To avoid this, you need to depend on a single representation form for all types of numbers. If that's the case, you might just live with something like BigDecimal and not use Byte, Float, Integer,... (which we kind of do in some cases - for example to represent monetary amounts). So we can live without Byte, Float, Integer,...
    Then we need some utility classes that would contain some number type specific functions to work with primitives. So we will also have Byte, Float, Integer... unrelated to BigDecimal.
    Clearly, the wrapper types are there not because of the need to represent real world number types, but because of the need to represent computer domain number types. Hence, they have been organized not according to relationships found in real world number types. Many of us find this way of modelling sufficient and have an understanding about the limitations. But if you need to model the real world number relationships for some special reason, you might write some new classes. Then again there will be real world aspects that you will not be able to model easily. So you will model some aspects and neglect the other.

  • Suggestions for 808 PureView and Symbian Belle

    Hi friends,
    I am a proud owner of astounding (and worst marketed extra-ordinary device) 808 PureView. Biggest compliment to it is that it has replaced my SGS2. Yes, truly.
    After using 808 for some time now I am quite happy but disappointed with certain things. Few things are so minor that I am surprised why Nokia removed it or didnt implement.
    So here I am presenting a list of things which I would request Nokia to fix or implement. I will also request all of you here to add to the list so that Nokia gets a direct feedback and can improve the device and software. Thanks !
    Camera:
    1. Slow shutter speeds
    2. Full resolution in various Scenes modes
    3. Pics with AutoFlash mostly comes dark in edges in Indoors
    4. Slightly faster Auto-Focus with soft shutter button
    Gallery:
    (I know about other thread but this is a consolidated list)
    1. Batch functions (send, share)
    2. Albums
    3. Folders
    4. Tabbed interface (All, Images, Videos)
    5. Sort by Date, Name, Type, Size, Location, etc.
    6. Send via NFC option (everybody does not read Manual )
    7. Ability to trim parts of video (and to join parts, if possible)
    Contacts:
    1. Labels please !!!
    2. Thumbnail view (atleast in Groups)(could be first-ever. Android has partial implementation)
    3. Contacts with latest Social updates(tweets or Facebook activities) to come second-top after Favourites (convenient and another first)(switch on-off from Settings)
    4.  Additional Tab in Contact's view showing all communication with him/her (Calls, E-mails and Messages)
    5. Another optional Tab showing his/her last 5 Social updates
    Messaging:
    1. Tabbed interface (Conversations/Folders/(optionally) E-Mails)
    2. Forward icon alongside Reply icon
    3. Individual Contact's SMS\Email tone (such a little but practical feature)
    Telephony:
    1. Detailed Call log (Settings>Extended View)
    2. Video Call button
    E-Mail:
    1. E-Mail Popups (probably with Reply option)
    2. Cleaner tabbed interface
    3. Pinch-to-Zoom and Wrap function
    4. Archive option in GMail mails
    5. Go to next email after deleting and not the Inbox (its really annoying)
    Videos:
    1. Large Thumbnail option
    2. Better support for Matroska (mkv)
    3. Better subtitle support (black fonts???)
    4. Options for Brightness and Contrast
    Music Player:
    1. Folders Tab
    2. Editable equaliser
    I again request to provide suggestions and I will add them in OP (with your name). Lets help Nokia make great OS and Product even better. And in my experience, they have always seriously listened to their customers and brought the improvements.
    Good Luck !

    Nokia thank you for last updates..the 808 is quite perfect now!!
    Let's update some last suggestion for Nokia
    Camera:
    1. Slow shutter speeds / FULL Shutter priority mode (with flash and auto/manual ISO....i'm not able to use flash with high ISO and slow shutter speeds)
    2. Full resolution or 12MP / 8MP resolution in various Scenes modes
    3. Pics with AutoFlash mostly comes dark in edges in Indoors
    4. Slightly faster Auto-Focus with soft shutter button
    5. Flash EV Compensation
    7. (Hardware) Image Stabilization with low light
    8. better White Balance..more options..
    9. square (1:1) and 3:2 modes
    10. higher FPS available with low res videos
    11. Camera noise fix, lots of digital noise on the right side of the screen (purple cast) when taking pics in darker conditions without flash, something is interfering..
    12. nedd much better performance for the CAF in video mode, it doesn't work on FP2
    13. Lumia photo tools / add-ons: Cinemagraph lens, Smart Shoot lens, Panorama lens, Bing vision..
    Gallery:
    1. Albums / Folders
    2. Tabbed interface (All, Images, Videos)
    3. Sort by Date, Name, Type, Size, Location, etc.
    4. Send via NFC option (everybody does not read Manual )
    5. Ability to trim parts of video (and to join parts, if possible...improve VideoPRO please..audio editing!)
    6. Improve PHOTO Editing too, more controls (light/shadows, sharpness, fixed ratio for photo crop like 3:2 and 1:1, blur control..)
    Contacts:
    1. Labels please !!!
    2. Thumbnail view (atleast in Groups)(could be first-ever. Android has partial implementation)
    3. Contacts with latest Social updates(tweets or Facebook activities) to come second-top after Favourites (convenient and another first)(switch on-off from Settings)
    4.  Additional Tab in Contact's view showing all communication with him/her (Calls, E-mails and Messages)
    5. Another optional Tab showing his/her last 5 Social updates
    Messaging:
    1. Tabbed interface (Conversations/Folders/(optionally) E-Mails)
    2. Forward icon alongside Reply icon
    3. Individual Contact's SMS\Email tone (such a little but practical feature)
    4. More smart use of Words Suggestions in T9 Mode..priority for shorter words!
    (in Italian...i want to write "ON" and i touch ONLY the 6 button two times, but sometimes it suggests "NO" and/or longer words like "ONLY","NOBODY","NOTHING"...but not "ON"!! (In Italian language, i don't know if it does the same in English!)
    5. In conversation or with Whatsapp, in horizontal mode with QUERTY and Words Suggestions enabled, it's impossible to read the last messages during writing.
    6. much smaller text option
    7. in conversation view, the letter icon and the notification of a new message doesn't disapppear if you've only read the sms, without giving a reply! I suggest that a tap on the yellow letter icon on the right in conversation mode will change the sms status from unread to read
    Telephony:
    1. Detailed Call log (Settings>Extended View)
    2. Video Call button
    4. more notifications on notification bar
    5. improve social network apps and connections between gallery / notification bar and them
    E-Mail:
    1. E-Mail Popups (probably with Reply option)
    2. Cleaner tabbed interface
    3. Pinch-to-Zoom and Wrap function
    4. Archive option in GMail mails
    5. Go to next email after deleting and not the Inbox (its really annoying)
    6. Email notification like with missed calls or sms on the lockscreen.
    Videos:
    1. Large Thumbnail option
    2. Better support for Matroska (mkv)
    3. Better subtitle support (black fonts???)
    4. Options for Brightness and Contrast
    Music Player:
    1. Folders Tab
    2. Editable equaliser
    LET'S GO!!

Maybe you are looking for

  • Windows Vista 64 bit unknown error -69

    Can anyone help please - I've recently brought a new laptop which uses Vista 64 bit. I have downloaded itunes 8, however every time I open itunes or try to use a disk to transfer library from my old computer it gives me an error message 'An unknown e

  • Bug in WL9.1 JSP Engine?

    Hello,           I am working with JSP 2.0 documents (JSPX) and am trying to use the include directive to include another JSPX. However, if the included JSPX has <jsp:root> as its root element, the JSP compiler fails with the following message:      

  • ESS/MSS leave reques Enhancement

    Hi, I am trying to do some enhancement to ESS/MSS Development Component in the NWDS, but it is not getting reflected. can someone help me out to resolve this issue..?? Thanks Angshuman

  • Multiple Track Selects

    Hi, trying to hold shift / ctrl / etc. combis to use track select for multiple track selects (not track, but clip on track and all following clips as well on that track) it'll always select all existing tracks ... so I can't yet be selective. Is ther

  • Jumbled ad image shows up on transparent backgrounds

    On any page with a transparent background, a jumbled image from an ad shows up. It also peeks out through transparent parts of images etc. and won't go away even if I kill Firefox and restart it. A picture is [http://thsi.org/firefox.jpg here]; the p