How to get imei number and mac address of mobile device on adf mobile

Hi experts,
I need to get imei number and mac address of device (supposed to be works on both android and iphone) on adf mobile
bgrds

Hi,
Adf mobile support phonegap api. Version must be 2.0(you can check it by below code snippet) You can just reach uuid from both platform via cordova. Espescially, IOS restriction limits you to get device infos that you mentioned, but you can get uuid.
   getCordovaVersion = function ()
        var cordovaVersion = device.cordova;
        return cordovaVersion;
    getDeviceUUID = function ()
        var uuid = device.uuid;
        return uuid;

Similar Messages

  • How to find MAC-Address of a device using ADF mobile?

    Hi,
    I am developing an mobile application using ADF Mobile. The application necessitates the use of MAC Address for further development.
    Android SDK provides an easy way to find the MAC Address as:
    WifiManager wifiManager = (WifiManager) getSystemService(Context.WIFI_SERVICE);
    WifiInfo wInfo = wifiManager.getConnectionInfo();
    String macAddress = wInfo.getMacAddress();
    Is there a similar way in ADF mobile to retrieve the MAC Address of the device?
    Regards,
    Joseph

    This cant be done.

  • How to get customer number and name from the SD document

    Hi All,
    Can you please let me know how to get Customer Number and Name from the SD Document?
    Thanks a lot....
    Anil

    Hi,
    It will be displayed in the SD (BIlling document) itself,  you clikc on the VF03. The customer name and number will also appear in the SO document also Tcode VA03
    regards,
    radhika
    Edited by: kolipara radhika on Jul 10, 2009 5:32 AM

  • How to set the IP and MAC address in C program?

    My working environment is Sun250 Server, Solaris 7 operating system. I encountered a problem ---- How to set the IP and MAC address in C program to make the system change it IP & MAC at runtime?
    Any idea is welcome! Thanks!

    Hi
    As a simplest possible solution, you can use the system command
    to run ifconfig that can set both the mac address and the IP address of the system. You will have to use setuid though.
    Or you can use the DLPI calls ( do a man DLPI or search for a
    Sun documentation on the same at http://soldc.sun.com) to write
    a pure C program.
    HTH
    Shridhar

  • How to get equipment number and type for given PM order

    hello all,
    i know the PM order number and corresponding object number (like OR9100000175),
    now using these how do i get equipment number and equipment type..
    do i need to use any function module...
    thanks in advance...

    From VBAK table with order number AUFNR, get notification no - QMNUM.
    From QMIH table with this notification no QMNUM, get equipment no - EQUNR.
    And then from equipment master EQUI, you can get the equipment categeory EQTYP from EQUNR

  • How to get IMEI number of ME using proactive command

    Can anyone send me a sample code to get IMEI number of mobile equipment using proactive commands....

    Hi,
    I hope its can help you.
    private static final byte TAG_IMEI = (byte) 0x14;
    byte result=0;
    short IMEI_LEN;
    byte[] imei_buf;
    ProactiveHandler ProHdlr;
    ProactiveResponseHandler ProRespHdlr;
    ProHdlr = ProactiveHandler.getTheHandler();
    ProHdlr.init(PRO_CMD_PROVIDE_LOCAL_INFORMATION, (byte) 0x01, DEV_ID_ME);
    result = ProHdlr.send();
    if (result < RES_CMD_PERF_SESSION_TERM_USER) {
    ProRespHdlr = ProactiveResponseHandler.getTheHandler();
    IMEI_LEN = ProRespHdlr.findAndCopyValue((byte) TAG_IMEI, imei_buf, (short) 0);
    Cheers,
    Asep

  • How to get imei number via serial number?

    i have lost my iphone 4 and i dont have anything except my mobile serial number. to report in police i need imei number. please help me.

    If you don't have access to the phone, you may have a backup from iTunes that we can use to pull out the IMEI number. I am one of the developers for a program called Decipher Backup Browser -- we built the ability to view the IMEI number in the backps into our free trial (for folks in this exact predicament!) If you want to give it a try, you can download the free trial of our program here:
    Mac: http://deciphertools.com/bb-mac.html
    Windows: http://deciphertools.com/bb-win.html
    If you want to read a little bit more about doing this, you can also read this blog post I wrote about it here:
    http://decipher-media.blogspot.com/2013/04/how-to-find-your-imei-if-you-no-longe r.html
    (Disclaimer: As I mentioned, I work for the company that I am posting links for, so I may benefit, directly or indirectly from clicks on the links above. )

  • How to get week number and day in my result?

    hi experts, i have given the data is ID and DATE(yyyymmdd),i want to get output like ID,DATE,WEEKNO,YEAR,MONTH,DAY. how to get this output.
    thanks & regards
    vijay

    In a routine transformation you can call function
    DATE_GET_WEEK
    to get the week number from the date.
    To determ the others, use the substring
    YEAR = DATE(4)
    MONTH = DATE+4(2)
    DAY = DATE+6(2)

  • How to get PO number and line item in he check item method of MB_MIGO_BADI

    Hi All,
    First time I am using BADI and I am stuck in one issue.
    I am using CHECK_ITEM method of MB_MIGO_BADI.
    While pressing CHECK button MIGO for a GR(wrt to a PO),a warning message has to displayed.This warning message has to displayed according to the line item in the purchase order.
    In the CHECK_ITEM method, how I will get the PO number and the line item imported into that method.?
    Thanks.

    HI  ,
    in Check_item method 
    DATA: ls_extdata TYPE zqsscrap_screen_field .
    LOOP AT gt_extdata INTO ls_extdata .
    endloop.
    Check what you are getting  .
    regards
    Deepak.

  • How to get the number and response time of HTTP request through Weblogic?

    hi,
    does anybody know how to get the HTTP request information through Weblogic server, such as the number of HTTP request in 1 min and the average response time of request in 5 mins ?
    Or is there anyway i can do it through monitoring and get these data then? If so, please help tell me.
    Thanks in advance
    BTW, we don't have the 3rd-party monitoring tool here.

    Hi,
    tables: usr02, usr41.
    data: OPCODE_MODE_COUNT(1) TYPE X VALUE 3,
          modes like sy-index,
          u_MODES LIKE MODES.
    select * from usr02.
      select * from usr41 where BNAME = usr02-bname.
        CALL 'ThUsrInfo' ID 'OPCODE' FIELD OPCODE_MODE_COUNT
          ID 'TID' FIELD usr41-TERMID
          ID 'MODES' FIELD MODES.
        IF SY-SUBRC = 0.
          u_MODES = u_MODES + MODES.
        ENDIF.
      endselect.
      if sy-subrc = 0.
        write:/ usr02-bname, u_MODES.
      endif.
      clear u_modes.
    endselect.

  • Need to know how to get imei number from an iphone i no longer have the box, i have the serial number any help!?

    hi i need help if anyone knows how i can find imei number i have the serial number??

    Hey bud sorry i forgot to mention that my phone was stolen, so i go online to see the phone i bought in the apple web page and all i can see is the serial number for the phone, my question is if i can use the serial number to know the imei number?

  • How to Get IMEI number

    is there any code available for gettin the imei number internally

    Well, it all depends on your problem domain.
    If you're processing CDR files from transmission towers the IMEI may be contained in those files (depending on the make and model of the tower, some may include it only if there is no other way to identify the phone in question, like a SIM number).

  • How to get bus number and socket number of NI-6143 PCI board using NI-DAQmx?

    Hello everybody and Happy New Year!
    I assume similar question has already been discussed earlier, here, for example.
    My Visual C++ application scans PCI buses and slots to enumerate supported PCI DAQ boards. These boards are produced by different manufacturers, my company and NI, for instance. There is no support of NI-6143 PCI board by Traditional NI-DAQ, so I am using NI-DAQmx 7.2. There is promising function DAQmxGetDeviceAttribute() defined in NIDAQmx.h, but it supports request of DAQmx_Dev_ProductType and DAQmx_Dev_SerialNum device attributes only, for now.
    Thus, it's another request to NI-DAQmx development team to improve functionality of the API. Using own lookup tables is not the good way to solve the problem. Good luck!

    Hello and Happy New Year to you also!
    As you were able to find with the hyperlink included in your post, this is a common question and request from our DAQmx users transitioning from Traditional NI-DAQ. The best thing for you to do at the current time would be to post your discussion thread in a Product Feedback form. This is the media that you will want to use to request features with our products. It is closely monitored by our development teams, so you suggestions will strongly be considered.
    Best Regards,
    Jared A

  • Get Attachment Name and from address of mail in bpel process

    Hi All,
    I am using UMS Adapter to poll email server and  getting the attachment and saving it to local disk.
    In Payload from UMS adapter  i am getting href of the attachment  but I am not able to figure out as to how to get Attachment Name and From Address of a mail in my Bpel process.
    please guide me in getting them .
    Thanks in Advance
    Divyanshu

    1. Double click on your composite receive activity.
    2. Go to Properties tab in your receive activity.
    3. Click "+".
    4. Window that pops up,scroll down and select "jca.ums.from" and store it in some variable say fromAddress (Make sure before adding this property u create fromAddress variable of string data type).
    5. Click OK.
    6. In the same way add property for "jca.ums.msg.content-description" from drop down and assing it to some variable.
    you are good to go.
    Hope this helps.
    Regards,
    Karan
    Oracle Fusion Middleware Blog

  • Cisco ip to mac address of a device?

    What command can I run in CLI, to get a mac address that is associated with a provided ip address?
    Context: In order to access wifi, users have to go through a web authentication. Upon submiting their credentials, we are able to see their ip address. We want to query router api with cli or something, to find a mac address based on the ip.
    Any pointers?

    It is usually not possible for a person to get the MAC address of a computer from its IP address alone. These two addresses originate from different sources. Simply stated, a computer's own hardware configuration determines its MAC address while the configuration of the network it is connected to determines its IP address.
    However, computers connected to the same TCP/IP local network can determine each other's MAC addresses. The technology called ARP - Address Resolution Protocol included with TCP/IP makes it possible. Using ARP, each computer maintains a list of both IP and MAC addresses for each device it has recently communicated with.
    Most computers allow you to see the list of IP and MAC addresses that ARP has collected there. In Windows, Linux and other operating systems, the command line utility "arp" shows this information. Using "arp," you can in fact determine the MAC address of some computers from their IP address. ARP works only within the small group of computers on a local area network (LAN), though, not across the Internet. ARP is intended for use by system administrators and is not generally useful as a way to track down computers and people on the Internet.

Maybe you are looking for