Need to select number in varchar

Hi
I have a strring like (RAZOR_LADIES_TRPLE_100/CS) ...i want to select only 100 from it ..can we do that using locate function in 11g...i am unable to write proper syntax ..Any help will be deeply appreciated
Regards
Debo

Hi,
You can try the below formula in your fx:
SUBSTRING('RAZOR_LADIES_TRPLE_100/CS' FROM (LOCATE('_','RAZOR_LADIES_TRPLE_100/CS',LOCATE('_','RAZOR_LADIES_TRPLE_100/CS',LOCATE('_','RAZOR_LADIES_TRPLE_100/CS')+1)+1) + 1) For (POSITION('/' in 'RAZOR_LADIES_TRPLE_100/CS') - (LOCATE('_','RAZOR_LADIES_TRPLE_100/CS',LOCATE('_','RAZOR_LADIES_TRPLE_100/CS',LOCATE('_','RAZOR_LADIES_TRPLE_100/CS')+1)+1) + 1)))
Here, replace 'RAZOR_LADIES_TRPLE_100/CS' with your actual column name. What this formula does is that it picks the characters after 3rd underscore (_) and upto the slash (/).
Also, you can refer to the below post:
Re: extract a part of a string in a full  string
Thanks

Similar Messages

  • Help needed in select query

    Hi,
    I need to select the max time for the transaction using the below query. I’m able to get the o/p. Here the problem is I need to fetch the corrletorid (primary key) as well. if try to get that I’m getting the o/p like case2.
    I want the o/p to be like case 1 with the corrleator id . plz help me to get the o/p.
    Case 1: select b.TransactionName, max(to_char(b.duration, 'mm/dd/yyyy hh24:mi:ss.ff')) as average from trandetails a,subtrandetails b where a.CORRELATORID=b.PCORRELATORID and b.PCORRELATORID='11' group by b.transactionname
    TRANSACTIONNAME MAXTIME
    FINT3 12/10/2007 19:53:09.042000
    FINT 12/10/2007 19:31:07.042000
    FINT2 12/10/2007 19:31:07.042000
    SQL> /
    Case 2: select b.TransactionName,b.correlatorid, max(to_char(b.duration, 'mm/dd/yyyy hh24:mi:ss.ff')) as average from trandetails a,subtrandetails b where a.CORRELATORID=b.PCORRELATORID and b.PCORRELATORID='11' group by b.transactionname,b.correlatorid
    SQL> /
    TRANSACTIONNAME CORRELATORID AVERAGE
    FINT2 102 12/10/2007 19:31:07.042000
    FINT3 108 12/10/2007 19:53:09.042000
    FINT3 103 12/10/2007 19:31:07.042000
    FINT 101 12/10/2007 19:31:07.042000
    in the above output i should have only record(max time) for FINT3.
    Thank

    Sharma,
    Please find the below sample data(insert stmt and create table):
    ======================================
    create table trandetails(
    correlatorid varchar2(20) CONSTRAINT correlatorid_FKey REFERENCES Subtrandetails(correlatorid),
    username varchar2(25) NOT NULL,
    applicationname varchar2(25) NOT NULL,CONSTRAINT composite1_pkey1 PRIMARY KEY(correlatorid ,applicationname));
    create table Subtrandetails(
    correlatorid varchar2(20) PRIMARY KEY,
    PCORRELATORID      varchar2(20),
    TransactionName varchar2(25) NOT NULL,
    Machinename varchar2(15) NOT NULL,
    STARTDATE timestamp NOT NULL,
    ENDDATE timestamp NOT NULL,
    SourceName varchar2(25),
    FunctionName varchar2(25),
    LOC number(5),
    CONTEXTPROPERTY1 varchar2(25),
    CONTEXTPROPERTY2 varchar2(25),
    CONTEXTPROPERTY3 varchar2(25),
    TransactionStatus varchar2(25) NOT NULL CONSTRAINT Transaction1_Status_chk Check (TransactionStatus in ('Success', 'Failure', 'Abort')));
    INSERT INTO trandetails VALUES ('11','FINAPP','ANUAPP1');
    INSERT INTO trandetails VALUES ('13','FINTEST','ANUAPP2');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('10','1','ARM','blrkec95931d','10-DEC-07 03.24.07.042000 PM','10-DEC-07 03.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('11','1','ARM1','blrkec95931d','10-DEC-07 04.24.07.042000 PM','10-DEC-07 04.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('12','1','ARM2','blrkec95931d','10-DEC-07 05.24.07.042000 PM','10-DEC-07 05.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('13','1','ARM3','blrkec95931d','10-DEC-07 06.24.07.042000 PM','10-DEC-07 06.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('14','1','ARM4','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('101','11','FINT','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('102','11','FINT2','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('103','11','FINT3','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('104','13','SAP1','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('105','13','SAP2','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('106','13','SAP3','blrkec95931d','10-DEC-07 07.24.07.042000 PM','10-DEC-07 07.31.07.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('107','13','SAP2','blrkec95931d','10-DEC-07 07.2.10.042350 PM','10-DEC-07 07.50.10.042050 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('108','11',' FINT3 ','blrkec95931d','10-DEC-07 07.16.07.042000 PM','10-DEC-07 07.53.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('109','108','FINT3','blrkec95931d','10-DEC-07 07.20.07.042000 PM','10-DEC-07 07.59.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('110','108','FINT3','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('111','108','FINT4','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('112','108','FINT5','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('113','108','FINT6','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    INSERT INTO
    Subtrandetails(correlatorid,PCORRELATORID ,TransactionName,Machinename,STARTDATE,ENDDATE ,TransactionStatus )
    VALUES ('114','108','FINT7','blrkec95931d','10-DEC-07 07.18.07.042000 PM','10-DEC-07 07.57.09.042000 PM','Success');
    ======================================
    Thanks.

  • E56 screen broken - need help getting number off p...

    I hope someone can help me. The screen on my E65 has broken and I need to get the number off the phone before sending it to be repaired. Without a screen I am flying blind so have no idea what keys I need to be pressing.
    I have tried connecting the phone to my PC with PC Suite but the PC software doesn't recognise the the phone has been connected. Is there something I need to do on the phone to complete the connection?
    The other way to get the number would be to copy them from the phone memory to the SIM. Can anyone tell me the key presses I need to do to achieve that?
    Help gratefully received.
    ...Neil

    When you connect your phone to your pc with the usb cable, a list if connection mode options normally appears on your phone display. You need to select  "Pc Suite". What you could do is plug in phone to usb, select. If that doesn;t work, disconnect, reconnect scroll down one and select again. Keep trying until it finally connects to PCSuite. There are only 4-5 options so you won;t have to try that many times.

  • Need to select the max record in a report

    Dear All,
    I have a certain report which displays the employee records along with their 'empids' and their 'beginning date'. For each 'empid', there are more than one records and hence more than one 'beginning date'. I need to select that record which contains the maximum 'beginning date'. How can this be possible in the reporting level without doing any coding in update rules or writing any exit ?
    Regards,
    Srinivas

    Hi,
    I think it is not possible because  i am having doubt how the for each employ id how it will be different joining dates,i think for each employ having differeent joining dates ,if u want to see maximum number of employs in which in company then we can go for the only option non cumulative kf with maximum value with ur joining date as the reference.but it report level if it is keyfigure we can have options of maximum and minimum and like that we can do but in case of characterstic like employnumber and joiningdate both are characterstics.
    Thanks
    sathsih

  • Need to select XMLTYPE data in unindented form, from a query.

    I need to select XMLTYPE data among relational data as an xml element.
    SELECT
      XMLSERIALIZE(DOCUMENT
      XMLELEMENT ("Account",
          XMLATTRIBUTES (LPAD(ROWNUM, 10 , '0')        AS "recordId"    )
           ,XMLELEMENT ("Header"
               ,XMLELEMENT ("AccountId"
                  ,XMLELEMENT ("AccountNumber"          ,car.acc_nbr              )))
                  ,XMLELEMENT ("CreditPurpose"            ,car.credit_purp           )
                 ,XMLELEMENT ("AccountType"              ,car.acc_type              )
                , (cdx.cus_dtls)  -- /*THIS IS XMLTYPE data*/
      ))AS crdtrpt
    FROM  cus_acc_rpt car , cus_dtls_xml cdx
    WHERE car.ar_id = cdx.ar_id
    Here cdx.cus_dtls need to be selected in unindented form (each records as a long unbroken string of data). So that I can SPOOL huge number of records in lesser time.
    I am trying to convert this into CLOB and Insert into CLOB type column of a table.
    But XMLSERIALIZE does not seem to serialize the xml data in cus_Dtls column.
    However it does serialize the xml typ data selected other than cus_dtls.
    Any quick hints to meet the requirements will be very welcomed !!
    Cheers !!
    Saxena

    Use XMLSerialize with NO INDENT option :
    SELECT XMLSERIALIZE(DOCUMENT
             XMLELEMENT ("Account",
             NO INDENT
           )AS crdtrpt
    FROM  cus_acc_rpt car , cus_dtls_xml cdx
    WHERE car.ar_id = cdx.ar_id

  • Need to select vendor nos starting with 2

    Hello All,
    In the selection-screen the user enters vendor no as 2*.I need to select all vendor no details starting from 2.its not working when i use 'WHERE lifnr LIKE '2%' ' in select query.Please let me know ur inputs.
    Thanks,
    Rakesh.

    Hi Rakesh,
    In addition to what Mr. Srinivas has said,  I would suggest you to use OVERLAY option to append '0' to the vendor number.
    Suppose if the vendor number is 12345 you have to append it with 0000012345
    if the vendor number is 8546325 you have to append it with 0008546325
    This indicates that you can not always hard code the number of zeroes as '00002%' , since the length of vendor number varies.
    The question you have asked seems a bit tricky and i guess will involve some analysis to be done to achieve the results
    Code Snippet
    DATA: l_lifnr TYPE lifnr,
          l_lifnr_temp TYPE lifnr.
    l_lifnr_temp = '10093586'.
    SHIFT l_lifnr_temp RIGHT DELETING TRAILING space.
    OVERLAY l_lifnr_temp WITH '0000000000'.
    SELECT lifnr
      INTO l_lifnr
      FROM bseg
      WHERE lifnr = l_lifnr_temp.
      ENDSELECT.
      IF NOT l_lifnr IS INITIAL.
        WRITE l_lifnr.
      ENDIF.
    Hope this helps.
    Regards,
    Farheen

  • Adobe Elements redemption code? hat do you suggest? I need the serial number to activate and can't find a phone number to call anyone to help!

    I bought Adobe Elements in a box. I have looked for the redemption code and taken what appears to be a code from the back of the box, and another from the envelope. They don't work. What do you suggest? I need the serial number to activate and can't find a phone number to call anyone to help! Please contact me at [removed]
    [personal information removed... Mod - https://forums.adobe.com/docs/DOC-3731]
    [This is an open forum, not Adobe support, please do not post personal information]

    Photoshop Elements is not part of the Cloud, I will move this to that forum
    Photoshop Elements Forum http://forums.adobe.com/community/photoshop_elements
    Select a topic, then click I STILL NEED HELP to activate Photoshop Elements Online chat
    -http://helpx.adobe.com/contact.html?product=photoshop-elements or
    http://helpx.adobe.com/photoshop-elements/kb/troubleshoot-installation-photoshop-elements- premiere.html

  • Need an online number for local area code 606 for ...

    I need an online number for my local area code 606 Morehead Kentucky.
    There are several cities surrounding mine with local online number options
    but not Morehead, Kentucky. If it is possible, please add Morehead to your list
    and I will purchase an online number. Thank you for your attention.

    mjm10036 wrote:
    I wanted to get an Online Number for New York City and got as far as
    Select your local area and choose a number
    at
    https://secure.skype.com/store/skypein/number?voucher=0&fuseaction=skypein.info&country_code=US&vc=0...
    But couldn't figure out what to chose among 13 choices listed as New York City Zones 3 through 15.  Is there a difference in the Zones? I notice they all have the same area code - 347.
    There are some subtle differences, related to how local phone calls are billed for callers in New York City.  It would not affect how the Online Number works for you - you are not charged for incoming calls made to Skype's Online Numbers, when you answer those calls with Skype.  For those calling you, it can mean the difference between a free call to your Online Number and having to pay a small fee to call your number.  For someone calling from outside the New York City area, it probably doesn't matter which of those zones you use for your Online Number.
    I have not found a good concise online reference to those calling zone in the past.  I have found some rather cryptic material that shows which prefixes in each of the New York City area codes are in each of those zones.  The zones are defined by lists of prefixes within each of those area codes, and those lists can be substantial with the growth in mobile phones over the years. 
    Patrick
    Location/Ubicacion: Arizona USA
    Time Zone/Hora Local: UTC/GMT -7
    If this message has adequately addressed your issue, please click on the “Accept as Solution” button. If you found a post useful then please "Give Kudos" at the bottom of my post, so that this information can benefit others.
    Si esto mensaje le ha ayudado, por favor haga clic en "Aceptar como solución". Si encuentra un mensaje útil, por favor "Da Kudos" al final del mensaje, por lo que esta información puede beneficiar a otros.
    I am not a Skype employee. No soy un empleado de Skype.

  • I an getting an error with photo merge in PS cc . It gives me a code tmp00000001 using from photoshop and if I try from bridge it tell me that I need to select more than one image. It is not recognizing the photos I am selecting in bridge. please help. my

    A new problem with CS5 forced me to download PScc but the problem is still there.  I am getting tmp00000001 in photo merge when importing multiple files from inside PS and if trying from bridge I am getting a pop up box telling me I need to select more than 1 file. Photoshop potomerge is not recognizing my selections from bridge..!! please help.. my knowledge of computers is a 3 on a scale of 1-10

    if i run this particular code
    ( SELECT
    AccountDetails.CUSTOMERNUMBER, AccountDetails.ACCOUNTNUMBER, CUSTOMERDETAILS.CDTITLE, CUSTOMERDETAILS.CDFIRSTNAME, CUSTOMERDETAILS.CDLASTNAME, AccountDetails.ACCOUNTTYPE,
    AccountDetails.ORIGINALCONTRACTENDDATE, AccountDetails.CONTRACTTERM, AccountDetails.CONTRACTENDDATE, AccountDetails.BRANCHAREA, AccountDetails.PRODUCTTYPE,
    AccountDetails.HOUSEBANKACCOUNT, AccountDetails.CARMODEL, AccountDetails.CARLICENCE, AccountDetails.ARREARSBALANCE, AccountDetails.CODEBTOR, AccountDetails.GUARANTORNUMBER
    FROM AccountDetails
    JOIN CUSTOMERDETAILS ON AccountDetails.CUSTOMERNUMBER = CUSTOMERDETAILS.CUSTOMERS1
    WHERE EXISTS
    ( SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    AND DebtEpisodes.DCASentDate IS NULL
    AND Dcaaccountallocation.ACCOUNTID = AccountDetails.ACCOUNTNUMBER
    AND DebtEpisodes.DCAORLAWYER = 'DCA'
    This returns 1 row of data
    However if i run a small part of the above code...
    SELECT *
    FROM Dcaaccountallocation
    JOIN DebtEpisodes ON DebtEpisodes.ACCOUNTID = Dcaaccountallocation.ACCOUNTID
    WHERE Dcaaccountallocation.dcaid = 41
    AND Dcaaccountallocation.status = 2
    It returns a lot of rows with a status of 2
    Now i presume what I am going to do is to ensure that all the fields provide satisfactory requirements, with regards to the above code. Although I have many records in all the stated tables already.
    :(

  • Please help! My iPod was stolen and I need the serial number!

    I bought my iPod new from fred meyer in February, on saturday it was stolen from my car along with my phone. I made a police report but I need my serial number or I wont get it back even if they recover it. Please help! I lost over 2000+ photos of my son on it! It is a blue 64G 5th generation iPod touch, Ive been trying to get the serial number for three days now and cant. I dont have the case anymore I am a single mom who has had to move several times in the past few months it got lost somewhere. Is there any hope of getting my serial number?

    iOS- How to find the serial number, IMEI, MEID, CDN, and ICCID number
    How to find the serial number of your Apple hardware product
    What To Do If Your iDevice Is Lost Or Stolen
    iPhone, iPod Touch, and iPad
    If you activated Find My Phone before it was lost or stolen, you can track it only if it is connected to the Internet by Wi-Fi or cellular. 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. iCloud- Use Lost Mode
      6. What to do if your iOS device is lost or stolen
      7. 6 Ways to Track and Recover Your Lost/Stolen iPhone
      8. Find My iPhone
      9. 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)

  • In Icloud I can't see my "numbers" icon which i need to select "tick" to transfer data to my other devices via icloud. any ideas why it's not showing up?

    In Icloud on my imac I can't see my "numbers" icon which i need to select "tick" to transfer data to my other devices via icloud. any ideas why it's not showing up?

    You have to do it app wise, which means that the icon won't show up in settings, but you will be able to move files from your local drive to iCloud via the Numbers app (move... > choose the iCloud option).
    It requires that you set up the same iCloud account on all your devices and that you have the latest version of Numbers on all your devices as well.

  • I installed lightroom 5 with a 30 day trial and it finished. Yesterday I installed cc and when I open LR5 I need a serial number. What do I do/how do I get one? Please help Tank you

    I installed lightroom 5 with a 30 day trial and it finished.
    Yesterday I installed cc and when I open LR5 I need a serial number.
    What do I do/how do I get one?
    Please help, Thank you.

    Your photos remain in place, the catalog you have been using will remain. After you install Lightroom from the CC, all you have to do is open your existing catalog and continue right where you left off.

  • Having purchased and installed pages after finishing my 30 day trial I now can't save changes to documents, it keeps saying that my trial is over and I need a serial number?  Never got a serial number, any ideas how to rectify this?

    Hi, having purchased and installed pages after my 30 day trial had finished I am now unable to save any changes to documents I had created in the trial version.  It says I need a serial number, which I never got when I purchased the pages app.  Does anyone kno how to rectify this, I would be very grateful for any help as I'm currently writing up my thesis and am now unable

    Hi, I had the same problem and I found that you don't need a serial number anymore. Here is what I did:
    (1)I went to Applications fodder on my Mac. (You can navigate to the Application folder from 'New Finder Window.')
    (2) Deleted Pages (installed as part of the free  free trial version) from the Applications Folder. Also deleted 'IWorks' from the Applications folder.
    (3) Started AppStore.
    (4) Clicked on  Purchases.
    (5) Clicked on Pages.
    (6) Clicked Install.
    (4) repeated (5) and (6) for Numbers and Keynote

  • My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    My MacBook Pro was stolen last night. I need the serial number. It is not showing up on my devices list. My iPads and iPhones are. I have used it to to sync my phones and pads as well having it registered with apple. Any thoughts? Thanks

    Click here: https://supportprofile.apple.com/MySupportProfile.do
    SIgn in with your Apple ID, the same one you used to access this support forum.
    Hopefully, you will see a list of all the devices you registered with your Apple ID, including their serial numbers. Let me know how this works out.
    Edit to add: If you enabled "find my imac" on your Pro, you ought to be able to remotely lock it, or even wipe its memory. Click http://www.icloud.com/ sign in with your Apple ID and click the big green "find my iPhone" icon (nevermind the name, it will find all your devices provided they're running Lion or iOS 5).
    Then file a police report and nail the b*****d.

  • I lost my Iphone 4s and I need the iMei number to trace. THAT fellow actually off my phone at my last location.I dont have sim on that i phone.I am trying to trace the iphone through find my phone but it showing offline. Thus another way of solving w

    I lost my Iphone 4s and I need the iMei number to trace. THAT fellow actually off my phone at my last location.I dont have sim on that i phone.I am trying to trace the iphone through find my phone but it showing offline. Thus another way of solving will be through IMEI number which i need to hand it over to the police! How can i get the iMei number? Can I use Itune? As previously, I did sync into iTunes before. Will it have the record of my iMEI number? PLEASE HELP ME!
    iPhone 4S, iOS 7.0.1

    how to find IMEI, etc
    http://support.apple.com/kb/HT4061?viewlocale=en_US&locale=en_US

Maybe you are looking for