.csv file in an outlook email attachment

Hello,
How can we accomplish following using SOA/BPEL without using Oracle Beehive or any other third paty tools.
1. Emails contain a .csv file with 5 columns.
2. There is a table in Oracle EBS database with 5 columns.
3. We need to have real time integration to import these .csv file from incoming emails into Oracle table from #2 above.
How can SOA/BPEL detach the .csv file from emails, parse .csv fields and import these files in Oracle table in real time manner?
Please advise.
Darsh

as idea
- vba script in outlook for save .*csv files to some directory
- composite for pooling directory and insert data from parsed .*csv files
or
all by vba

Similar Messages

  • I can't open a jpg file directly from an Outlook email attachment into Photoshop CC.

    When I try to open a jpg file directly from an Outlook email attachment into Photoshop CC I get this error message " Photyoshop CC.exe - Entry Point not found" with this string:

    I don't think I have ever been able to open an image directly from Outlook into Photoshop.  What you can do, is drag from outlook to desktop, and then from desktop into Photoshop.  Or, if seeing the windows at the same time is a problem, drag onto desktop, then minimise everything, and drag onto the Photoshop icon (if you have a Photoshop shortcut on your desktop).

  • Get file name of an email attachment with sql query

    Hi all,
    How can I get the file name of an email attachment with a sql or pl/sql query?
    Thanks in advance.
    Edited by: JonasZzZz on Sep 14, 2009 10:52 AM

    Hi, anynone? please..

  • How to compress file 32+ mb for email attachment

    how to compress file 32+ mb for email attachment, after I used compress it's still shows 29 mb. Is there another step I could do. I am new with MAC so please forgive if this sound simple and stupid question.

    You simply don't attach that file to email.  Even if you could cut the size by half, that's still way too big for email.  Many mail servers will remove attachments over a certain size, and for most of those that size is below 10 MB.  Find another way to share that file, like a web server or Dropbox or something along those lines.

  • Why can't I "Save as Text" a pdf file received as an email attachment?

    I can "Save as text" a pdf file which I have created in my own computer (that is, it goes into MS notebook that I then can Copy and Save as an MS Word file) but not when I receive a pdf as an email attachment. (The file is saved, but it is empty.) Why would I want to convert my own pdf back to text? Well, in case I no longer have the original Word document I suppose, but the thing is "Save as text" works with my pdf, but not with those I recieve from others. How come? Thanks!

    Is this a scanned PDF? If so, it must first be OCR'd.

  • Error with the data format in the TXT file, sending as an Email attachment

    Hi all,
    I have an problem in the data formating in the TXT file while sending as an attachment via an email by using the FM "SO_DOCUMENT_SEND_API1".
    For eg:
    The data in the TXT file is looking like as follows:
    0 0 0 0 2        L O U D S P E A K R   O T H E R   3 8 W h i t e                  0 0
    0031  L O U D S P E A K R   O T H E R   3 8 Black                               0 000
    38    L O U D S P E A K R   O T H E R   3 8 Brown                                  0 00040
    L O U D S P E A K R   O T H E R   3 8 Brown                                         0 00042
    and so on
    But it should come as :
    0 0 0 0 2  L O U D S P E A K R   O T H E R   3 8 W h i t e
    0 0 0031   L O U D S P E A K R   O T H E R   3 8 Black
    0 00038    L O U D S P E A K R   O T H E R   3 8 Brown
    0 00040    L O U D S P E A K R   O T H E R   3 8 Brown
    All the internal tables are correctly filled.
    The code is as follows:
    gwa_objtxt = 'Please find attached DATA EXTRACT Sheet'.
      append gwa_objtxt to git_objtxt.
    describe table git_objtxt lines gv_cnt.
      clear git_doc_data.
      read table git_objtxt index gv_cnt.
      git_doc_data-doc_size = ( gv_cnt - 1 ) * 255 + strlen( gwa_objtxt ).
      git_doc_data-obj_langu = sy-langu.
      git_doc_data-obj_descr = lv_mtitle.
      append git_doc_data.
      clear git_packing_list.
      refresh git_packing_list.
    git_packing_list-transf_bin = space.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 0.
      git_packing_list-body_start = 1.
      git_packing_list-body_num   = gv_cnt.
      git_packing_list-doc_type = 'RAW'.
      append git_packing_list.
      Clear : gv_cnt.
      Describe table git_objbin lines gv_cnt.
      git_packing_list-transf_bin = 'X'.
      git_packing_list-head_start = 1.
      git_packing_list-head_num = 1.
      git_packing_list-body_start = 1.
      git_packing_list-body_num = gv_cnt.
      git_packing_list-doc_type = 'TXT'.
      git_packing_list-obj_descr = 'ATTACH.TXT'.
      git_packing_list-obj_name = 'book'.
      git_packing_list-doc_size = gv_cnt * 255.
      APPEND git_packing_list.
      clear git_receivers.
      refresh git_receivers.
      git_receivers-receiver = gv_eid.
      git_receivers-rec_type = 'U'.
      append git_receivers.
    CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
        EXPORTING
          DOCUMENT_DATA              = git_doc_data
          PUT_IN_OUTBOX              = 'X'
          COMMIT_WORK                = 'X'
        TABLES
          PACKING_LIST               = git_packing_list
          CONTENTS_BIN               = git_objbin
          CONTENTS_TXT               = git_objtxt
          RECEIVERS                  = git_receivers
        EXCEPTIONS
          TOO_MANY_RECEIVERS              = 1
          DOCUMENT_NOT_SENT                = 2
          DOCUMENT_TYPE_NOT_EXIST      = 3
          OPERATION_NO_AUTHORIZATION = 4
          PARAMETER_ERROR                    = 5
          X_ERROR                                      = 6
          ENQUEUE_ERROR                        = 7
          OTHERS                                        = 8.

    please give the code of
    contents bin =  git_objbin " how  this is getting populated.
    0 0 0 0 2 L O U D S P E A K R O T H E R 3 8 W h i t e <b>0 0</b>
    0031 L O U D S P E A K R O T H E R 3 8 Black
    0 000
    38
    from this im not able to understand is this over population or concatenation problem
    y dont u make a append to the final table
    like
    data : begin of itxt occurs 0, ,
    s1(132) type c ,
    end of itxt.
    loop at itab.
    itxt-s1+0(4) = itab-f1.
    itxt-s1+4(6) = itab-f2.
    itxt-s1+10(8) = itab-f3.
    itxts1+18(4) = itab-f4.
    append itxt.
    clear itxt.
    endloop.
    exchange this to the contents bin of hte Fm .
    regards,
    vijay.
    can u please mail the text file and the expected o/p to my mail id [email protected]  so that i can see the same from the data provided i m not able to check the result properly .

  • Inability to open an docx file sent as an email attachment

    After receiving an email with a docx file attachment, I was unable to open it. The error message says, Adobe Reader cannot open ....docx either because it is not a supported file type or the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded). This is a very important document and more may follow soon. Should I uninstall Adobe Reader, then try to open the document ansd save it to the computer before reinstalling Adobe?

    If it isn't found in Word, you must be doing File > Open wrong.
    I'm not asking you to choose it from the list of recent files, but to choose OPEN, then find the folder with the file in it, and select the file. If the file isn't shown, then it isn't a DOCX file at all.
    When I write File > Open, in Word this means Choose the Open command from the File tab menu . The File Open dialog box is then shown.

  • I can't open a jpg directly from an outlook email attachment.

    I get an error stating "Photoshop CC.exe-Entry point not found".

    Photoshop doesn't do anything special or different when a file is sent from an attachment. However, when you send an attachment from Outlook to Photoshop, that file is actually downloaded to your computer in a Temp folder before it is sent to Photoshop. Often times the permissions on this folder can be such that it prevents access. Other than that, all Outlook does is simply drop the file onto the Photoshop app file. The only thing that would involve Photoshop directly is if there are some damaged files involved with its connection to the rest of the system. If this is the case a reinstall would fix it. Otherwise, check the permissions on the Outlook temp folder (or at least the JPEG file it is trying to save).

  • Zip a text file and send as email attachment

    Hi,
      I have a requirement to zip a text file and send it as an email attacment. I saw many posts with similar discussion on the forum but none gave me a very clear answer. Have anyone done this? If so please help.
    Regards,
    Hari.

    Hi Durairaj,
    I am working in ECC 6.0 and all ZIP classes are available in my system. I am converting the ABAP spool to PDF. My PDF is too long (57MB) that i need to convert it to ZIP  before i send it as a mail attachment. How do i do this?
    Thanks,
    RS

  • Opening a pdf file from an old email attachment

    Hi.
    I am hoping someone can help with this odd issue.  I received some pdf attachments in an email and after 6 months, the emails at work will be archived.  This gives the pdf files names like:
    accountsheet.pdf.pdf or accountsheet.pdf.efa.
    The person sending me the email with these files does not have a problem opening them but I can't open them.  I get the error message below and wonder if there is a way I can fix the decoding problem if that is the issue.  Any help would be extremely appreciated.
    Thanks,
    J

    Hi Jeff,
    I'd like to help!
    First step you should save it out of the email to your desktop. Do not try to open it directly.
    Make sure you don't have two (periods > accountsheet.pdf.pdf)...
    Then try opening it with the new file name (accountsheet.pdf).
    Let me know if this helps!
    Regards, Stacy

  • Custom file name format for EMAIL Attachment

    Hi,
    We are seding attachment to Supplier by using Email Transport protocol over Custom Document Generic Exchange.
    It delivers mail successfully with an attachment as EMAIL 1.0. but we want to customize the filename( ex: c111.txt) . how can we change the attachement filename ? and coud u tell us what are the properties are required(tip.properties) for email tranport.
    Regards,
    Jawah

    Hi,
    Have you checked -
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_009_Transport_SMTP.pdf
    http://www.oracle.com/technology/products/integration/b2b/pdf/B2B_TN_021_TIP_Properties.pdf
    Also refer -
    override default send from email id and attachment name in email delivery
    I am not very sure whether name of attachment can be customized. I think anybody from Oracle IDC team can confirm the same.
    Regards,
    Anuj
    Edited by: Anuj Dwivedi, Infosys on Oct 13, 2009 2:09 PM

  • How to zip a text file and send as email attachment in SAP version 4.6c?

    Hi Guru,
    How to zip a text file in SAP version 4.6c which doesn't have class CL_ABAP_ZIP?
    Please help.
    Thanks & Regards,
    Ari

    Hi,
    Try this link
    [http://sap.ittoolbox.com/groups/technical-functional/sap-dev/sapr3dev-zip-file-from-sap-1707099?cv=expanded]
    Cheers,
    Surinder

  • Email CSV file as an attachment

    Hi,
    I am sending a CSV file as an e-mail attachment. Now, i use the character '0D0A' to get the lines onto a new line. But the extra spaces which are left in the previous lines are coming on to the next line. now there are spaces of the previous line and then the data of the current line follows. But in the internal table, the data is stored correctly, So, SHIFT LEFT is also not working.
    Please reply if there is any solution for the same.
    Thanks in advance,
    Pallavi.

    HI,
    1) I am assuming that you are creating the CSV file on the SAP server and that it is on the WINTEL platform.
    Your code would look something like
    data: ws_record(2000) type c.
    Open dataset filename for output in text mode.
    Loop at itab.
    concatenate itab-field1 itab-field2 itab-field3
      into ws_record separated by ','.
    transfer ws_record to filename.
    endloop itab
    close dataset filename.
    2) Alternatively please check the documentation on the following function module including the example.
    SO_NEW_DOCUMENT_ATT_SEND_API1
    Regards
    David Cooper

  • CSV file as an attachment is not in the recognizable format

    Hi All,
    I have a requirement to send a csv file as an e-mail attachment. For this, I am collecting the required data into the final internal table and converted this final internal table data into CSV format and then sending this in the mail as csv file attachment using the functiona module 'SO_NEW_DOCUMENT_ATT_SEND_API1'. Program is working fine and mail is coming to receiver's inbox.
    Well.. Now the problem is, I am getting the message while opening the csv file as "The file is not in a recognizable format." and if we say OK... then it is opening. Now how can we avoid coming of this message while opening the file.
    Please advice.
    Thanks a lot in advance.
    Regards
    Ramesh.

    These are all the Object types which are allowed in the attachement format.. try changing to any of the formats..
    ALI   ABAP list document
    ARC   Archive object (image)
    BCS   External Document Storage
    BIN   Binary document
    DLI   Distribution list
    EXT   PC document
    FOL   Folder
    GRA   SAP Business Graphics
    OBJ   Business object
    OFO   Object folder
    OTF   OTF document
    R3I   IDoc
    RAW   SAP editor document
    SCR   SAPscript document
    URL   Link to Internet/Intranet
    WIM   Work item
    XXL   Document for list viewer

  • Retrieve file name of email attachment

    Hi,
    it's getting more and more absurd about the fact that it is not possible to get the file name of an email attachment. It's not possible by writing a module (getName(), getContentType() nor getDescription() doesn't work) or by accessing mailadapter specific message attributes.
    I mean it's a basic requirement. Why is it so diffcult to implement it???
    -Steffen
    (frustrated)

    Hi,
    See the below links
    /people/michal.krawczyk2/blog/2005/03/07/mail-adapter-xi--how-to-implement-dynamic-mail-address
    http://help.sap.com/saphelp_nw04/helpdata/en/23/c093409c663228e10000000a1550b0/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/f1/9ef1680efbec4c9656eb028c44ab0b/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/ad/bf93409c663228e10000000a1550b0/frameset.htm
    Mail adapter
    Regards
    Chilla..

Maybe you are looking for

  • Cant disable DEP for itunes

    I can bring up Itunes but my library and playlists are empty. I can import the media folder and get the library only back. When I close itunes I get a message that DEP Data Execution Protection has turned off Itunes. I followed the window instruction

  • GUI event handling of 1.4.1 vs. 1.3.1

    Hi, Has anyone else experienced strange event handling problems when migrating from 1.3.1 to 1.4.1? My GUI applications that make use of Swing's AbstractTableModel suddenly don't track mouse and selection events quickly anymore. Formerly zippy tables

  • Authorization and De-authorization for PC

    If I got rid of old PCs before de-authorizing itunes, what are options to add a new PC since I get error message that I am over 5 PC limit

  • Drill Down Reporting - Same Page

    Hello, New to Apex here. I'm wondering if Apex can create reports like this: http://www.c-sharpcorner.com/UploadFile/MohanKumar.R/DrillDownReport02212008083910AM/DrillDownReport.aspx Any help is appreciated. Thanks!

  • Service charge for Customer materials..?

    Hi Our customer is giving us some material and asking us to do some service on it.Material given by customer some service work we will do it in our company .how to carryout this scenario? IN MM module we have a functionality called – subcontracting.