Drag & Drop from Outlook into SAP BDS (sales order, deliveries, etc.)

Hello everyone,
I have some problems with Email archiving between SAP ECC 6.0 and Outlook 2007. The overall scenario should look like:
Outlook (drag&drop) --> SAP object like e. g. sales orders as Business Document --> third party archive.
The problem we are facing starts with the false or maybe non existing drag & drop function for Outlook. The direct drag&drop from Outlook only creates a textline in SAPs Business Document. There ist no problem at all if we store the Email on the hard drive in .msg format and afterwards drag&drop it to the Business Document.
Is there any way to skip the latching on the hard drive and communicate directly between  SAP and Outlook? Otherwise how do you handle this problem?
Thank you.

Is there no one else who got this problem?

Similar Messages

  • Can't drag attachments FROM outlook INTO bridge

    Why can't I drag an attachment from outlook into bridge, but I can drag a file into outlook and make it an attachment?

    Bump?

  • Can't drag & drop from iPhoto into iMovie 10

    Am trying to add some photos from my iPhoto library into an iMovie 10 project.  I access the iPhoto library and the pictures show up, but when I try to drag/drop or add to the timeline, nothing happens.  The little hand shows up over the photo, and even the + sign, but when I try to move or add it, nothing happens.
    And, once I select one photo, it seems stuck until I deselect all. 
    Dragging of clips from the event library doesn't seem to be a problem.
    Any advice or help is appreciated.

    With a picture selected from the iPhot Library as it shows up in iMovie, if you select a photo by clicking on it once, then click the plus sign, what happens?

  • Drag & drop from explorer into my application

    Hi folks,
    I want to drag files or folders from Windows explorer into a tree structure of my LabVIEW application. I did not find any solution or example (and I was not able to install the G-Toolbox, which is mentioned in some old forum boards).
    Does anybody have an example? Thank you very much! 
    Solved!
    Go to Solution.

    I found this thread searching for a way to drag and drop files from the OS (either Windows Explorer or Mac Finder) onto my VI.  I don't want a visible file path control on the front panel--I want the user to be able to drop the file anywhere within the VI's panel.
    I've looked at all of the examples linked above in this NI thread and the thread at LAVA, but came up empty for any code examples that does this for both Mac and Windows.  
    I did eventually find a way to create something that works for Windows.  (I might have seen this solution from the JKI guys a few years back--I can't remember.)  It relies on the following:
    * A transperrent path control set to "fit control to pane" so that it covers the whole pane even if it is resized.
    * This path control needs to be the top-most control so that is can always receive the dropped path.
    * Create a <This VI>:Mouse Enters event to make the path control inivisble
    * Create a <This VI>:Mouse Exits event to make the path control visible 
    This works in Windows (testing with LV2010 in Win7) because when you drag a file onto the VI panel it DOES NOT fire the Mouse Enters event.  You can drop the file and as soon as the path control receives the path the VI can rehide the path control so that the user can manipulate other controls on the panel.
    However, the problem is that on Mac (tested with LV2010 in Mac Lion), the Mouse Enters event DOES fire when you drag a file into the VI panel.
    I'm posting this example as a working example for Windows folks, but I hoping there is a clever Mac user out there than can figure out a work-around to make this work for the Mac too.
    Thanks!
    Attachments:
    drag and drop file path example.vi ‏18 KB

  • Drag and drop from Lightroom into Premiere doesn't work in Windows

    I recently switched from OSX to Windows and noticed that in Windows, I'm unable to drag and drop from LIghtroom into Premiere. In OSX, it worked fine.
    I do this a lot because it's a time saver. I basically use lightroom to find the photo or video clip I need for my editing project and then just drag in right on to the Premiere timeline. Now I have to do the extra step in Lightroom of "show in explorer", then drag the file from explorer to Premiere. Not really a big deal but just curious why it works in OSX and not Windows.
    I'm running latest Windows 8.1, Lightroom 5.4, Camera Raw 8.4, and Premiere Pro CC 7.2.2 (33)
    -Pete

    Hi Pete,
    You can obtain scripts here:
    http://www.robcole.com/Rob/ProductsAndServices/MiscLrPlugins#MiscScripts
    You'll have to edit lua code to adapt for Premiere. Not that hard really (e.g. clone, then change the script name and path to executable..), but may be too intimidating for some folks. If you are one of those folks, go for the plugin instead - it's usable via GUI - no lua code - can probably accomplish the same thing.
    http://www.robcole.com/Rob/ProductsAndServices/OpenInWhateverLrPlugin
    Let me know (outside the forum please) if problems - thanks,
    Rob

  • How to get mail from Outlook to SAP GUI (workflow)

    Hi All ,
    How can we get a mail from outlook or personal mail into SAP GUI .
    can it be used as an event for 'wait for event step ' in workflow . ?
    Thanks ,
    Naval bhatt

    Hi Naval,
    I just want to clarify some areas from your question:
    1. Will a workflow be triggered because of the email from Outlook to SAP? Does it always have to start from the Outlook side?
    The integration of SAP Workplace (thru Workflow) and Outlook is possible using the Extended Notification (tcode SWNCONFIG). Here, you can send an email from SAP to Outlook then execute a function from your Outlook message and then you will be directed to the tcode of SAP side (SAP GUI).
    Regards,
    Reymar

  • SAP Inbound email related query (from Outlook to SAP)

    Hi,
    I am in a situation where I have to send email from MS Outlook to SAP with a PDF file as an attachment. The PDF file will be stripped into an XML file and processed further and a reply is sent to the user sending the email. The Outlook admins have set up the necessary config for the connectivity - I am able to send the PDF file from Outlook to SAP (everything has been configured using SICF, SCOT etc) for inbound processing. In SCOT - Settings->Inbound processing I have used a Class which implements interface IF_INBOUND_EXIT_BCS (as per one of the blogs by Jeff Gebo). I can see the trace file in SCOT ->Utilities->Trace->Internal trace. When I send the PDF file, I can see in the trace (I cannot debug as the SAPCONNECT user which gets called in the backgound triggers the user exit class). In the trace file I can see my class gets instantiated but the next step to read the PDF file fails.  The code come the Jeff's blog which I use is as follows:
    Set return code so that no other Inbound Exist class will be called
    e_retcode = IF_INBOUND_EXIT_BCS=>gc_terminate.
    try.
    Get the email document that was sent.
      data: document type ref to if_document_bcs.
      document = io_sreq->get_document( ).
    Get the sender's address to reply back
      lv_sender = io_sreq->get_sender( ).
      addr = lv_sender->address_string( ).
      return_addr = addr.
    Get the interactive form attachment.
      data: pdf_table type BCSS_DBPC.
      pdf_table = document->get_body_part_content( 2 ).
    Convert the pdf table into an xstring.
      data: pdf_xstring type xstring,
            pdf_line type solix.
      clear pdf_xstring.
      loop at pdf_table-cont_hex into pdf_line.
        concatenate pdf_xstring pdf_line-line into pdf_xstring in byte mode.
      endloop.
    Process the PDF form
      data: formxml type string.
      formxml = me->process_form( pdf = pdf_xstring ).
    Here the contents of the pdf_table-cont_hex is blank (I used a table to populate the values). All I get in my Outlook inbox is a empty email with an empty subject from SAP (called by the instantiated class of the Interface)
    The irony is that I setup the same procedure has been configured and setup in another totally different SAP system and everything works fine there - I did a comparision of both SAP systems and everything seems fine (config wise and user exit class wise) and  everything is identical. I have no clue as to why it works in one system and not in the other system.
    If anyone has any pointers wit will be greatly appreciated as I am on a tight deadline - I have checked OSS but with no help.
    Thanks in advance,
    Ryan

    You may be able to find more information by putting an infinite loop at the beginning of your user exit:
    x = ' '.
    while x = ' '.
    x = ' '.
    endwhile.
    and then go into debugging via SM50 and set the x variable to break out of the loop.
    This technique is useful debugging workflows and other code which you cannot get to directly by placing a break-point.
    Andrew

  • Upload data from Excel into SAP CRM using webservices

    Hi,
               I want to upload the data from EXCEL into SAP CRM using a web  service, can anyone say me the process and also how to map the excel and the source code structures.
    Thanks,
    Sanju.

    Try the following :
    Class: CL_GUI_FRONTEND_SERVICES
    Method: GUI_UPLOAD
    Thanks
    <b>Allot points if this helps!</b>

  • How can I import contacts from Outlook into iCloud

    I would like to import all my business contacts from Outlook and Google into iCloud so they can be accessed easily from my iPhone 5 and iPad mini.  Cannot find anything in the help section that explains how to do this.
    Thanks

    i exported them from outlook into a folder on my pc, then tried to import with icloud on my pc but the error message appears.
    H E L P

  • Creation of an RFC to pass notification number from IOMS into SAP.

    hi sap,
    i have a  requirment to such as:
         Creation of an RFC to pass notification number from IOMS into SAP. The RFC containing notification number must access notification details via transaction IW23.
         Creation of an RFC to pass notification field specific information from SAP to IOMS. Upon accessing the notification inside SAP the following field information must be passed back to IOMS.
    can you please help me out with the RFC which would be much helpful to me.
    when i give the RFC then through the RFC the IOMS will pass the NOTIFICATION NUMBER. Based on the notication number i have to pass the data that belongs to that perticlar NUMBER.
    your help is much aprreicated and thanks in advance.
    regards,
    laya.

    I dont know what is IOMS and what platform they are using.
    If you want to access data from Non-SAP system or Insert from non SAP system, you need to develop remote enabled function modules, check for standard function modules.
    Check package IWOC, for standard function modules.
    Thanks and Regards,

  • Need to transport a Folder from cFolders into SAP R/3

    Dear Members,
      I want to import a whole folder( and it's child documents) from cFolder into SAP R/3. What I did so far is that I have created the RFC Dest., Configured the cFolder in R/3 using Tx CFC01, created a Search for the folder inside cFolder and ran CFI01. There I entered the cFolder Application name and entered the cFolder Search as my search name (using the search help). Then when I am trying to Add Documents it's showing a message <b>No lines added. cFolders document(s) contain no file(s)</b>. What I have seen so far even after debuging and after doing a lot of R&D is that, Documents can be imported but folders can't be. <b>But my requirement is to import all the folder element in one shot.. how to go about that? Please lit into the matter..I am waiting with points</b>
    Sugata

    in cfi02 it is not possible if you are game you can try
    CFX_API package to write a prg to do so
    CFX_API_FOLDER_GETDETAIL - to get doc ids
    CFX_API_DOC_DOCUMENT_READ

  • To send an email from outlook to SAP user in SAP

    Hi,
    Is it possible to send an email from outlook to SAP user in SAP?
    Regards,
    Mizan

    Hi Mizan......
    Yes off course it is possible.
    Generally how we put the CC to our ionternal users like you have to put their email address while sending mail through SAP viq outlook.
    The mail will go from SAP but via. outlook and user will receive the mail in Outlook Integration and not inside B1.......
    If you want it in B1 then instead of sending mail you can send the same by choosing option Int......
    Regards,
    Rahul

  • Drag & Drop from JTree (String) to JTextArea (Graphics2D)

    Hi everyone,
    I want to create a Drag & Drop from a JTree node to any location in a JTextArea. Upon dropping the node onto the JTextArea, I would want to draw a rectangle and the node name.
    I've created a custom transfer handler which allows the transferring of text from the tree node to the JTextArea.
    Any general ideas on how I can do that are wlecomed.

    I've managed to get hold of the JPanel via TransferHandler.TransferSupport.getComponent()
    the source seems a bit more tricky. I've tried this
    Transferable tr = support.getTransferable();
                   DataFlavor f = new DataFlavor();
                   f = new DataFlavor(MyTreeNode.class,"MyTreeNode");
                   try {
                        Object o = tr.getTransferData(f);...
    but the source does not provide a MyTreeNode instance, but something else (a String, I guess)
    how can I change this?

  • Synchronisation of contacts from Outlook to SAP Business One

    Dear all,
    i have installed the Outlook Integration Add-On and want to synchronize Contacts from SAP Business One to Outlook and this worked fine. Now I also wanted to synchronize contacts from Outlook to SAP Business One (changes and new Contacts) and I activated the check box for this in the settings. But after I run the synchronisation nothing happened, even the contact folder has been selected in the Contacts - MS Outlook Criteria settings. Do I have to do something else?

    David,
    The forum you have posted your question in is for questions related to the SAP Business One SDK.  You may want to post your question in the SAP Business One Discussion Forum as your question is application related.
    http://cpsn-channel.sap.com/businessoneforum
    Eddy

  • Copy mode of payment from customer master data to sales order,

    Hi Gurus,
    Hope all is fine.
    I have a small doubt. If we want to transfer the mode of payment from customer master data to sales order, do we have to use Exit- MV45AFZZ.
    Can't we transfer the data without the exit?

    Hi,
    I have tested this in sand box.Thought the customer master is having payment method ( payer ) ,It is not copying from customer master to sales order but if you maintain manually in sales order ,it is copying into billing document level.FYI see below snap shot.
    Note:If you want it from customer master into sales order,may be you need to take help of abaper on this.
    BR's,
    Naren

Maybe you are looking for

  • Phone control but CSFs not even Registering

    So I have a lab set up where I have two clusters that do not interact at all other than I use the laptops to talk to both clusters. I have two laptops with two different version of jabber installed. They are both point to cluster b.  The jabber clien

  • In the sales order text is not redetermined

    Hello while creating the sales order user enters the sold to party and ship to party after executing the text the user changed the ship to party but the text is not redetermined in the order according to the ship to party it is same as previous ship

  • Client export for ABAP programs, repository objects cross client objects

    Hello, Let me first explain the scenario here. Our Development system crashed we are rebuilding the development system from a client export of the production. Client does not want migration etc so the only way we want to do it is through client expor

  • How can I remove photos from an album on my iPhone?

    Hey I am trying to remove photos on my iphone from an album from but when I remove the photos from the camera roll album they got removed in all the others albums so is htere any way to remove the pics from an album only and not from all the albums?

  • How to expose and call AM methods from plain java (testability etc)?

    Hello, my project is just starting out with the OA Framework. We just encountered our first hurdle - I hope someone here can help out or at least point me in the right direction. None of this stuff seems to be explicitly mentioned in the standard OAF