How do I set the dates on iMessage back to "normal"?

So, I have iOS 6 and I tried to activate PassBook by doing that trick where you set your date ahead by a year or so. It didn't work for me, but anyway, I set mine ahead and texted someone (a mistake on my part, clearly!!!) — the dates won't show up because my phone is confused and thinks everything has gone awry in the time-space continuum. I'm guessing that the dates and times of my texts to and from this contact won't show until the mysterioso date in the future (March 20, 2013, by the way). But, is there a way that I can see the date- and time-stamps on the texts again? Is there anything I can do?
Thanks to anyone who answers!

I had this problem too.
I deleted the text I had sent when my date/time was in the future and the timestamps for the rest of my messages appeared straight away.
Hope this works for you too!

Similar Messages

  • How can I set the data binding between Web Dynpro & Database table

    Dear friend,
    I am a beginner of Web Dynpro. I want to develop my simple project like these:
    1. Create my own database table via Dictionary Project such as TAB_USER and have 3 fields: USER_ID, USER_NAME, USER_POSITION and I have already deployed & archived it.
    2. Create my own Web Dynpro Project, and create the input fields as User ID, User name, User position and icon 'Save' on the selection screen and I have deployed it already.
    For the process, I want to input data at the screen and save the data in the table, please give me the guide line like these:
    1. How can I set the data binding between Web Dynpro and Database table ?
    2.  Are there any nescessary steps that I will concern for this case?
    Sorry if my question is simple, I had try  to find solution myself, but it not found
    Thanks in advances,
    SeMs

    Hi,
    You can write your own connection class for establishing the connection with DB.
    Ex:
    public class  ConnectionClass {
    static Connection con = null;
    public static Connection getConnection() {
    try{
    Context ctx = new InitialContext();
    DataSource ds = (DataSource) ctx.lookup("jdbc/TSPAGE");
    con = ds.getConnection();
    return con;
    }catch(Exception e){
    return null;
    You can place the above class file in src folder and you can use this class in webdynpro.
    You can have another UserInfo class for reading and writing the data into the DB .
    Regards, Anilkumar
    PS : Refer
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/java/simple java bean generator for database.pdf
    Message was edited by: Anilkumar Vippagunta

  • How can i set the date time year to my i pod

    how can i set the date time year to my i pod touch

    Hello Theodora,
    You can do this via your iPod's Settings application.
    B-rock

  • How do I set the date/time on my Airport Express?

    I am using an Apple Airport Express to connect to a wireless router in another part of the house. However, I am unable to set the date/time correctly and so the logs all start from Dec 13, 0hrs.
    I have tried using an internet time server, but to no avail.
    Any ideas?

    Open AirPort Utility and click Manual Setup
    Click the Base Station tab just under the row of icons
    Settings for Time Zone and the option to Set Time Automatically are there
    Click Update to save your new settings and restart the AirPort Express

  • HOW DO I SET THE DATE AND TIME ON MY HP OFFICEJET 8600

    just bought the HP officejet 8600 all in one printer, and I cant seem to set the date and time for the fax portion of the printer, please help.

    Set the date and timeOn the control panel, touch the Right Arrow ( ), and then touch Setup ( ).Touch the Down Arrow ( ), and then touch Preferences .Touch Date and Time: , and then touch the Up and Down Arrows ( ) to set the month, day, and year.Touch Done , and then touch the Return Arrow ( ) to return to the Preferences menu.Set the language and country/regionIn the Preferences menu, touch Language .Touch your preferred language, and then touch Yes to confirm your choice. The product returns to the Preferences menu.On the Preferences menu, touch Country/Region , and then touch your specific country/region.Touch Yes to confirm your choice, and then touch the Home icon ( ) to return to the main menu.

  • How do you set the date & prevent auto revert to current date?

    Numbers 3.2.  Macbook  OS 10.9.3
    I want to set a block of cells to a particular date (05/10/14) and then add in different times.  But everytime I make a change to the default time (12:00 AM) in a specific cell, the date I initially set reverts back to the current date (05/29/14).
    How can I prevent or work around this annoying date change issue?  Thank you for any helpful tips you can provide.
    Kind regards,
    David.

    Hello
    I'd create separate columns for date and time input (formatted as text) and calculate date-time value in the third column. Something like this.
    Table definitions are as follows.
    A1    date (text)
    A2    2014-05-10
    A3    2014-05-10
    A4    2014-05-10
    A5    2014-05-10
    A6    2014-05-10
    A7    2014-05-10
    B1    time (text)
    B2    09:10
    B3    10:20
    B4    11:22
    B5    12:20
    B6    13:00
    B7    14:00
    C1     date-time
    C2    =DATEVALUE(A2)+TIMEVALUE(B2)
    C3    =DATEVALUE(A3)+TIMEVALUE(B3)
    C4    =DATEVALUE(A4)+TIMEVALUE(B4)
    C5    =DATEVALUE(A5)+TIMEVALUE(B5)
    C6    =DATEVALUE(A6)+TIMEVALUE(B6)
    C7    =DATEVALUE(A7)+TIMEVALUE(B7)
    This way, there's no implicit interpretations on date and time input.
    * The point is to format columns A and B as text.
    Hope this may help,
    H

  • How do you set the Date & Time on Zen V Pl

    On the System menu I scroll down to Clock Settings. It gives me the options to view the?clock, put the?time in title, & the set the alarm. How do you?change the time & date?

    cwilliam4,
    Go to Extras -> Date and Time. Once you're inside, press and hold the Back button and you should have a list of additional options.
    Jason

  • How can I set the date today as default value in a parameter?

    Hi,
    I have in my report a date parameter and I want to set as default value the date today.
    How can I do this?
    Thanks in advance

    If you are using a datatemplate , you can have a beforereport trigger that will have a package call.
    In the package spec, define a date variable and also define the function beforereporttrigger that retruns boolean.
    In the body, define the beforereporttrigger function with
    begin
    select sysdate into specvariable from dual
    return(true);
    end;
    You can then use the variable in the datatemplate as :variable.
    Hope this helps.
    - Vasu -

  • How can I set the date of my PC using Java?

    Which class has the function to set system date and time.
    Thanks in advance.

    but the following sentence
    Process p=Runtime.getRuntime().exec("date
    11-03-2002");
    always throw IOExecption error
    java.io.IOException: CreatePreocess:date 11-03-2002
    error=0
    and why?
    How to settle it?
    'date' is an internal command which means you need a shell to run it. Depending on the OS this will either be 'cmd' or 'command'. If you search the forums with the following keywords you will find examples on how to use this: "exec", "Runtime", "cmd" or "command"

  • How can I set the date field to auto populate the current date?

    I have many forms to create where the current date dictates a specific change in options or conditions for the form filler to follow. I cannot see any way to handle that issue. Is it possible to simply set the current date as a default?
    jcytrny

    Sorry, we currently do not support having today's date show up in a date field by default
    Randy

  • How do I set the date in Mail 5.2

    I use Mac Mail 5.2, and in the date line on outgoing messages always says "31 May2012 10:11: 41 CDT. What must I do to make the messages show the correct date and time?

    Is the time on your iMac correct? Try a PRAM reset:
    PRAM RESET
    Zap the PRAM
    Shut down the computer.
    Locate the following keys on the keyboard: Command, Option, P, and R. You will need to hold these keys down simultaneously in step 4.
    Turn on the computer.
    Press and hold the Command-Option-P-R keys. You must press this key combination before the gray screen appears.
    Hold the keys down until the computer restarts and you hear the startup sound for the second time.
    Release the keys.

  • HT4356 How can I set the default to draft instead of normal printing?

    I'd like to do most of my printing in Draft mode to save ink.  How do I set that as the default, or even change it on the fly, when printing from the iPad Mini to an AirPrint printer?  I have an HP OfficeJet Pro 8600 Plus.
    Thanks!

    I've got the printer's default set to draft and that works well for printing from the computer.
    AirPrint seems to override that and always prints in Normal mode.

  • HT2473 How can I get the date and time back on the menu bar?

    Several items disappeared from my menu bar for no  reason known to me.  I miss the date and time and want it back. Please .  I have gone to System Preferences and clicked "date and Time" but it will not allow me to check anything on the page even though there is a box "Show date and time in Menu bar".
    What should be my next move?

    One more thing might help us
    In the Finder > Date & Time Preferences > Take a Full ScreenShot of the entire display showing the "absence" of the check box (or whatever) to Show in Menu Bar
    ⌘ Command + ⇧ Shift > Press ' 3 ' > release all three
    Use the camera tool > locate the screenshot in the Desktop (not sure whether it will say "Picture 1.png" or have a TimeDateStamp as a title.
    ÇÇÇ

  • How can I save my data and be back to normal operation.

    Hello everyone,
    I'm using P7 with Oracle XE on a stand alone computer, I am unable to connect to my Primavera DB, the issue started when my computer slowed down and i just restarted it...while disc checking computer delet some of the file. may be this is the reason.
    I didnt loss my login name and pasword as this is standard as "ADMIN" after restarting the computer when i tried to login Primavera with same admin as lagin name and password this message is appear "Unable to connect to the database. Would you like to configure the database connection now?"
    What is the best and the safest way to get back to normal situation where I can have all my data back, could anyone please help me? How to I back it up and restore to normal?
    Thanks in advance.

    You will be configuring the connection, it shouldnt mess with the database at all. You are making sure the connection between P6 and the database is setup correctly. When you click on the elipses (...) next to database on the log in screen, does it show anything under "Details"?
    That being said there will be a way to backup/copy the database using the database utility not P6. With SQL it is fairly easy so I assume in Oracle it should be too. The database tool wont be application specific so you will need to look at the Oracle database documentation. For SQL it can be as simple as highlighting the P6 database (PMDB) and running the backup tool. You end result is a .mdf and .ldf which are your backup files. Don't know what Oracle's will look like.
    Hope this helps.

  • Hi! how can I set the time machine/capsule back-up intervals? Heron 2

    HI! EVERYBODY,
    HOW CAN I SYNC 2 TIME CAPSULES INSTALLED IN TWO DIFFERENT LOCATIONS, MAIN HOME AND SUMMER HOME?
    THANK YOU FOR YOUR HELP.
    MERCi
    HERON2

    To use different backup intervals use TimeMachineEditor 2.5.3. I do not think syncing two Time Capsule to one another is feasible or possible. For all things Time Machine visit Pondini's Time Machine FAQ

Maybe you are looking for

  • Can't open project folder

    I need help. I was trying to separate two different sites. I went to user/library/applicationsupport/iweb and moved the domain file to a separate sites folder so that I could switch them back and forth. Now I open iweb and try to switch btwn the site

  • Need pop up message if vendor Credit note is already posted.

    Dear All I am from account payable department. While processing the Credit notes for a particular vendor even if the Credit note is already posted in SAP. we do not receive any pop message informing the processor that the credit note is already booke

  • AA company code problem

    In asset accounting, I had created an asset class and also defined the number range interval for the same in my company code 1234. But later, when I tried to view the number range intervals using my company code 1234 ( Financial Accounting- Asset Acc

  • Multiple JNI calls

    I have created a class which calls my native c code. Just to test if everything was working fine I tested my class with one input file and one output file. import java.io.*; class JNIFoil {      public native static void runFoilUsingJNI(String foilIn

  • Backing up songs on iTunes

    Is it possible to back up your songs that are on iTunes to an external hard drive (like I do for pictures) I've always had a back up for everything for one never knows when the computer might go belly up (even being new) They don't need to play from