Gmail dates out of order

I recented moved from an exchange server to Gmail utilizing IMAP. The problem is that my emails are not in date order on my iphone 5s 7.1 (problem still existed under 7.0.6), but they appear perfectly in Gmail via web, Outlook, and Apple Mail. I can't seem to figure out what order they are actually in. I have exposed the date fields in outlook like date create, modified, received, sent, etc, but even ordering on any of those doesn't explain the sort order on the iPhone.
Thanks for any input!

Hello Omar12345
Have you tried removing your email account and then add it back in to Mail. Also have you tried using the Gmail app to see if it works there?
iOS: Troubleshooting Mail
http://support.apple.com/kb/ts3899
Gmail - email from Google
https://itunes.apple.com/us/app/gmail-email-from-google/id422689480?mt=8
Regards,
-Norm G.

Similar Messages

  • Chart date out fo order

    Upgraded 10g to 11g. Most graphs are displaying correctly however have 1 chart that the dates are out fo order, though there is a sort on the calendar ID. I have a field called calendar ID with data such as 201101 = 2011 Jan and 201102 = 2011 Feb. If I view this in table view it shows correctly, but as a chart starts at like Jun 2001 then Aug 2011, etc. Is this a know bug or a easy fix?

    Post Author: qcheng
    CA Forum: Charts and Graphs
    Right click the chart > select "Chart Expert" > "Data" Tab > Select the "On Change Of" field > Click "Order" button > select "in original order". Your group will be in right order now.

  • Line Chart in Infoview Dates out of order

    Hi,
    I have a report that works fine on the desktop but when it is run from within Infoview, the date range in the X axis of the line chart are no longer in order.
    Any ideas how I can correct this?
    Thanks,
    John

    Hi John,
    What are the versions  (along with any fix packs if any) of the following:
    1) Crystal Reports designer
    2) BusinessObjects Enterprise
    Also, could you try changing the Viewer Type for Crystal Reports? If it is set to Web (No downloading), try changing that to ActiveX.
    - Abhilash
    Follow us on Twitter
    Got Enhancement ideas? Try the SAP Idea Place
    Share Your Knowledge in SCN Topic Spaces

  • Chart date out of order

    Post Author: [email protected]
    CA Forum: Charts and Graphs
    I have a chart that is grouped on the date by month.  The data in the main crosstab report is in the correct order but the dates are grouped incorrectly in the graph.  The graph is listing in this order:
    1/2007, 10/2007,11/2007, 2/2007,3/2007....
    It's picking up the first number as the sort order instead of the date.  I've checked by date format and everything is correct in my report.  What can I change to get the chart date order correct?

    Post Author: qcheng
    CA Forum: Charts and Graphs
    Right click the chart > select "Chart Expert" > "Data" Tab > Select the "On Change Of" field > Click "Order" button > select "in original order". Your group will be in right order now.

  • Tree Issue--Data out of order?

    All,
    I suspect this is more of a generic SQL question, but, anyhow, I'm trying to create a tree report of the items in our bills of materials. When I run the page, the tree is empty (not even a root). Trying to figure out what the problem is, I've copied the SQL into Toad and run it; the results seem to be scrambled, which I suspect is why the tree is failing. Here's the query:
    select case when connect_by_isleaf = 1 then 0
                when level = 1             then 1
                else                           -1
           end as status,
           level,
           comp_item_number as title,
           null as icon,
           comp_inventory_item_id as value,
           null as tooltip,
           null as link
    from apex.bom_tree_v
    where organization_id = 126
    start with comp_item_number = 'C70-1039'
    connect by prior comp_inventory_item_id = parent_item_id
    order siblings by comp_item_numberThe query returns 64 rows for my test item, which is correct, but the top-level item (level = 1) is returned as the 10th row (consistently), rather than the first. All of the documentation I've been able to find indicates that the rows should be returned in hierarchical order.
    Anyone have any idea what I'm missing?
    -David

    Good afternoon David,
    Trees in APEX are not even closely populated the same as in Forms. What I did was this:
    <li>Query the top of your tree...
    <li>Do a UNION ALL SELECT for the next level of your tree
    <li> and repeat the UNION ALL SELECT for each indented level of your tree.
    Mine looks something like this:
    select 'A' id,
            null as pid,
            'Table Of Contents' name,
            NULL link,
            'f?p=&APP_ID.:1:&APP_SESSION.:CONTRACT,A' A1,
            'f?p=&APP_ID.:1:&APP_SESSION.:EXPAND,A' A2
       from dual
      union all
    select ltrim(rtrim(to_char(toc_seq_id))) id,
            'A' pid,
            toc_description name,
            'f?p=&APP_ID.:1:&APP_SESSION.:::RP:TOCP:' || toc_seq_id link,
            'f?p=&APP_ID.:1:&APP_SESSION.:CONTRACT,' || TO_CHAR(toc_seq_id) ||'::RP:TOCP:' || TO_CHAR(toc_seq_id) A1,
            'f?p=&APP_ID.:1:&APP_SESSION.:EXPAND,' || TO_CHAR(toc_seq_id) ||'::RP:TOCP:' || TO_CHAR(toc_seq_id) A2
       from my_toc
      where state_id = :P1_STATE
        and toc_level = 1
        and (toc_seq_id < 9
          or  (toc_seq_id < 10 and :P1_User_Type = 2)
          or  (toc_seq_id < 10 and :P1_CUSTOM_USER = 'Y')
          or  (toc_seq_id < 15 and :P1_User_Type > 2 and :P1_CUSTOM_USER != 'Y'))
    union all
    select ltrim(rtrim(toc_seq_id)) id,
            ltrim(rtrim(toc_parent)) pid,
            toc_description name,
            'f?p=&APP_ID.:' || ltrim(rtrim(to_char((toc_parent+2)))) || ':&APP_SESSION.:::RP:P1_ENTRY_ID:' || toc_entry_id link,
            null a1,
            null a2
       from my_toc
      where state_id = :P1_STATE
        and toc_level = 2
        and (toc_parent < 9
          or (toc_parent = 9 and :P1_User_Type = 2)
          or  (toc_seq_id < 10 and :P1_CUSTOM_USER = 'Y')
          or  (toc_seq_id < 15 and :P1_User_Type > 2 and :P1_CUSTOM_USER != 'Y'))
    order by 3,1The code that looks like this:
    'f?p=&APP_ID.:' || ltrim(rtrim(to_char((toc_parent+2)))) || ':&APP_SESSION.:::RP:P1_ENTRY_ID:' || toc_entry_id link,is building a link to a page based on the value of the entry (:P1_ENTRY_ID) so the user can click on an entry and jump to that item.
    My tree looks like this: (I can't paste an image, so I'll wing it with text - notice my tree started out with
    entry zero [0] because I had to add it after the tree was built)
    - Table of Contents
      + 0. First branch of my tree
      + 1. Second branch of my tree
      -  2. Third branch - expanded
         +  Entry 1 for third level
         +  Entry 2 for third level
      + 3. Fourth branch of my tree
      + 4. Fifth branch of my treeIt took me awhile to figure all of this out, but once I did, it began to make sense.
    The whole idea is that each SELECT will select the next indented level in the tree. Then in the end, use ORDER BY 3,1 to order your tree properly by the parent and then the child within the parent.
    I hope this makes sense and that it helps.
    Good luck,
    Don.
    REWARDS: Please remember to mark helpful or correct posts on the forum, not just for my answers but for everyone! :)

  • Can Numbers put the dates (in a column) in order if I enter out of order

    I am a procrastinator and I have lots of receipts to enter.  If I enter with the dates out of order is there a way numbers can put in order for me.
    Thank you

    Robin,
    When you hover your mouse over the column Label area of an active Table, a disclosure triangle appears. Clicking the triangle gives you a menu of column actions, including Sorting the column, either ascending or descending.
    Sorting will put your dates in order. The prerequisite is that the dates you enter must be recognized as Date/Time values, not as Text. If you input your dates in a standard way for you region/language, they will normally be properly recognized. One way to test for this is to Select the Dates column and change the date format in the Cell Inspector. If you can freely change the format, for example from "1/1/15" to "January 1, 2015", the sort will be successful.
    Regards,
    Jerry

  • Data written to socket getting lost?  or perhaps out of order?

    I'm trying to fix a bug in Flashmog. The bug is described in more detail here.
    Basically what is happening is that my Flash client claims that it is calling functions that don't arrive at the server -- or they arrive, but the socket data is out of order and therefore is garbled.  I've stared at the source code for hours and tried a lot of trial-and-error type stuff and added trace statements to see if I can find the problem and I'm not having any luck.
    In particular, there's class I have called RPCSocket that extends the AS3 Socket class so I can serialize data structures before sending them across a socket.  At one point, this RPCSocket class calls super.writeBytes and super.Flush.  It is the point at which I send all data out of my client. The data is binary data in AMF3 format.
              public function executeRPC(serviceName:String, methodName:String, methodParams:Array):void {
                   if (!this.connected) {
                        log.write('RPCSocket.executeRPC failed. ' + methodName + ' attempted on service ' + serviceName + ' while not connected', Log.HIGH);
                        throw new Error('RPCSocket.executeRPC failed. ' + methodName + ' attempted on service ' + serviceName + ' while not connected.');
                        return;
                   var rpc:Array = new Array();
                   rpc[0] = serviceName;
                   rpc[1] = methodName;
                   rpc[2] = methodParams;
                   var serializedRPC:ByteArray = serialize(rpc);
                   if (!serializedRPC) {
                        log.write('RPCSocket.executeRPC failed.  Serialization failed for method ' + methodName + ' on service ' + serviceName, Log.HIGH);
                        dispatchEvent(new IOErrorEvent(IOErrorEvent.IO_ERROR, false, false, 'RPCSocket.executeRPC failed.  Serialization failed for method ' + methodName + ' on service ' + serviceName));
                   super.writeUnsignedInt(serializedRPC.length);
                   super.writeBytes(serializedRPC);
                   super.flush();
              } // executeRPC
    Can someone recommend a way for me to store without corruption, conversion, or filtering or translation of any kind *all* of the information sent across this socket? I'd like to write it to a file.  I'm guessing that keep a global ByteArray var and storing the info there might work, but I'm wondering how I might get the contents of that ByteArray into a file so I can inspect it.
    Also, I'm wondering if I might be able to inspect what flash actually sends out on the socket?  I have a sneaking suspicion that data I supply to super.writeBytes may be sent out of order or may not actually get sent across the socket.  This bug I'm talking about only seems to happen under high-stress situations when I'm sending dozens of messages per second across this one socket.

    oops...forgot link to bug description: http://flashmog.net/community/viewtopic.php?f=5&t=549

  • After syncing Pc-Ipad my Photo's are out of order. In the folders they don't follow the Date-order. I use Itunes 10.6.1.7 and Ipad 5.1. The Problem is the same with XP and Windows 7.

    After syncing PC-Ipad my Photo's on Ipad2 are out of order. In the Folders/Albums the Photo's are no longer in the order of (EXIF) dates. I have updated Itunes to 10.6.1.7 and IPad2 to 5.1. I have reset the IPad2. I cleaned the Photo-cache and removed Itunes and Installed again. I tried it with Windows 7 (64) and XP, makes no difference. I tried it with one Album, Photo's also out of order. It doesn't seem to happen with my Ipad1 older software version. I there a bug in the newest software? Thanks for Help!
    Rudy from the Netherlands.

    problem solved after updating itunes to 10.6.3

  • Course follow up out of order, incorrect Qualification dates

    Hello,
    I have a situation where courses followed up out of order results in qualifications with incorrect start and end dates.
    Background
    - Course Type imparts Qualification.  Qualification is valid until 12/31/9999.
    - Course Type has 3 courses (A = 1/1/2011,  B = 2/1/2011, C = 3/1/2011)
    - Person enrolls in each of the 3 courses
    Scenario
    - Course A is followed up. Person has Qualification for 1/1/2011-12/31/9999. Correct.
    - Course C is followed up. Person now has Qualification for 1/1/2011-2/28/2011 and a new record for 3/1/2011-12/31/9999. Correct.
    - Course B is followed up. Person now has Qualification for 1/1/2011-1/31/2011 and 2/1/2011-12/31/9999.  No new record was created. Incorrect.
    There should be a qualification entry for each course attempt.
    - Course A should impart Qualification for 1/1/2011-1/31/2011
    - Course B should impart Qualification for 2/1/2011-2/28/2011
    - Course C should impart Qualification for 3/1/2011-12/31/9999
    If Course C followed up again, the qualification dates are correct, but this is a manual process (i.e. admin needs to re-follow up all the later courses in order).  Is there a programmatic way to ensure the qualification dates match the course dates when followed up out of order?
    Thanks,
    RM

    I am very interested in this thread because I have encountered a similar problem with BLOB columns, except that I am also seeing this with CLOB's.
    Essentially the all the data gets 'migrated', but the CLOB and BLOB columns are all mixed up!
    Any solutions?

  • I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    I've just imported photos that are misdated and appear out of order in my events. How can I correct the dates on these events so they appear properly?

    The one iin the Photos ➙ Adjust Date and Time menu option:
    checkbox below:

  • Is there any way so that I Being able to clear out old data from the Order

    Hi Friends,
    Is there any way so that I Being able to clear out old data from the Order Gate forecast, tolerance, and confirmed order to date tables on a monthly basis?
    Means I want data in data table for particular time (I want that if suppose today is 13-11-2008 then my data table must contain data from 13-10-2008 to 13-11-2008.
    Is it possible thru ABAP development or thru any t codes ?
    Any pointers will be rewarded.
    Regards

    hi,
    Before archiving you have to put the Deletion flag for the object(May be for PO, MMR etc as per your req.)...
    After that the you use the archiving procedure to archive the docs which are already flagged for deletion...
    For MMR you use the transaction SARA...and its respective object for the archiving....
    You can use the SDN search to see the many threads on it...
    Or use this link as per your req. and make the search...
    http://help.sap.com/saphelp_erp2004/helpdata/EN/75/ee0fa855c811d189900000e8322d00/frameset.htm
    Regards
    Priyanka.P

  • Release Date not showing - episodes out of order?

    Hi everyone!
    I recently submitted a podcast for work and it was accepted yesterday. During testing, the order of the episodes were right based on the date they were released. However, checking the live version, the released column information is blank and the episodes are all out of order.
    From what I understand, it's supposed to get that from the XML. For each item, we have: <pubDate>02 April 2014</pubDate> that did show up when we tested it directly.
    Any thoughts? Thank you!

    Sorry, I guess I should have posted that information, haha.
    Here's the link in iTunes:
    https://itunes.apple.com/ca/podcast/podkinz-official-webkinz-podcast/id853924146 ?mt=2&ign-mpt=uo%3D4
    Here's the RSS feed URL:
    https://static.ganzworld.com/podkinz.xml
    Thanks for the help!

  • Photos recently changed from sequential numbering to date/timestamp.  When I import into apps for editing they are out of order.  What can be done to change back to sequential numbering instead of date/timestamp?

    Photos recently changed from sequential numbering to date/timestamp.  When I import into apps for editing they are out of order.  What can be done to change back to sequential numbering instead of date/timestamp?

    The date information is taken from the camera which writes it to the file. This needs to be set to the correct date and time in the camera itself.
    The order the images are shown in the Library mode is set by clicking on the sort button in the tool bar, which if not showing can be activated from view, tool bar. There are different sort orders that can be applied including sorting by file name. You can also sort by dragging the images to the order you wish them to appear in by selecting user order.

  • Burned playlist to data DVD; song out of order

    Why would "Burn Playlist to Disk' change the order of the songs in a playlist? Mine came our sorted by album name...not in the order I created in the playlist.
    Have I got some setting wrong?

    by album. I've tried all the variations of "album" too, by clicking on it a few times.
    But I just discovered that if I don't have the track number listed in the Info section, that it gets out of order. I've manually changed a few and it has worked. Just wish I got it before it went into the system.

  • TA25179 my text messages are coming through out of order and i have checked the time setting and the software version. Everything is up to date! Very frustrating... any other suggestions?

    My text messages are coming through out of order! I have checked the software and the time setting is on automatic!! Very frustrating... any other advice??

    When reception allows the iPhone sends and receives the messages, this is also dependent on the reception of the other phone you are communicating with. If you really feel you have a problem, contact your Carrier about the problem.

Maybe you are looking for