"Send these cards..." only sends the first one

I'm trying to send several cards at a time to a bluetooth mobile phone. In Address Book I use Cards, Send these cards... after I've highlighted, say, three cards in the address books. It only sends the first of the cards.

Hi,
As per the Ref thread i can manage the step 1 and 2  in the Note 329537, can any one help me in step 3.... what exactly i need to do in SE37. do i need to save the changes after calling the function module ?
Regards,
S.Manu

Similar Messages

  • I have 3 consecutive movie clips that I am trying to drop into the drop zone but it only recognizes the first one and only produces the firts one in a DVD. How can I drop all three  movie clips into one drop zone

    On IDVD, I have 3 consecutive movie clips that I am trying to drop into the drop zone to create a DVD but it only recognizes the first one I dropped and only produced the first one in a DVD. How can I drop all three  movie clips into one drop zone.

    I have had some luck doing the following: Export each clip from imovie as a quicktime clip. Open iDVD and create a new project. Import a few stills into iDVD and then click on the button that gets created to get into the screen where the individual slides appear. Drag each quicktime into that screen and arrange in the order you want. You can then delete the stills. The button that appeared when you dropped in the stills will launch a complete show.

  • Printing Raise_application_error only for the first one..

    Hi, for each procedure i have a raise_application_error.. But after the first one, each one of the calling procedures print their applicaion error as well. How can I set this up so that only the raise_application_error from the function that's the exception is being raised from?
    Edited by: tolgaek on Jan 17, 2011 10:44 AM

    wonderboy87 wrote:
    Well actually, i'm printing the stack using DBMS_UTILITY.format_error_backtrace appended to my message using raise_application_error,Wrong.
    Therefore I don't need the other calling functions to print theirs,sometimes the stack is so deep that, error message gets cut off where you can't see the most important one.. I just want to make it so that only the first raise_application_error gets printed, which has enough information to debug..Wrong.
    You are mistaken in thinking that turning the error stack into an error text string is valid. A text string is unstructured data. An error stack is structured.
    And despite the fact that you can turn the error stack into a text error message, does not mean that the error stack no longer exists and no longer will be processed (and possibly displayed/printed) by the client that made the call.
    There's also a reason for having an error stack and having a separate error message. The former is for code, debuggers and developers to make sense of - this explains the exact status of the call stack at the time of the error. The latter is the nice-human-readable-message that is for end-users and managers and the like. This explains (or should) the business/logical reason of the error.
    It makes no sense to whack the error stack as text into the error message. What for? How does this make the exception any better to process or understand?

  • MBA with CITRIX - shift key only CAP the first charactor?

    My MBA connects to work PC (windows xp) via CITRIX(Citrix Online plug-in for Mac -web) in Snow Leopard, it seems like shift key + any charactor, only cap the first hit, it caused lots of trouble for my typing habit, as even I am holding my shift key and then press any keys, it will only cap the first one. I had tested in Snow Leopard, there is not problems with holding shift key to get CAP characters, only happen in CITRIX session.
    Does anyone have the same problems and anyone know how to fix it?

    Have you tried the version of citrix listed in the Apple App store? It can open most of the data files the plugin will open, and it seems to have a little bit better performance.

  • How come no matter what Stylistic Alternative I double click (salt, salt2, salt3 etc...), it only inserts the first alternative (salt)?

    Using Illustrator CS5 on Windows 7.
    Using an OTF with over 100 alternatives.
    My problem for instance: I can see at least 5 different alternatives for the lowercase "t".  Each one labeled as salt, salt2, salt3, etc...but no matter which one I double click, Illustrator will only insert the first one labeled "salt."  This is becoming super frustrating.
    Thanks in advance!

    randilonimous,
    The update page is here, 15.0.2:
    http://www.adobe.com/support/downloads/product.jsp?product=27&platform=Windows

  • Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Applications are mentioned free, but when we start downloading one dollar is charged in my credit card, but only for the first time when i switch on and use it for the first time one dollar is charged. and from next application it is free. why?

    Kindly inform any email id or toll free number to contact apple for your below answer, Mr.King_Penguin
    About receiving my credit card being debited for Free App Store Application downloads,
    It should be within a few days, but it might vary a bit by bank/provider :
    I am in India, if the bank don't refunds , what to do?
    Rajagopal.pngr :-  It is only a holding charge, it is not a permanent charge. If it isn't refunded within a few days or so (and it quite possibly won't be over a weekend) then you can query the charge with Apple.

  • TS4143 Mail message to a group of iCloud contacts sends only to the first recipient

    Trying to send out group emails to my minor league team, either the group name becomes a comma in the To box or the email sends only to the first of the people in the group.  It is annoying to have to start to input individual names... how can this be fixed?

    I do the following:
    1. Send the email to yourself.
    2. Put the group's email into the BCC field.
    3. Click send.
    The only thing that shows up to the recipients is your email twice.

  • HTTPService.send() only works the first time

    I have the follow HTTPService defintion in my mxml page:
    <mx:HTTPService
    id="updateRequest"
    url="{accessURL}"
    useProxy="false" result="onSuccessEvent(event)"
    fault="onFailEvent(event)">
    <mx:request>
    <username>{userName}</username>
    <password>{password}</password>
    <id></id>
    <sname></sname>
    <value></value>
    <randomNum>0</randomNum>
    </mx:request>
    </mx:HTTPService>
    Here is my call:
    updateRequest.request.id= myid;
    updateRequest.request.sname= myname;
    updateRequest.request.value = myvalue;
    updateRequest.request.randomNum = Math.random();
    updateRequest.send();
    The first time call is successful, but second time(after 30
    seconds), after send() function call, I didn't even received
    HTTPService call from server side. Is this somehow cached or I need
    to reinitial it? This looks strange.

    I am having the same issue but have already been using the
    post method. When I click my refresh button or if the timer I have
    set up resets I see no request made to the server.
    private function onResult(Event:ResultEvent):void {
    var myNum:int = Math.round(Math.random() * 2);
    var xmlResult:XML = XML(Event.result);
    _xlcMyListData = new XMLListCollection(xmlResult..asset);
    <mx:HTTPService id="tempXML" resultFormat="e4x"
    result="onResult(event)" method="POST" url="
    http://mysite.net/info_wrapper.php?customer={customer.text}&amp;username={username.text}&a mp;password={password.text}"
    useProxy="false"/>
    <mx:TileList dataProvider="{_xlcMyListData}"
    labelField="fleet" left="35" right="15"
    width="350" backgroundColor="#000000" color="#ff0000"
    fontSize="27" borderColor="#000000" columnWidth="315"
    rowHeight="50" themeColor="#808080" fontWeight="bold"
    allowMultipleSelection="true" id="TileList1" height="0" y="202"
    x="178"/>
    <mx:Button label="Refresh Page Now" height="27"
    fillAlphas="[1.0, 1.0]" fillColors="[#030000, #030000, #474545,
    #474545]" borderColor="#DCDEDF" click="tempXML.send();"/>

  • My ipod touch is being replaced by a warranty. How do I back up the data? I have to send the old one in first, before receiving the new one.

    My ipod touch is being replaced by a warranty. How do I back up the data? I am on a PC. I have to send the old one in before receiving the new one.

    See:
    iOS: Transferring information from your current iPhone, iPad, or iPod touch to a new device

  • How do you download all chapters of a video at once?  I purchased a yoga video with multiple chapters and only the first one loaded.  It says I can't download another chapter for 90 days.

    I purchased a yoga video with multiple chapters and only the first one loaded.  It says I can't download another chapter for 90 days.  How do I get all chapters to download?

    Once a device or computer is associated with your Apple ID, you cannot associate that device or computer with another Apple ID for 90 days.
    http://support.apple.com/kb/ht4627

  • Do I need a different apple id for each device? I have two iPads and an iPod but can only purchase things on the first one. When I go to verify the questions they say they are wrong.

    Do I need a different apple ID for each device I have? I have two iPads and an iPod but I can only make purchases with the first one I purchased. It tells me the security questions are wrong but I know they are not because I wrote them down. I have also reset them and my password once. Please help if you can

    You can not login into iTunes or the App Store using VPP credentials. You must purchase all apps/book/etc.  from the VPP website. Then you can redeem the codes thru itunes/app store or import the codes thru apple configurator. Here is the url for the VPP website: https://volume.itunes.apple.com/WebObjects/MZFinance.woa/wa/login?cc=us
    (It will not affect any of the apps you already have but the id can only be used for VPP.)
    Cheers,    
             Alec

  • I modified the first business card in a template. Does anyone know how to get the other cards on the template to look like the first one without doing each individually? please and thanks!

    I modified the first business card in a template. Does anyone know how to get the other cards on the template to look like the first one without doing each individually? please and thanks!

    http://www.freeforum101.com/iworktipsntrick/viewtopic.php?t=182&mforum=iworktips ntrick
    Peter

  • I added a custom ringtone . Then later I tried to add another three set  but now after sync . Am not able to get rid of the first one... It's still there as my custom ringtone. But my iPhone in iTunes shows all four... But the phone shows only one...?

    I added a custom ringtone . Then later I tried to add another three set  but now after sync . Am not able to get rid of the first one... It's still there as my custom ringtone. But my iPhone in iTunes shows all four... But the phone shows only one...?

    Paul--you are a life-saver!! Worked great. I did have to look around to make sure I was getting 4.9 instead of 4.7 (even when the file was named 4.9 at techspot.com), but I finally got the right file, did the install as you suggested, and everything is now fine. One note, though, that I haven't seen mentioned in any of this thread: when I first tried to open up iTunes after getting back to 4.9, the following message appeared: "The file iTunes Library.itl cannot be read because it was created by a newer version of iTunes." I merely went to the old .itl file that was created when I did the update to iTunes 5, renamed it, moved it over to my now new 4.9, and iTunes opened fine. My library was a few days out of date, because of the few days' lag from the time I did the iTunes update, but that was easily taken care of, and everything's now working fine. Thanks again!!!

  • I'm trying to print out a credit card statement from my iPad, it only prints the first page not 4pages, please help

    I'm trying to print out a credit card statement from my iPad, it only prints the first page not the 4 pages, please help

    I read your first post when I was posing a separate question on the Mac Pro board.  I now see that we may be talking about printing from an iPad with Airprint instead!!!!!  I very much suspect the print command and settings are different for Airprint but I have never used it to be able to offer concrete advice.  I think the setting choices could be different even with Airprint on the laptop and further that you may not even be using Safari but some special app???
    I've not heard or seen the term "frame" in the context of printing before except perhaps in the context of a screen shot.  Is the credit card statement a "pop-up" of some kind rather than a webpage or pdf?

  • Able to connect keyboard to only one mac ...not able to connect to my other mac at work after disconnecting the first one ...any suggestions please

    Hello,
    I am able to connect my wireless keyboard to only one mac ...not able to connect to my other mac at work after disconnecting the first one ...any suggestions please
    thanks,

    Hello:
    You will need to delete the keyboard from the other Mac.  Simply disconnecting it leaves it still paired with the first Mac.
    Barry

Maybe you are looking for

  • Open planned orders and production orders

    Hi friends, I have one issue with my client. Client has 1 lac materials in sap .Now he wants extract all materials open planned orders and open production orders with quantity and dates. Please tell me the process how i can extract the data from sap

  • Strange JScrollPane problem in JApplet

    I've got a JApplet which is giving me a strange problem with the scrollbar of a JScrollPane. The JScrollPane is populated with a JList whose ListModel is a DefaultListModel. I specify to always show the vertical and never show the horizonatal scroll

  • Callback from a stateful bean

    Hello, I have a problem performing callback from a session stateful EJB. I have defined an interface with a single unimplemented method onMessage in it, and an abstract class that implements this interface. The abstract class is extended by another c

  • Cannot see Blend Mode previews

    I have a very odd problem.  When I set an object to Multiply/Screen etc I cannot see a preview of it on screen.  The odd thing is I can see it change on my layer thumbnails in the layers panel. I have been looking through any and all settings, yet I

  • Sometimes songs sync, sometimes they don't

    I have my iPod set to sync all music and playlists. Everytime I sync random songs are left off my ipod. I just synced it 3 times in a row and had different results. Some of the songs left off are ones I purchased, and others are off of CD's I've uplo