How do I consume attachments in cXML?

This one is new to me. We have a third party wanting to send cXML with attachments. We are trying to figure out whats the best way for them to send the attachment to us and then how we can process them via PeopleCode.
Does anyone have any experience with cXML, attachments and getting them into PeopleSoft? They said they could send them via a URL. Could we just get the URL, download it, and then put in the DB via PeopleCode?
Thanks.

Often, pictures or simple documents (eg, one-page PDFs) will appear directly within the message itself. You can also use the Quick Look button next to the attachments line (in the message header) to view and scroll through the files (provided they're viewable, and aren't compressed or binary files).
You can also click Save next to Quick Look to save the files to your Downloads folder.
Matt

Similar Messages

  • How to handle Multiple attachments in sender Mail Adapter

    Hi,
         In our requirement is mutiple documents send through mail adapter, In custom java module we read the each document details and do it bussiness process. But now i am not able to read the multiple files at a time. we are able to read single file only. So plz give the solution for that.
    1) How to send multiple attachments(like word, PDF, JPG etc..) using mail apapter.
    2) How to read multiple attachments in custom java module.
    Thanks & Regards
    Vijay

    Hi Vijay,
    Go through this weblog this explains steps to multile attachments.
    /people/sravya.talanki2/blog/2006/01/12/xi-triggering-e-mails-with-multiple-attachments--problems
    Regards,
    Ashwin.

  • How to accept multiple attachments on selection screen?

    Hi All,
    I need to know how to accept multiple attachments on selection screen and send them as email to external system (outlook).
    Basically, my req is to send a common email with attachments to certain users. These users are displayed in ALV. User will select ALL or specific user from ALV and send an email with message entered on selection screen.
    I used text editor control to input message body. I need to know how to accept attachments and send them.
    Appreciate any inputs.
    Thanks,
    SKJ

    SAP uses a nifty little button called 'Object Services' on ME23N (top left) which you can use to attach documents to business objects.
    http://help.sap.com/saphelp_nw70/helpdata/EN/be/3fe63659241157e10000009b38f889/frameset.htm
    It's a complicated way of doing it but might give you extra functionality in the long run.

  • How do I download attachments from Facebook to my iPad Air???

    Hello, how do I download attachments from Facebook [messages] to my iPad Air?? I have a PDF file I would like to download, but there's no options/button for me to press and start downloading. PLEASE HELP!

    click download at the bottom left corner of the particular pic you want

  • After update I am no longer able to open email attachments by just clicking on the attachment. I now have to click control and then click open linked file. How can I open attachments by simply clicking on them?

    After update I am no longer able to open email attachments by just clicking on the attachment. I now have to click control and then click open linked file. How can I open attachments by simply clicking on them?

    Unless you believe middle-click is yours and don't like it being usurped, mine is set globally to "Enter".

  • How do I download attachments to an external drive

    How do I download attachments to an external drive

    Pam,
    I assume your are talking about the Mac's Mail app.  You can set the destination for saving attachments as follows:
    In Mail's menu select Mail > Preferences.
    In the Preferences window select the General Tab.
    Find the Downloads folder setting then click on it and select "Other."
    Now you can select the destination from the pop-up.
    Now when an email has attachments you can click on the Save button and a copy of the attachments will go to that location.
    Dan

  • How do I send attachments in email as an icon

    How do I send attachments in email as an icon

    I mean when I have dropped a photo into the email how do I then change that to an icon so that other non Mac users can see it easier

  • How do I open attachments in emails I have received?

    How do I open attachments in emails I receive to view them before I send them on to friends?

    Often, pictures or simple documents (eg, one-page PDFs) will appear directly within the message itself. You can also use the Quick Look button next to the attachments line (in the message header) to view and scroll through the files (provided they're viewable, and aren't compressed or binary files).
    You can also click Save next to Quick Look to save the files to your Downloads folder.
    Matt

  • How do I save attachments with an E Mail?

    How do I save attachments with an E Mail?

    Hover the mouse at the top of an email with an attachment, in the area shown in the image below, and it should reveal the attachments icon - select it and download the attachments to wherever you wish on your HD.

  • How to edit file attachments in Mavricks Mail?

    Does anyone know how to edit file attachments in Mavricks Mail?
    Eudora, Foxmail and many other email programs allow you to simply click file attachment, open it, edit it, and FORWARD it to others.
    This is extremely difficult with Mail because it forces every single incoming file attachment to be READ-ONLY which means you are forced to re-save a copy in a folder then after editing it you need to spend time to fish it out of the folder, reattach it and then forward to others. It is a huge time wasting headache not to mention polluting your system with extra copies of files.
    Thanks

    I believe you are missing something. I'm not on my Mac right now but there should be a setting where to save attachments and also muiltiples at one time.

  • How to store Multiple Attachments in Workflow.

    Hello All,
    I am doing an scenario, in that i need to store multiple attachments in the workflow container.
    Kindly help me, how to store and also, how to retrieve those attachments form worklfow.
    I am using custom workflow.
    Thanks in advance......
    Best Regards,
    Chandran S

    Hi Jubish/Venkat
    1. I iterated this fucntion moudule to store the multiple attachments to the workflow
       SAP_WAPI_ATTACHMENT_ADD
    2. Call this FM to get the attachemnts form the workflow (pass workitem Item id which is used for storing the attchments).  SAP_WAPI_GET_ATTACHMENTS
    from above you will get objkey for each attachment as output in table.
    3. Pass the  objkey to this FM to get the contents
    SO_DOCUMENT_READ_API1'. this will retrun the content of the attachment either in object_content,   contents_hex.
    4. Pass the Obtained content to SCMS_BINARY_TO_XSTRING to get the disired format.
    Best Regards,
    Chandran S

  • How to display multiple attachments in UWL item in portal?

    HI,
    How to display multiple attachments in UWL item in portal?
    I want to display more than one attachment in UWL body,present its dispalying one attachment.
    Pls help on this
    Thanks,
    Bheem
    Edited by: v bheem on Aug 4, 2009 3:10 PM

    Hi,
    Are you able to manage this! Pls do let us know if you have done any configuration changes!

  • How to send mail attachments using java mail

    can any one help how to create mails attachments using java mail

    you can do it like this:
    Message msg = new MimeMessage(session);
    String fileAttachment = "c:/test.txt";
    Multipart mp = new MimeMultipart();
    BodyPart bp = new MimeBodyPart();
    FileDataSource fds = new FileDataSource(fileAttachment);
    bp.setDataHandler(new DataHandler(fds));
    bp.setFileName(fds.getName());
    mp.addBodyPart(bp);
    msg.setContent(mp);
    ...

  • How do I add attachments to a Captivate 7 eLearn?

    Articulate has an Attachments button in the player window.  In Captivate 7 -   I want the user to click a button and the attachments window appears for them to download a document/PDF.
    I can not find anything in Captivate to add that into the eLearn.  I know that I can create a click box to hyperlink to another site but I actually want the document embedded into the eLearn similar to how Articulate has the ATTACHMENTS button and you can decide which file to download.
    Any guidance will help alot!  I don't want to switch this eLearn to Articulate.
    Cathy

    While it's not a built-in feature, you could probably get the same result with a little bit of creativity.
    I haven't tried it, but you could probably make a text caption or smart shape with the text links formatted as you want, putting it on the first slide set to show for all slides, not visible upon viewing the project. Then you could make a smart shape button, also set to show for all slides, that show/hides the text caption/smart shape with an advanced action.
    (Obviously you'd still have to do as Rick says, and make sure the linked document(s) are in the right place when you publish your project. )

  • How do I send attachments (documents) as a PDF?

    How do I send attachments (documents) as a PDF?

    <http://support.apple.com/kb/HT2500>
    Look for "Adding attachments and photos".

Maybe you are looking for

  • No sound on Youtube with my bluetooth headset

    Hello world ! I've have a curious problem with Youtube. When i go on youtube with my bluetooth headset on my head, the sound of the videos is not in my headset but in the speakers of my PC But i have no problem with other sites like Jamendo for examp

  • Can't load Organizer in Elements 10.

    I can't do it either from the Welcome screen (which displays links to both Organizer and Editor) or from Editor.  From Editor, it says, loading Organizer workspace but doesn't open it.  I get no error message.  I used to have no problems opening/usin

  • I have just installed ios6 and some of the icons on the front screen have gone, how do i get them back?

    i have just installed ios6 and now some of the icons i had have gone from the front screen, how do i get them back ?

  • Alternate Bank account number in FF68 (check deposit)

    Dear Friends, The alternate bank number is assigned in House Bank master data, now I want to know the next  step so that this "Alternate Bank account" can appear in Transaction FF68 for check deposits. Thanking you. PP

  • Call settings changed in one system

    Hi , I have changed my call settings from one system and skype used in other system for the same login doesn't reflect the same setting. Will the settings stpred in local not updated in the server. Also the IM msgs not able to view from the other sys