HT201401 How do we  put user information on start screen of a iPhone so it could be returned if lost

My son has mislaid his phone and it is password protected so it cannot be opened to try and trace the owner. What I want to do is set his new phone up so the first window has other contact details so it could be (hopefully) returned

If Find my Iphone was set up and turned on before the phone was lost you can sign in to that phones iCloud account and send the phone a written message. If the phone is just misplaced somewhere in your home you can command the phone to make a sound to help you find it.
To do these things, however, you must turn on Find My iPhone BEFORE the phone is lost.

Similar Messages

  • How to  find the user exit for a screen..

    Hi,
    plz help me how to find the user exit for a screen..?
    Regards
    Anbu

    Hi,
    check this program this will give you the list of user-exit and BADI for the perticular Tcode.
    REPORT  zuserexit_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.
    Reagards,
    Bharat.

  • How to verify the user information pass by the form with a stored procedure?

    Hi,
    I would like to know how to verify user information pass by the form with a stored procedure.
    I want make a portal which accepts to new user registration, but I want verify the new user's informations (like the name don't contain a number etc).
    Thanks for your help
    regards
    jla

    Hi Samson,
    You can use the UI API to do this. You can catch the form_ADD event and then validate the input from the users. You can even block the event from completing (and stop the document from being added) if your code finds some incorrect data using the bubbleEvent functionality.
    I don't have one specific example to show you, but if you look at some of the SDK samples (for example C:\Program Files\SAP\SAP Business One SDK\Samples\COM UI\VB.NET\02.CatchingEvents) to see how to work with events, you can then create your own validation to ensure the users data is valid.
    Regards,
    Niall

  • How to access internet users information from MacBook shared internet?

    Hi ,
            I want to know about the users information who use the shared internet connection from my MacBook. My MacBook works as WiFi hotspot for different devices, I need to know about their usage from MacBook as statistics or etc ?
    OR
    Please guide me how can I access information of all the devices, how much they are using, when the connect with the hotspot (MacBook shared internet), ?
    Could it possible to access what they are browsing ?
    Your guidance will be appreciated.
    Thanks in advance : !

    Ansar,
    A source group or "group" is what you need to configure on the CSS in order for the backend servers to initiate a connection outbound on the CSS. It would be helpful if you could email me directly a piece of your config. Specifically I would need the "service" section in terms of which servers need outbound access as well as the content rules you have configured and the ACL section to confirm you are not blocking anything.
    As an example.
    If you had
    service pete
    ip address 1.1.1.1
    active
    content pete
    add service pete
    protocol tcp
    port 80
    vip address 2.2.2.2
    active
    group pete_out
    vip address 2.2.2.2
    add service pete
    active
    So what happens is when the service makes an outbound connection, the source ip address is now the vip address. When the return packet comes back, the CSS recognizes it and gets it back to the backend server.
    You can also apply a source group via an acl as another option.
    Regards
    Pete..
    [email protected]

  • How do I collect user information without using an LMS?

    I have been using Captivate 5 to create training modules that we host on our own site.  The modules are information driven and have no testing included.  Our clients would like us to collect information from the user to track who has viewed the module.  All we need is their name and employee number.  Is there a way to accomplish this without having the user send an email?
    Thanks!

    It sounds like you're publishing your Captivate content as htm/swf output?
    If so and you have access to the services of a web developer, you can use Javascript in the web browser to pass the user information from Captivate out to the browser.  Once in the browser, you can then do anything with the data that your web developer can dream up.
    Jim Leichliter wrote a great series of articles that cover the basics of accessing Captivate variables using JavaScript.   This article in particular talks about passing Captivate variables out to the browser:
    http://captivatedev.com/2011/04/02/captivate-javascript-series-part-3-retrieving-captivate -variables/
    Cheers,
    John

  • How do I make web shortcuts into start screen tiles that can be pushed to all users profile on a computer in Windows 8.1 enterprise?

    We are trying to roll out Windows 8.1 Enterpise in our school system (K-12).
    The focus of this question is how do we take an internet web based shortcut and make it into a screen tile (on the start screen) which will appear for any user's start screen that logs on to the computer?
    The details:
    We came upon a great paper that's entitled "Customize Windows 8.1 Start Screens by Using Group Policy".
    By applying this paper we were able to accomplish our first goal: Lock down the start screen so no user could change it. We accomplished this by using the Start Screen Layout policy setting laid out in the paper.
    Our second goal: to customize the start screen is only half way met. We can set up the start screen the way we want and then export the .xml file. We are able to "reimport" the .xml file when the new user logs in. The installed programs
    will appear on the Start Screen but not the internet based web shortcuts that were on the inital setup start screen.
    (FYI - tried creating these tiles by running the start screen internet explorer app to the intended address and pinning them to the start screen. At this time trying to figure if there is a place to put desktop internet short cuts into a directory to make
    them appear on the Start Screen).
    We can see that the directory: C:\ProgramData\Microsoft\Windows\Start Menu\Programs is a place for program files to appear on the start screen. Is there a location web based shortcuts can be placed to cause them to automatically appear on the start
    screen for every user as well? If not how do we accomplish getting these into tiles for every user logging in?
    Sorry for the lengthy explanation. Hopefully it gets our question answered and helps others out there in the same boat!

    Karen-
    Results: Did not work. The web based shortcuts did not appear.
    Below is the steps taken with your tips incorporated. (Again it's lengthy sorry about that, but anyone can recreate what was done here. Maybe someone can see something left out by doing/reviewing it).
    Here is what was done:
    1. Installed a fresh install of Windows 8.1 enterprise on a pc. No updates were ran.
    2. During setup created the admin account.
    3. Logged into the account a simple start screen was arranged and setup by:
    Starting desktop Internet Explorer. Going to Technet's website. Clicked tools and then selecting "Add site to Apps" from the drop down menu. Went to Apps screen, right clicked and pinned it to start screen. Repeated this procedure with an
    educational web based site.
    Right clicked a few provisioned apps and unpinned them from the start screen.
    Made a few groups and labeled them. Web based shortcuts were arranged with one provisioned app in that particular group.
    4. Opened a Powershell, right clicked it and ran as administrator. Typed the following:
    export-startlayout -path C:\Users\Public\Master.xml -as xml
    (Master is the name chosen for this test .xml file and was put in a location all users would have privelages to access it).
    5. Opened the command prompt and right clicked and "ran as administrator", typed in gpedit.
    6. In the Local Group Policy under User Configuration, under Start Menu and Taskbar I choose the Start Screen Layout.
    7. Enabled the policy and typed in: C:\Users\Public\Master.xml for the Start Layout File.
    8. Opened computer management, under Local Users and Groups I chose Users, right clicked in the middle screen and created a new user called Alpha.
    9. Logged out of the inital account and logged into newly created Alpha account.
    10. When the Alpha account logged in the start screen came up with everything changed in the inital account but no web based shortcuts were found on the start screen or App view.

  • How do i put music from my pc itunes to my iphone 4

    How do i put music or pictures from my pc itunes to my iphone 4?

    Sync it.
    Open itunes, connect iphone, select what you want to sync, sync.
    You may want to read the manual:
    iPhone User Guide (For iOS 5.0 Software)

  • HT1296 I've just bought a new laptop, how do I put my iTunes from my old computer on it in a way where nothing gets lost or deleted?

    I've just bought a new laptop, how do I put my iTunes from my old computer onto my new laptop, in a way where nothing gets lost or deleted?

    or:
    Transfer iTunes purchases by:
    http://support.apple.com/kb/HT1848?viewlocale=en_USiTunes Store: Transferring purchases from your iOS device or iPod to a computer
    - Transfer othre music by using a third-party program like one of those discussed here:
    Copy music
    - Retain app data and other information, connect the iPod to yur computer and make a backup by right clciking on the iPod under Devices in iTunes and select Back Up
    - Restore the iPod from that backup
    Note that the Backup that iTunes makes does not include synced media like apps and music.

  • How to enable Further Entry Information from Entries Screen

    How to enable Further Entry Information field from Entries Screen. My requirement is to add a new input value in an existing element but system is not allowing me to enter a new input value , so I have decided to use Further Entry Information if it is possible? Any advise
    Regards,

    In leave adjustment element , i need to insert a comment input value to give comments for giving reason of adjustment etc. but system is not allowing us for a new input value , is there any solution? currently I am using reason LOV for this purpose.
    Regards,

  • How to restrict the user from accessing other screens before submittingdata

    Hi All,
      I have some screens developed in Webdynpro ABAP and all these have been linked to Portal as pages. In Portal If i click on the link in detailed navigation i can see the corresponding screen on the right side. Now in one screen i have to input some data and submit the data, Now my problem is if i enter some data and before submitting the data if i click on any other link in the detailed navigation, that corresponding screen is opening and all the data of the previous screen is lost.
    Can any one suggest me, how can i restrict the user from accessing other screens before submitting the data of that screen from portal perspective.

    Hi Prasanna,
    The pages can be restricted from the user access by using the ACL permission or you can restrict the page by making invisible in navigation area which you do not want to show to the user . Open the page properties and select navigation category in the drop down and select the Invisible in navigation area property to yes.By default this property is No.Change the property for all pcd pages which want to hide from user access.
    Hope this helps you...
    Regards,
    Rudradev Devulapalli
    Reward the points if helpful....

  • How to i put music from my cd's onto my iphone 4s

    How do I put my CD music onto my iphone 4s?

    Same as any other music.
    Put it in itunes.  Sync it.

  • How to pin a webpage to the start screen in Windows 8.1?

    Hi,
             I need help with this, please. I am using Windows 8.1 Pro x64. I have a big offline website, whose index page is "default.html". I want to pin this default.html to the metro start screen. Is it possible?
             I also tried "Add site to apps" option in Internet Explorer. But it said "The website can't be added to you start sceen", may be because it an offline HTML page.
              If anyone knows how to do this, please help me.

    Thank you very much. Now, please.. can I change the default IE picture of the pinned tile? If yes, how?
    Check solution here:
    How to Change Windows 8 Tile Icons
    http://www.how2blog.in/windows-8-change-tile-icons.html
    Please Note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Kate Li
    TechNet Community Support

  • How to unpin default apps from the Start Screen using vbscript

    Hi,
    I am looking for a way to programmatically unpin apps using vbscript from the Windows 8 Start Screen. I need to unpin SkyDrive, People, Calendar and messaging. I have been searching for a couple of days but I'm coming up with nothing so far.
    I know how to pin my own choices of installed apps using vbscript but I can't figure out how to unpin the default apps.
    Thanks,
    Rob

    Some thoughts:
    I started to investigate the many ways to manage the Metro start menu.  There are APIs but none are exposed to batch or VBScript.
    1.  Programs are installed into the 'All User' start menu, defult users profile start menu and a set of global links can be defined for metro.  THis is almost identical to ll previous versions except for the linking process which sets up the defaults. 
    If we install Office 20133 it will, if we choose, show up in all user start menu.  Each user can then unpin this. 
    2. There is a file (binary) that keeps track of the Metro settings.  It seems to only be changeable via the API or by using the shell 'pin/unpin' verbs.
    3.  This behavior I identical to XP and other systems with the exception of how it is stored and in that you cannot remove items from the sztart menu prior to Windows 8.
    4. The default user profile can be customized and stored on the network so that it affects every system.
    5. The "All Users" 'profile' can only be customized after a program is installed or by altering the programs installer.
    What you are trying to do runs counter to all Windows design since the first version of Windows.  We have NEVER been able to alter the start menu from script in such a way that a user could just add the item back in.  Your request seems to be incongruous
    to the design of Windows.
    Now don't get me wrong.  What you are asking is partially possible but you need to alter the Windows image so that the All users profile does not propagate the shortcuts.  You can do this by just deleting them.  You need to delete them before
    a user account is generated on the box. Delete them in the image. You can do this with MDT.  The shortcuts will not propagate to the user.  The user can still search for an app and add it to the start menu.
    There may be a better way to set this up but I cannot see how without using the API.
    ¯\_(ツ)_/¯

  • How do i put payment information as itunes gift card?

    you use to be able to put in none for billing information did they change that you have to use credit card now?  I keep getting asked to submit my credit card information but don't have a credit card only purchase gift cards from retail stores  

    There isn't any expiration date on an iTunes gift card as far as I know. Once you redeem the card, it is added to your balance and it is good until the balance is depleted.
    http://store.apple.com/us_smb_78313/question/answers/product/MD623LL/A/how-long- after-i-purchase-the-gift-card-will-it-expire/QUU449TT27DT4YY74

  • How to fill customized user information attribute (krb5principalname)???

    Hello,
    we have successfully implemented Kerberos Authentification (SPNego) in SAP Portal
    but now have to fill user attribute krb5principalname in ~500 Users.
    How can this be done?
    Is there any possibility to do this by Database-Script or ABAP or Java-Code?
    Are there any other user mass change solutions out there?
    Thank you very much for your ideas!
    Regards,
    Dominik

    Hello Dominik,
    We have had a similar requirement and did a file with the following code in it.
    [User]
    uid=p00000001
    com.sap.security.core.usermanagement:krb5principalname=************;
    [User]
    uid=p00000002
    com.sap.security.core.usermanagement:krb5principalname=************;
    [User]
    uid=p00000500
    com.sap.security.core.usermanagement:krb5principalname=*************;
    Repeat the above block of the code for all the 500 users and put it in a note pad in the same format.
    Now logon to Portal with "User Administration" role and navigate to User Administration-->Import
    Click the "Overwrite Existing data" checkbox and select the notepad with all the 500 users and click "Upload".
    This only takes a while and will update all the user records. Before uploading the file for all the 500 users, first test the process with 5 users and proceed accordingly.
    I hope this helps you. Let me know if you need any further help in this.
    Regards,
    Gopal.

Maybe you are looking for

  • Is there a way to force a new session so my "on new session" code will run?

    I'm using apex.oracle.com and I find values of application (global) and page items persisting across logins. I didn't expect that? I thought they would go away when I logged out of APEX. But I can change the values, logout, and log back in to the sam

  • Activate retail in ECC 6.0

    Dear All, Please guide 1. How to activate retail system in ECC 6.0 and 2. What are the differences after activating Retail and 3. Any other settings required in customization ?

  • Registry automatically changed after shutown in windows 7

    Hi, I have modify some registry setting of my windows 7 laptop but after system shutdown all registry changes go back to default setting. Even i forcefully added the registry from command prompt but still facing the same issue. So please help me how

  • Multihoming Primary/Backup PE MPLS VPN

    Hi there, I kind of stuck of implementing and configuring Primary/Backup scenario for MPLS VPN enviroment. Currently, only singe CE router connected to 2 PE router, Primary PE and Backup PE in the same POP. PE-CE IGP is running OSPF. On CE router pre

  • Function modules needed for Mass photo employee upload

    Hi all, I got requiremet to mass upload employee photos from UNIX server to Documentum via sap archive link. To do this, which function modules should I have to use? Could you please tell me the sequence of function modules? I also want to know how t