How can I find the previous position for my iPhone?

It's more then 24 hours since I lost my iPhone, and it seems like it's turned off/don't have more battery left. Is there any possible way to find the previous position of it, when it's more then 24 hours ago?? Please help me, desperate to find my phone, and to know where it was last seen would help me alot.

Welcome to the Apple Community.
Unless your phone connects to a cellular or wifi network while still using your iCloud account, it won't show it's location in Find my phone.

Similar Messages

  • How can I find the serial number for my creative suite CS6 I bought it from a store.

    How can I find the serial number for my creative suite CS6 I bought it from a store.

    https://www.adobe.com/account.html for serial numbers or subscriptions on your Adobe page... or
    Lost serial # http://helpx.adobe.com/x-productkb/global/find-serial-number.html

  • How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    How can I find the serial number for my stolen iPad that's associated with my apple ID ?

    If you registered it with Apple check your registered items at Your Support Profile for Registered Purchases. Also, see iOS- How to find the serial number, IMEI, MEID, CDN, and ICCID number.
    What To Do If Your iDevice Is Lost Or Stolen
    If you activated Find My Phone before it was lost or stolen, you can track it only if Wi-Fi is enabled on the device. What you cannot do is track your device using a serial number or other identifying number. You cannot expect Apple or anyone else to find your device for you. You cannot recover your loss unless you insure your device for such loss. It is not covered by your warranty.
    If your iPhone, iPod, iPod Touch, or iPad is lost or stolen what do you do? There are things you should have done in advance - before you lost it or it was stolen - and some things to do after the fact. Here are some suggestions:
    This link, Re: Help! I misplaced / lost my iPhone 5 today morning in delta Chelsea hotel downtown an I am not able to track it. Please help!, has some good advice regarding your options when your iDevice is lost or stolen.
      1. Reporting a lost or stolen Apple product
      2. Find my lost iPod Touch
      3. AT&T. Sprint, and Verizon can block stolen phones/tablets
      4. What-To-Do-When-Iphone-Is-Stolen
      5. What to do if your iOS device is lost or stolen
      6. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      7. Find My iPhone
      8. Report Stolen iPad | Stolen Lost Found Online
    It pays to be proactive by following the advice on using Find My Phone before you lose your device:
      1. Find My iPhone
      2. Setup your iDevice on iCloud
      3. OS X Lion/Mountain Lion- About Find My Mac
      4. How To Set Up Free Find Your iPhone (Even on Unsupported Devices)

  • How can i find the exact BADI For a Particular Transaction

    hi ppl,
    How can i find the exact BADI For a Particular Transaction. Is there any Standard transaction or Programs to do this or suggest some other way.

    Use this code:
    *& Report  ZGET_BADI
    REPORT  ZGET_BADI.
    TABLES : TSTC,
    TADIR,
    MODSAPT,
    MODACT,
    TRDIR,
    TFDIR,
    ENLFDIR,
    SXS_ATTRT ,
    TSTCT.
    DATA : JTAB LIKE TADIR OCCURS 0 WITH HEADER LINE.
    DATA : FIELD1(30).
    DATA : V_DEVCLASS LIKE TADIR-DEVCLASS.
    PARAMETERS : P_TCODE LIKE TSTC-TCODE,
    P_PGMNA LIKE TSTC-PGMNA .
    DATA wa_tadir type tadir.
    START-OF-SELECTION.
    IF NOT P_TCODE IS INITIAL.
    SELECT SINGLE * FROM TSTC WHERE TCODE EQ P_TCODE.
    ELSEIF NOT P_PGMNA IS INITIAL.
    TSTC-PGMNA = P_PGMNA.
    ENDIF.
    IF SY-SUBRC EQ 0.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'PROG'
    AND OBJ_NAME = TSTC-PGMNA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    IF SY-SUBRC NE 0.
    SELECT SINGLE * FROM TRDIR
    WHERE NAME = TSTC-PGMNA.
    IF TRDIR-SUBC EQ 'F'.
    SELECT SINGLE * FROM TFDIR
    WHERE PNAME = TSTC-PGMNA.
    SELECT SINGLE * FROM ENLFDIR
    WHERE FUNCNAME = TFDIR-FUNCNAME.
    SELECT SINGLE * FROM TADIR
    WHERE PGMID = 'R3TR'
    AND OBJECT = 'FUGR'
    AND OBJ_NAME EQ ENLFDIR-AREA.
    MOVE : TADIR-DEVCLASS TO V_DEVCLASS.
    ENDIF.
    ENDIF.
    SELECT * FROM TADIR INTO TABLE JTAB
    WHERE PGMID = 'R3TR'
    AND OBJECT in ('SMOD', 'SXSD')
    AND DEVCLASS = V_DEVCLASS.
    SELECT SINGLE * FROM TSTCT
    WHERE SPRSL EQ SY-LANGU
    AND TCODE EQ P_TCODE.
    FORMAT COLOR COL_POSITIVE INTENSIFIED OFF.
    WRITE:/(19) 'Transaction Code - ',
    20(20) P_TCODE,
    45(50) TSTCT-TTEXT.
    SKIP.
    IF NOT JTAB[] IS INITIAL.
    WRITE:/(105) SY-ULINE.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    *Sorting the internal Table
    sort jtab by OBJECT.
    data : wf_txt(60) type c,
    wf_smod type i ,
    wf_badi type i ,
    wf_object2(30) type C.
    clear : wf_smod, wf_badi , wf_object2.
    *Get the total SMOD.
    LOOP AT JTAB into wa_tadir.
    at first.
    FORMAT COLOR COL_HEADING INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 'Enhancement/ Business Add-in',
    41 SY-VLINE ,
    42 'Description',
    105 SY-VLINE.
    WRITE:/(105) SY-ULINE.
    endat.
    clear wf_txt.
    at new object.
    if wa_tadir-object = 'SMOD'.
    wf_object2 = 'Enhancement' .
    elseif wa_tadir-object = 'SXSD'.
    wf_object2 = ' Business Add-in'.
    endif.
    FORMAT COLOR COL_GROUP INTENSIFIED ON.
    WRITE:/1 SY-VLINE,
    2 wf_object2,
    105 SY-VLINE.
    endat.
    case wa_tadir-object.
    when 'SMOD'.
    wf_smod = wf_smod + 1.
    SELECT SINGLE MODTEXT into wf_txt
    FROM MODSAPT
    WHERE SPRSL = SY-LANGU
    AND NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED OFF.
    when 'SXSD'.
    *For BADis
    wf_badi = wf_badi + 1 .
    select single TEXT into wf_txt
    from SXS_ATTRT
    where sprsl = sy-langu
    and EXIT_NAME = wa_tadir-OBJ_NAME.
    FORMAT COLOR COL_NORMAL INTENSIFIED ON.
    endcase.
    WRITE:/1 SY-VLINE,
    2 wa_tadir-OBJ_NAME hotspot on,
    41 SY-VLINE ,
    42 wf_txt,
    105 SY-VLINE.
    AT END OF object.
    write : /(105) sy-ULINE.
    ENDAT.
    ENDLOOP.
    WRITE:/(105) SY-ULINE.
    SKIP.
    FORMAT COLOR COL_TOTAL INTENSIFIED ON.
    WRITE:/ 'No.of Exits:' , wf_smod.
    WRITE:/ 'No.of BADis:' , wf_badi.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'No userexits or BADis exist'.
    ENDIF.
    ELSE.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED ON.
    WRITE:/(105) 'Transaction does not exist'.
    ENDIF.
    AT LINE-SELECTION.
    data : wf_object type tadir-object.
    clear wf_object.
    GET CURSOR FIELD FIELD1.
    CHECK FIELD1(8) EQ 'WA_TADIR'.
    read table jtab with key obj_name = sy-lisel+1(20).
    move jtab-object to wf_object.
    case wf_object.
    when 'SMOD'.
    SET PARAMETER ID 'MON' FIELD SY-LISEL+1(10).
    CALL TRANSACTION 'SMOD' AND SKIP FIRST SCREEN.
    when 'SXSD'.
    SET PARAMETER ID 'EXN' FIELD SY-LISEL+1(20).
    CALL TRANSACTION 'SE18' AND SKIP FIRST SCREEN.
    endcase.
    Regards
    Vinayak

  • Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    Whenever I update my iPhone software, it asks me to sign in to iCloud with an old email address.  My other devices all have the correct address.  How can I get the correct address for my iPhone?  The only Apple ID that works for logging in is my new one.

    To change the iCloud ID you have to go to Settings>iCloud, tap Delete Account, provide the password for the old ID when prompted to turn off Find My iPhone (if you're using iOS 7), then sign back in with the ID you wish to use.  If you don't know the password for your old ID, or if it isn't accepted, go to https//appleid.apple.com, click Manage my Apple ID and sign in with your current iCloud ID.  Tap edit next to the primary email account, tap Edit, change it back to your old email address and save the change.  Then edit the name of the account to change it back to your old email address.  You can now use your current password to turn off Find My iPhone on your device, even though it prompts you for the password for your old account ID. Then go to Settings>iCloud, tap Delete Account and choose Delete from My iDevice when prompted (your iCloud data will still be in iCloud).  Next, go back to https//appleid.apple.com and change your primary email address and iCloud ID name back to the way it was.  Now you can go to Settings>iCloud and sign in with your current iCloud ID and password.

  • HT1692 how can i get the previous contact details in iphone

    how can i get the previous contact details in iphone

    You don't want to maintain a reference to the last selected node, but to the last selected path. Nodes within a tree are addressed using a TreePath, with contains references to each node from the root, down to a specific node. Look at the JavaDocs of javax.swing.tree.TreePath for more info.
    Also, JTree has getter/setter methods for the selectionPath.

  • How can I find the router number for airport extreme card?

    I am trying (unsuccessfully) to wirelessly connect my PlayStation 3 to my iMac Duo using the built in Airport Extreme Card.
    Can someone please tell me how to find the router number for the built-in Airport? I am using OSX 10.4.9. The wireless card type on my Mac info is "Airport Extreme (Ox14E4, Ox89)".
    Thanks in advance.

    Since the iMac is using OS X's Internet Sharing, the iMac is acting as a router. The router IP address created by the iMac is dependent on the IP address assigned to the iMac. The first 2 numbers are the same but the last 2 are .2.1.
    For instance:
    If your iMac is getting an IP address of 192.168.0.200 your Mac's router IP address will be 192.168.2.1
    Similarly, if your iMac is getting an IP address of 10.0.1.200 your Mac's router IP address will be 10.0.2.1
    So
    Open Network Utility.
    Click on "Info". Under "Please select a network interface for information" select "Network Interface (en0)" to see what IP address the iMac has been assigned.
    Click on "Info". Under "Please select a network interface for information" select "Network Interface (en1)" to see what IP address the iMac is using as the router address on the wireless interface.

  • HT2534 how can I find the none button for payment method on mac?

    I'm a student. I have some problem with payment method. I don't have credit card. I can't find the none button to choose and I don't know how to do to get this button . This is my first time creating apple ID.

    Unless you used the instructions on the HT2534 page that you posted from when creating the account then you won't get the 'none' option - if you don't use those instructions then credit card details will need to be entered before an account can be used in the stores.
    Steps to create a new account with 'none' as the payment option : https://discussions.apple.com/message/24321860#24321860
    If you want to use the same email address on a new account then you can change it on the one that you've already created by logging into it via the Store > View Account menu option on your Mac's iTunes or via http://appleid.apple.com

  • Where can I find the old OS for my iPhone 3G?

    Where can you find the old 3.1.1 software? (I assume that was its number)
    The 4.0 is a disaster on mine. I still cannot get it to download any music. It keeps saying it cannot find the address. Yet iTunes plays the songs just fine.
    At first my apps would crash everytime I loaded one. After the third time downloading the OS, they finally work. But this is the worst new OS update that Apple has ever given me.
    I hope someone knows where I can find the old software because Apple doesn't publicize it.
    Thanks very much.

    Search your computer for a file with iphone and 3.1.3 (or 3.1.1 or whatever you were running) in the filename and an extension of .ipsw. It might also be in the recycle bin. You can't do anything legitimate with the file, really, but it would be good to hang on to. Usually iTunes saves a restore to previous firmware file, but unfortunately all the ways for downgrading back to it have been closed over time by Apple because people have been exploiting them to "modify" their phones. But if you can find the file, move it to your desktop or someplace and sit on it until you find a way to restore that you're happy with.

  • How do i find the original carrier for my iPhone 3gs

    I received an iPhone 3gs as a gift but do not know the country it's coming from. How do I find the original carrier so I can activate and find out if they have an unlock policy.
    Thanks

    Probably only way is to call Applecare in your country and they may tell you who holds the lock. IIRC you IMEI and serial # are required

  • How can I find the serial number for my Photoshop?

    Hello All. this is my fisrt post here, so please excuse me if I have posted in the wrong area.
    I have bought Photoshop from a local dealer in my country (Hungary). I have lost the product key for this software and now I need to re-install it.
    I have contacted the local dealer from which I have bought this program but they have advised me that the best way to get back my cd key is to contact Adobe.
    I know that there are some methods through which the key can be recovered. Some of them are posted on this [malware site removed] website, but I didn't find any tutorial for Photoshop. I have also tried to use one of the applications which are provided on that website, too, but without any results.
    My operating system is Windows 7.
    Can you please help me with this issue?
    Thanks a lot.
    Edit: sorry. I forgot to mention. I am using Photoshop CS5.

    If you install something like belarc advisor [ unknown link removed ] which is completly free it will do an audit of your system including telling you the serial number of installed software (and yes it should include photoshop - well it does for me).
    I hope this helps.
    Cheers
    John

  • How can I find the latest update for Firefox 5 without upgrading to Firefox 6.0?

    I had the latest version of Firefox 5 getting automatically upgraded to Firefox 6.0, which disabled my Java 6.022 and 6.023 plugin. Since updating my Java is not an option, because then I can't access my bank account, I uninstalled Firefox 6.0 and installed Firefox 5.0. I quickly cancelled and disabled the auto-update. Now I have no idea if this is the oldest or the latest version of Firefox 5, because the auto-update doesn't let me choose the latest version of Firefox 5 instead of Firefox 6.0. Is there a way to do this manually?

    That are Java Console extensions (Tools > Add-ons > Extensions) and not the Java plugin (Tools > Add-ons > Plugins).
    You can uninstall and remove Java Console extensions, you do not need them to run Java applets.
    See:
    * http://kb.mozillazine.org/Java#Multiple_Java_Console_extensions
    You can also disable the Java Quick Starter extension: Tools -> Add-ons -> Extensions
    * Control Panel -> Java -> Advanced tab -> Miscellaneous -> Java Quick Starter (disable)
    See:
    * http://www.java.com/en/download/help/quickstarter.xml - What is Java Quick Starter (JQS)? What is the benefit of running JQS? - 6.0

  • How can I find my serial number for my iphone?

    My neice's phone was stolen and she needs her serial # to give to the police for help.  Can she get if on line through her itunes account?

    iOS: How to find the serial number, IMEI, MEID, CDN, and ICCID number

  • How can i change the "main" computer for my iphone?

    I just bought a macbook...but I initially backed my phone up to my dell pc that will now go in the trash...how do I get the new computer to be my main computer and bring everything from my old puter (like itunes and iphone backup) to my new one?

    Read this about how to change the security questions: http://support.apple.com/kb/HT5312
    If you can't use these procedures contact Apple. See: http://www.apple.com/support/itunes/contact/

  • How can i find the serial number for an ipod classic

    I dont have the original packaging or the reciept, It wont connect to itunes or my laptop and all that shows on the ipod's screen is a red circle with a cross inside it. I have tried to reset it but have not been able to. Any help would be much appreciated

    If your iPod Classic was the last device that you connected to and synced with your iTunes library, there is a chance you might be able to get the serial # to show up in the Device Connectivity diagnostic report. See here for instructions on running this test.
    iTunes for Windows: Device Connectivity Tests
    Otherwise, if you have previously registered the device with Apple, you can view it's serial # in your list of devices you have registered under your Apple ID.
    https://expresslane.apple.com/GetproductgroupList.do
    B-rock

Maybe you are looking for

  • Network inspector no longer working.

    Applies To: Microsoft Edge F12 Developer Tools Release: Windows 10 Insider Preview SDK and tools, April 2015 release Issue: Network inspector no longer working.

  • I can't open a Final Cut Pro 6 file in Final Cut Pro 10.  Please help!

    I am a long time user of Final Cut Pro 6.  I finished a video for a client but my computer was giving me issues because it's older and needs cleaned off so it is slow and it's affecting the video.  I downloaded Final Cut Pro 10 trial on my laptop and

  • Exported audio is high pitched rather then normal

    After i edit a sound clip cutting and moving them around. Everything sounds normal and good, but once i export the audio clip and play the exported file. It sounds like its playing twice as fast and speed up. I don't know what to do. Can someone plea

  • While using F-29 ERROR:-NO SPECIAL GL DEFINED FOR ACCT TYPE D

    Dear sap guru's Please  help us  to sort out this problem as on urgent basis.............we  will mostly  appreciates your solution. Matter:While using f-29  error:-NO SPECIAL GL DEFINED FOR ACCT TYPE D.IND A RECON ACCNT 160100000

  • How to cancel BT phone?

    I am the account holder of BT phone. I have used BT for more than 1 year. My package is Unlimited Evening and Weekend Plan. I'll be back my country this May. Do I need to pay for cancelling my contract? If yes, How much does it cost? Many thanks, An.