The number of Contact.TEL selcting API

Hello

Is there an API of the blackberry to select the number of the blackberry Conatct.TEL formula?

for example: when send us the msg from the blackberry, blackberry ask the number if it is a work, work2, home, home2, mobile you want to send. ?

How can I get the blackberry API?

Please help me

Concerning

Anthony singh

you need to implement yourself

Tags: BlackBerry Developers

Similar Questions

  • How can I easily count the number of contacts in my address book?

    Is there anyway to make the address book show the number of contacts?

    When I click on a folder, it shows all the contacts in the folder, but I can't see any display of the total number of contacts - if I want to know I have to laboriously count everyone!

    Thanks for the tips on this

    Here, if I select a local internal address book example of the PAB, it tells me in the status bar how many Contacts it contains.

    Maybe your status bar is disabled?

    In the address book, alt + v, view, toolbars, select Status bar.

  • How can I determine the number of contacts that I have

    How can I determine the number of contacts that I currently have on my iphone

    I don't know of a way on the iPhone, but if you have a Mac, you can go to the Contacts (platform) app and scroll to the bottom where you will find the total.

    Same for iCloud.com on your browser, go to the app, scroll down.

  • Peuvent Contacts displays the number of contacts?

    Other address books displays the total number of contacts and the number of contacts in the current group of visualization. Is there a way for Contacts in El Capitan, to do the same.

    I just scroll to the bottom of the list. However, for small lists, it doesn't show the number of cards. I don't know the required number to show.

  • How can smartphones blackBerry I see the number of contacts in my address book?

    BB Bold

    How can I see the number of contacts in my address book?  In addition, given the number of emails, etc., would be nice.

    Thanks for any help!

    Sam

    The number of entries poster by the entry in the address book, click the menu button, click Options. Under contact lists article click on the name of the address book. In the next screen, you will see a line that shows you the number of entries.

  • Hi can anyone give me the number to contact customer care for the Malaysia? I bought adobe membership yesterday but am facing a host of issues since then

    I bought the subscription yesterday but a number if issues are popping up and I am unable to use any of the same

    Can someone please give me the number of Malaysia customer please

    (1) I am unable to download the creative application of clouds. It shows it as trying to connect to the server and stay like that

    (2) when I am connected and try to "manage my account" I don't get the page. It times out

    (3) I am a paying member, but in my options learning and support after I click on contact on I only get the option to ask community.

    He was very confused.

    I am very keen to speak to a customer care agent, if someone can give me the number, please

    Please contact the Support from Adobe on the Customer Contact

    Kind regards

    Hervé Khare

  • where is the number to contact customer service?

    number customer service please.

    Hi Karen,.

    You will find telephone and chat here Info: Contact Customer Care

    For your convenience, here's the phone number: 1-800-833-6687.

    Best,

    Sara

  • Formula need to count cells based on the number of week

    I have a table used to track dates of contact with a client.  A column calculates the WEEKNUM of the date of contact.

    Week NUM

    Date

    First name

    2

    04/01/2016

    Amanda

    3

    16/01/2016

    Robert

    4

    17/01/2016

    Rosie

    6

    01/02/2016

    John

    6

    02/02/2016

    Soledad

    9

    21/02/2016

    Charles

    9

    24/02/2016

    Mary

    9

    25/02/2016

    Quince

    12

    17/03/2016

    Bob

    12

    17/03/2016

    Donald

    14

    03/31/2016

    Cathy

    14

    01/04/2016

    Shanna

    19

    02/05/2016

    Laura

    I need to report the number of contacts per week, so I mounted a second table with the week number in the first column.  Each line corresponds to the number of week.  I'm trying to use the function of COUNTIES to count the number of contacts in which the number of the week of the first table is equal to the week of the second table, but I can't get it to work.  Is there a way to do this?

    Week NUM

    Number of contacts

    expected outcome of the formula

    1

    0

    2

    1

    3

    1

    4

    1

    5

    0

    6

    2

    7

    0

    8

    0

    9

    3

    10

    0

    11

    0

    12

    2

    13

    0

    14

    2

    15

    0

    16

    0

    17

    0

    18

    0

    19

    1

    20

    0

    Never mind.  I'm a fool.  COUNTIF does it, and I'm stuck trying to make COUNTIF work.

  • NUMBER OF CONTACTS

    In the profile to the base, he has a "number of contacts", is that the number of people different ive contacted, or the number of times I've contacted someone online

    This means that the number of contacts you have in your contacts list.

  • How to get the Pic of the address book Contact gave a phone number

    Hello

    How can I access the Blackberry address book and retrieve Contact's photo?

    I tried:

    String phoneNumber = "1234567890";
    Vector contactList = new Vector();
    contactList = Phone.getContactsByPhoneNumber(phoneNumber);
    

    except with a real number, of course. However, if I keep this code, I get an error saying ClassNotDefFoundError or something like that. on the line of Phone.getContactsByPhoneNumber () .

    Is there another way I can get the pic contact associated with a single address book contact?

    Later, I'll probably use this code to get the photo of contact:

    Contact contact = (Contact) contactList.elementAt(0);
    byte[] byteStream = contact.getBinary(Contact.PHOTO, Contact.ATTR_NONE);
    EncodedImage contactPic = EncodedImage.createEncodedImage(byteStream, 0, byteStream.length);
    

    So as you can see, I just need to get in contact for a specific contact record.

    Thanks for any help.

    If anyone is interested, he will get the peak of contact contact, based on the phone number. It assumes there is only one contact for this number, so if there is more than one, it will get the peak of contact for the last contact only, because the loop will overwrite the previous photos.

    BlackBerryContactList contactList = (BlackBerryContactList) PIM.getInstance().openPIMList(PIM.CONTACT_LIST, PIM.READ_WRITE);
    
    // Get a list of contacts that match the phone number (I only want last 8 digits only)
    Enumeration _enum = contactList.items(inputNumber.substring(inputNumber.length()-8),BlackBerryContact.TEL);
    
    while(_enum.hasMoreElements())
    {
        BlackBerryContact c = (BlackBerryContact)_enum.nextElement();
        if (c.countValues(BlackBerryContact.PHOTO) > 0)
        {
            byte[] photoEncoded = c.getBinary(BlackBerryContact.PHOTO, 0);
            byte[] photoDecoded = Base64InputStream.decode(photoEncoded, 0, photoEncoded.length);
            EncodedImage contactPic = EncodedImage.createEncodedImage(photoDecoded,0,photoDecoded.length);
            String picType = String.valueOf( contactPic.getImageType() );
            // If you want to store the photo as a HEX String
            String hexPic = byteArrayToHexString(photoDecoded)
        }
    }
    

    FACT!

  • What is the maximum number of Contact fields in the Contacts folder?

    Can someone tell me what is the maximum number of Contact fields in the Contacts folder?

    maximum number of fields of Contact in the Contacts folder is 250.

    Thank you

    Eloqua Experts

  • I am trying to remove users from my team and decrease the number of licenses that I pay. Many places tell me how to buy more, but I can't find anywhere to remove licenses to reduce my costs. Where should I look?

    I am trying to remove users from my team and decrease the number of licenses that I pay. Many places tell me how to buy more, but I can't find anywhere to remove licenses to reduce my costs. Where should I look?

    Manage your account http://forums.adobe.com/thread/1460939?tstart=0 team can help

    or

    contact Adobe staff to help
    Chat/phone: Mon - Fri 05:00-19:00 (US Pacific Time)

    Creative cloud support (all creative cloud customer service problems)
    http://helpx.Adobe.com/x-productkb/global/service-CCM.html

  • How can I get the number of rows in the table using Sunopsis API target in ODI 10 g?

    Hi guys,.

    In fact, I want to send an alert message as soon as the interface is run from a package. I've included alert OdiSendMail that sends an email once the interface is running.

    Could someone please tell how to get the number of rows inserted into the table the Sunopsis API target.

    I tried to use < % = odiRef.getNbRows () % >, but this has not worked for me. Since I am a beginner, could you please help out me

    This is my mail to send ODI format

    "The population of data managed to < % = odiRef.getSysDate () % >

    Total of lines in the target table is: < - need an API code-> "


    Kind regards

    Clinton

    Published by: LawrenceClinton on February 25, 2013 20:53

    Hello

    Create the project with details below variable

    Nom_de_variable: Total_Row_Count

    Type of variable: Variable discount

    Definition tab:
    Data type: digital
    Action: No persistent

    Refresh the tab:
    Schema: provide the schema of your repository to work and be

    SELECT log.nb_row
    THE journal of snp_step_log, snp_scen_step step
    WHERE log.nno = step.nno
    AND step.scen_no = (SELECT scen_no FROM snp_scen_step WHERE step_name='<%=odiRef.getPrevStepLog ('STEP_NAME") % > ')
    AND log.sess_no = '< % = odiRef.getSession ("SESS_NO") % >' code at low
    AND step.step_name = ' < % = odiRef.getPrevStepLog ("STEP_NAME") % > '

    Note: add this variable after the stage of interface in your package (after the interface anywhere you can place), you can add this variable before ODISendEmailNotification in your package

    call this varciable * #Total_Row_Count * in the Notification of ODISendEmail

    for example :

    Data has been fulfilled successfully in < % = odiRef.getSysDate () % >
    Total no of lines filled are: * #Total_Row_Count *

    it will work

    cordially,
    Phanikanth

    edited by: Phanikanth on February 28, 2013 01:13

    edited by: Phanikanth on February 28, 2013 01:14

  • How can I find the total number of contacts on the iPhone 6 s?

    I used to be able to see the total number of contacts on my iPhone 6s, however, does not appear more.  How can I fix it?

    Go to iCloud.com then in contacts and made scroll down - it's the only place where I was able to find

  • I try to install the McGraw Hill software and get an access denied error message. I have contacted the software company, they tell me it's a compatibility issue with Windows Vista and to contact Microsoft.

    I try to install the McGraw Hill software and get an access denied error message.  I have contacted the software company, they tell me it's a compatibility issue with Windows Vista and to contact Microsoft.

    Right-click on the setup.exe > run as admin.

    See you soon. Mick Murphy - Microsoft partner

Maybe you are looking for