SMS pick phone number randomly if the contact has more than 1 phone number

When sending SMS, it pick the phone number randomly if the contact has more than one phone numbers. SMS ignore the default phone number too. Anyone having the same issue?

You might try something like this:
INSERT INTO
    DUAL_TARGET
        PERSON_NO,
        FNAME,
        CNUM
SELECT
    PERSON_NO,
    FNAME,
    CASE
       WHEN COUNT(*) > 1 THEN
           NULL
       ELSE
           MAX(CNUM)
    END AS CNUM
FROM
    DUAL_DATA
WHERE
    CTYPE = 'cc'
GROUP BY
    PERSON_NO,
    FNAME;

Similar Messages

  • JSR-75 PIM API creating Contact with more than one Number (Phone,Fax ...)

    Hi everybody
    I try to create a contact with more than one Phonenumber using the method contact.addString(...) .
    Contact with one single number is no Problem but contacts with more than one Number are ignored and are not stored to the phonebook. I try to add the Numbers using a for -loop. Is there an other way to solve this Problem?
    please Help.
    Thank You.

    Wonder if you have made any progress - if so,
    could you share ?

  • Can't install itunes on windows 7 machine. I keep getting A message stating that I don't meet min. requirements, but the machine has more than enough. What do I need to do to correct this?

    Can't install itunes on windows 7 machine. I keep getting A message stating that I don't meet min. requirements, but the machine has more than enough. What do I need to do to correct this?

    Are you trying to install the 32-bit version on a 64-bit machine, or vice versa?
    For general advice see Troubleshooting issues with iTunes for Windows updates.
    The steps in the second box are a guide to removing everything related to iTunes and then rebuilding it which is often a good starting point unless the symptoms indicate a more specific approach. Review the other boxes and the list of support documents further down the page in case one of them applies.
    The further information area has direct links to the current and recent builds in case you have problems downloading, need to revert an older version or want to try the iTunes for Windows (64-bit - for older video cards) release as a workaround for performance issues or compatibility with third party software.
    Your library should be unaffected by these steps but there is backup and recovery advice elsewhere in the user tip.
    tt2

  • Lumia 520 SMS- when a contact has more than one nu...

    Hi- when calling a contact who has more than one phone number it is easy to choose which of the numbers for that contact to use, but when sending SMS there is no option to choose. How does the SMS system decide which of the available numbers to use?
    Solved!
    Go to Solution.

    If I do the following steps: Messaging > + >To + > Select contact > I see all numbers listed for the contact.
    If I do instead: People > Contact > SMS, the number entered as "mobile" is selected by default. If you want to change it to "mobile2", you need to go: ... > switch number and select from there.

  • Nokia -Grouping Contacts with more than 1 number

    I want to sync my phone with MS Outlook in such a way that it groups multiple numbers (eg home, mobile) for 1 contact under that contact's name.
    When I do it syncs to the SIM.
    For contacts with more than 1 entry it sets up contacts as: John Smith; John Smith1 etc
    When I copy from SIM to phone memory it keeps these names
    Does anyone know how to do this - I did manage it with the same handset (now replaced) but can't remember how.
    It feels like I should be able to sync to the phone memory rather than SIM, but the Mokia PC suite doesn't seem to allow me to do that.

    I'm From South Africa and the sim cards we have in this country just save one number per contact and I would also get the same result with any simcard that is available in this country if I tried what your trying to do.
    Assuming, There aren't many different types of sim cards then your sim card will also not be able to store multiple numbers to the same name. They just aren'r designed that way.
    The same will happen if you copy your contacts from phone to sim. It just can't be done 
    Show your appreciation. Hit that kudos button real hard

  • Split the IDOC into multiple IDOC if the IDOC has more than 500 records

    Hi All,
    I developed an outbound IDOC in which we are facing an issue.
    There is some limitation on the maximum idoc size it can handle.
    If number of records is more than 500, split the idoc into multiple iDoc's, e.g. if it would have 1300 records , the result would be 2 iDoc's with 500 records, and the last one would have 300 records
    How can i acheive this.
    Regards
    Jai

    Hi,
    1) first you need to know which message type/Idoc type you are triggering.
    2) Get the Corresponding processcode from Partner profiles(WE20/ WE41).
    3) Then the look for prper user-exit in the related processing FM.
    4) write logic to split the IDoc accordingly.
    if no proper user exit available then copy the standard processing FM and need to all ALE related configurations.
    Catch hold any ABAP expert in your team to do all these.
    Suresh

  • Report the computers has more than 3 users logged in for greater than 10 hours in a week

    I am looking for a report that gives, list of computers that has/had more than 3 users logged into computer for 10 hours in past one week.
    Help.
    Regards,
    Saravanan R
    saravanan rajappa

    I think, i have found the answer self..
    SELECT X.ResourceID
    ,X.TopConsoleUser0
    ,X.SecurityLogStartDate0
    ,X.TotalConsoleTime0
    ,X.TotalConsoleUsers0
    ,X.TotalSecurityLogTime0
    ,Y.Name0
    FROM
    [CM_CAS].[dbo].[v_GS_SYSTEM_CONSOLE_USAGE_MAXGROUP] X,
    [CM_CAS].[dbo].[v_GS_COMPUTER_SYSTEM] Y
    WHERE
     X.ResourceID=Y.ResourceID
     AND
     X.TotalConsoleUsers0>=3
     AND
     X.TotalConsoleTime0>=600
     AND
     X.TotalSecurityLogTime0>=3840
    Is the data coming out of this query right?
    saravanan rajappa

  • Does BPEL allow partnerlinks where the WSDL has more than one namespace

    Hi
    I have a WSDL where the schema is in a different namespace than the message types. BPEL Designer throws "Exception: Problem building schema" when accessing the variable in the "Assign" activity. Can someone point out if there is a problem with my WSDL file ?
    <?xml version="1.0" encoding="UTF-8"?>
    <definitions name="ProvWithXSL"
    targetNamespace="http://xmlns.oracle.com/ProvWithXSL"
    xmlns="http://schemas.xmlsoap.org/wsdl/"
    xmlns:client="http://xmlns.oracle.com/ProvWithXSL"
    xmlns:tns="http://www.example.org"
    xmlns:plnk="http://schemas.xmlsoap.org/ws/2003/05/partner-link/">
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         TYPE DEFINITION - List of services participating in this BPEL process
         The default output of the BPEL designer uses strings as input and
         output to the BPEL Process. But you can define or import any XML
         Schema type and us them as part of the message types.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <types>
              <schema attributeFormDefault="qualified"
                   elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org">
                   xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="EventHdr">
    <sequence>
    <element name="eventType" type="string"/>
    <element name="eventID" type="string"/>
    <element name="eventSrc" type="string"/>
    <element name="objectDN" type="string"/>
    <element name="profileID" type="string"/>
    </sequence>
    </complexType>
    <complexType name="Attribute">
    <sequence>
    <element name="attrname" type="string"/>
    <element name="attrval" type="string" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <complexType name="EventAttrs">
    <sequence>
    <element name="attr" type="tns:Attribute" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <element name="event">
    <complexType>
    <sequence>
    <element name="hdr" type="tns:EventHdr"/>
    <element name="attrs" type="tns:EventAttrs"/>
    </sequence>
    </complexType>
    </element>
    <element name="ProvWithXSLProcessRequest">
              <complexType>
                   <sequence>
                        <element name="parameters" type="string"/>
                   </sequence>
              </complexType>
         </element>
         <element name="ProvWithXSLProcessResponse">
              <complexType>
                   <sequence>
                        <element name="result" type="string"/>
                   </sequence>
              </complexType>
         </element>
    </schema>
    </types>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         MESSAGE TYPE DEFINITION - Definition of the message types used as
         part of the port type defintions
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <message name="ProvWithXSLRequestMessage">
              <!--<part name="payload" element="tns:event"/>-->
    <part name="payload" element="tns:ProvWithXSLProcessRequest"/>
         </message>
         <message name="ProvWithXSLResponseMessage">
              <part name="payload" element="tns:ProvWithXSLProcessResponse"/>
         </message>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PORT TYPE DEFINITION - A port type groups a set of operations into
         a logical service unit.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <!-- portType implemented by the ProvWithXSL BPEL process -->
         <portType name="ProvWithXSL">
              <operation name="initiate">
                   <input message="client:ProvWithXSLRequestMessage"/>
              </operation>
         </portType>
         <!-- portType implemented by the requester of ProvWithXSL BPEL process
         for asynchronous callback purposes
         -->
         <portType name="ProvWithXSLCallback">
              <operation name="onResult">
                   <input message="client:ProvWithXSLResponseMessage"/>
              </operation>
         </portType>
         <!-- ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
         PARTNER LINK TYPE DEFINITION
         the ProvWithXSL partnerLinkType binds the provider and
         requester portType into an asynchronous conversation.
         ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ -->
         <plnk:partnerLinkType name="ProvWithXSL">
              <plnk:role name="ProvWithXSLProvider">
                   <plnk:portType name="client:ProvWithXSL"/>
              </plnk:role>
              <plnk:role name="ProvWithXSLRequester">
                   <plnk:portType name="client:ProvWithXSLCallback"/>
              </plnk:role>
         </plnk:partnerLinkType>
    </definitions>

    You can use more than one namespace (done so before), and several ways to do so.
    But first, there's one error in your schema definition:
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org">
    xmlns="http://www.w3.org/2001/XMLSchema">
    remove the ">" after xmlns:tns. Btw, this will cause the exception to occur as well.
    Why not put your elements in a new schema, like below, and leave the original ports & messages intact, as you don't change anything in it from the original generation. Just add this schema above/below the schema for the messages and it will work just fine.
    hth,
    Mike
    So, you will have a wsdl that looks like:
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://www.example.org"
    xmlns:tns="http://www.example.org"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <complexType name="EventHdr">
    <sequence>
    <element name="eventType" type="string"/>
    <element name="eventID" type="string"/>
    <element name="eventSrc" type="string"/>
    <element name="objectDN" type="string"/>
    <element name="profileID" type="string"/>
    </sequence>
    </complexType>
    <complexType name="Attribute">
    <sequence>
    <element name="attrname" type="string"/>
    <element name="attrval" type="string" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <complexType name="EventAttrs">
    <sequence>
    <element name="attr" type="tns:Attribute" maxOccurs="unbounded"/>
    </sequence>
    </complexType>
    <element name="event">
    <complexType>
    <sequence>
    <element name="hdr" type="tns:EventHdr"/>
    <element name="attrs" type="tns:EventAttrs"/>
    </sequence>
    </complexType>
    </element>
    </schema>     
    <schema attributeFormDefault="qualified"
    elementFormDefault="qualified"
    targetNamespace="http://xmlns.oracle.com/ProvWithXSL"
    xmlns:tns="http://www.example.org"
    xmlns="http://www.w3.org/2001/XMLSchema">
    <element name="ProvWithXSLProcessRequest">
    <complexType>
    <sequence>
    <element name="parameters" type="string"/>
    </sequence>
    </complexType>
    </element>
    <element name="ProvWithXSLProcessResponse">
    <complexType>
    <sequence>
    <element name="result" type="string"/>
    </sequence>
    </complexType>
    </element>
    </schema>

  • Is there a feature that allows the user to add another open field while completing a form?  If I create one field to enter your child's name and social, is there an "add" button to create another field if the user has more than one child?

    Name
    Social Security
    Child 1
    Social 1
    Child 2
    Social 2

    Hi blabla12345,
    (untested and without warranty)
    replace this line:
    const sSaveCUBE = "CUBE";
    with this:
    const sSaveCUBE = "cube";
    Have fun

  • My messages won't say the contact name only shows the phone number, how do you change this when the contact is in my phone under that number already?

    My messages won't say the contact name only shows the phone number, how do you change this when the contact is in my phone under that number already?

    I thought that at first, but I have text this person before and had received responses in a timely manner. Its just weird that it all of a sudden removed their name.
    Would this affect the delivery of the text message?

  • HT201412 what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    what do you do when your phone numbers no longer have the contact persons name just a number. Also names are missing from the address  book where contacts are.

    I, too, love everything about my phone. The other day I tried to crash my Z10 by running multiple apps and having videos running in the background. Do you think my Z10 showed any signs of slowing down? Nothing doing! It ran as smooth as silk. I'm very impressed.
    Cheers.
    - If my response has helped you, please click "Options" beside my post and mark it as solved. Clicking the "thumbs up" icon near the bottom of my response would also be appreciated.

  • Need to show proof of purchase to my insurance company, but my phone was replaced by apple so has a different imei number to the one on my receipt, how do you sort this out??

    Need to show proof of purchase to my insurance company, but my phone was replaced by apple so has a different imei number to the one on my receipt, how do you sort this out??

    Contact Apple and see if they can provide any documentation of the device swap.

  • I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    I had to restore my iPhone 4s and now my recent calls show only phone numbers instead of the contact's name.  How can I restore the names to my recent calls list?

    Are the contact details in your contacts app, the phone app uses the contact app to put names against telephone numbers.

  • I changed out my old cell phone for a Motorola zoom and now the zoom has my old phone number associated with it's sim card. I just purchased a Samsung Android cell phone and would like to trade the sim from my new to cell to the zoom so I can have my old

    I changed out my old cell phone for a Motorola zoom and now the zoom has my old phone number associated with it's sim card. I just purchased a Samsung Android cell phone and would like to trade the sim from my new to cell to the zoom so I can have my old cell phone number back. The problem is the sim cards are different sizes. Is this something I can take to a store and get switched out?

    SRCLARK,
    Great question! You can go to the store and get a replacement SIM card at the store. Any corporate store will be more than happy to help replacing your card. http://bit.ly/3SdsA
    RobinD_VZW
    Follow us on twitter @VZWSupport

  • Please help me to delete all the contacts in my i phone 4s..its tiring to delete one by one...

    please help me to delete all the contacts in my i phone 4s..its tiring to delete one by one

    Stop making illogical statements and posting multiple times.
    READ the article from which this silly statement was posted and follow the detailed (and explicit) instructions.

Maybe you are looking for

  • BPEL PM middle tier 10.1.2.0.2 error in installation

    Hi, First of all, I have tried to find something related in the forum, but I haven't found anything. My problem is: My server is behind a firewall and all the HTTP access is using an authenticated proxy. During installation, I configure the proxy set

  • Why not iMac 27 inch FULL HD?

    Question is asked over and over again, I know. But I was a bit suprised when I saw that the new Apple 27 inch LED Cinema Display can support input for 1920 x 1080 FULL HD but the iMac 27 inch doesn't?? I hate to see only 720p on my iMac when I play p

  • Three way calling..... Problems....!!!

    The problem is when you merge 2 parties into one; it is either you hear nothing at all from both parties, or you only can talk to 1 person putting the other person on hold. Simply, "merge" just does not work. I called at&t 10 times to find a solution

  • NOARCHIVELOG - lost datafile

    We have a situation here. We lost the datafile associated with UNDOTBS and we are in NOARCHIVELOG mode. The option seems to be to use .....OFFLINE DROP and then drop the tablespace. Accordingly, dropped the tablespace and attempting to open the datab

  • Error in applying filter on coherence data

    I am trying to apply filter on coherene cache data in *.Net*. I put some data on cache. I am able to retrieve all data using AlwaysFilter. But when I try to apply any custom filter ( like on line 3 below) I am getting error Unknon user type 1002. I h