Working with XI attachment

Hello
It is possible to create attachment in XI message like descibed in blog https://www.sdn.sap.com/irj/sdn/weblogs?blog=/pub/wlg/2849. [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken] [original link is broken]
But how could I process this attachment in XI? What is the purpose of XI Message attachement?

hi Sergey,
just check my next blog:
/people/michal.krawczyk2/blog/2006/04/19/xi-rfc-or-abap-proxy-abap-proxies-with-attachments
to understand why to you the attachments
basically you can use it:
- with all apdater that support it
(like mail adapter)
- to store non XML data
if you have some XML data too in the message
but the first option is much more often used I believe:)
Regards,
michal
<a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

Similar Messages

  • LSO Correspondence doesn't work with vCalendar attachment in MSOutlook 2007

    Hello,
    Is anyone using the Learning Solution Request-Based Correspondence with either vCalendar attachments and Microsoft Outlook 2007?
    Our client moved from Microsoft Outlook 2003 to Microsoft Outlook 2007. None of our vCalendar attachments work since we have moved to Outlook 2007. When we try to open the .VCS attachment, we receive an error message stating that it is not a valid Internet calendar file.
    I even tried .ICS attachment but same error pops up !
    Any work around !!
    Request to help , it would be greatly appreciated !!
    Thanks!
    Hello SAP Gurus ,
        Please help me out on the issue.
        or any alternative to this.
    Thanks in advance
    Edited by: Kumar214reddy on Jan 19, 2012 3:45 PM

    I was experiencing this same issue and have finally have it resolved with a code recommendation from SAP.  Hopefully you have already performed all the actions as outlined in this document:
    http://aspireopenmic.com/2011/06/29/lso-outlook-calendar-requests-as-attachments/
    However this does not work with Outlook 2007/2010 - only with Outlook 2003.  I had to do this additional work:
    1) Copy Class CL_LSO_CRP_RENDER_EXAMPLE to ZCL_LSO_CRP_RENDER_EXAMPLE
    2) Edit the method CREATE_VCAL of this new class.
         - Comment all code out from this line onwards:
      * BEGIN:VCALENDAR
        ls_soli-line = 'BEGIN:VCALENDAR'.
       APPEND ls_soli TO lt_soli.
      * Add CR/LF
        LOOP AT lt_soli ASSIGNING <fs_soli>.
          <fs_soli>-line+253(2) = cl_abap_char_utilities=>cr_lf.
       ENDLOOP.
    3) Add this statement:
    DATA: helpstring    TYPE string.                  
    4) Add the following code within the method:
    * BEGIN:VCALENDAR
      CONCATENATE 'BEGIN:VCALENDAR' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* BEGIN:VCALENDAR
      CONCATENATE helpstring 'VERSION:1.0' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* BEGIN:VEVENT
      CONCATENATE helpstring 'BEGIN:VEVENT' cl_abap_char_utilities=>cr_lf
        INTO helpstring.* ORGANIZER
      CONCATENATE helpstring 'ORGANIZER:MAILTO:' ls_data-sender-smail
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* ATTENDEE
      CONCATENATE helpstring 'ATTENDEE;ROLE=ATTENDEE:' ls_data-astxt '<' ls_data-amail '> '
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DTSTART
      CONCATENATE helpstring 'DTSTART:' ls_data-kbgda 'T'
        INTO helpstring.
      IF NOT ls_data-kbtim IS INITIAL.
        CONCATENATE helpstring ls_data-kbtim INTO helpstring.
      ENDIF.
      CONCATENATE helpstring
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DTEND
      CONCATENATE helpstring 'DTEND:' ls_data-kndda 'T'
        INTO helpstring.
      IF NOT ls_data-kbtim IS INITIAL.
        CONCATENATE helpstring ls_data-ketim INTO helpstring.
      ENDIF.
      CONCATENATE helpstring
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* LOCATION
      IF NOT ls_data-b_ort IS INITIAL OR NOT ls_data-rstxt IS INITIAL.
        CONCATENATE 'LOCATION:' ls_data-b_ort ls_data-rstxt
          INTO l_subject SEPARATED BY space.
        CONCATENATE helpstring l_subject
          cl_abap_char_utilities=>cr_lf
          INTO helpstring.
      ENDIF.* CATEGORIES
      CONCATENATE helpstring 'CATEGORIES;ENCODING=QUOTED-PRINTABLE:EDUCATION'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* CLASS
      CONCATENATE helpstring 'CLASS:PUBLIC'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* SUMMARY
      CONCATENATE text-001 ls_data-kstxt INTO l_subject SEPARATED BY space.
      CONCATENATE helpstring 'SUMMARY;ENCODING=QUOTED-PRINTABLE:' l_subject
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* DESCRIPTION
      CONCATENATE helpstring 'DESCRIPTION:' l_subject
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* END:VEVENT
      CONCATENATE helpstring 'END:VEVENT'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.* END:VCALENDAR
      CONCATENATE helpstring 'END:VCALENDAR'
        cl_abap_char_utilities=>cr_lf
        INTO helpstring.
      CALL METHOD CL_DOCUMENT_BCS=>STRING_TO_SOLI
        EXPORTING
          IP_STRING = helpstring
        RECEIVING
          RT_SOLI = lt_soli.
    5) Activate this class
    6) Search for all occurances of where method CREATE_VCAL is used within class CL_LSO_CRP_RENDER_EXAMPLE
    7) Replace following statement:
        lr_document = cl_lso_crp_render_example=>create_vcal( lr_reader ). 
    with: 
      lr_document = zcl_lso_crp_render_example=>create_vcal( lr_reader ). 
    This should resolve any problems now with the calendar attachments.

  • How Mail work with image attachements and HTML image ?

    Hello,
    I'm writing an application that sends html emails with images to Mail.app. When Mail display the mail, everything is okay, images are correctly embedded in html code, using inline attachements.
    But there's still a problem : The images are also displayed at the bottom of the email, as file attachements. I know that Mail's template can hide these attachements, but I cannot reproduce it when sending my own emails.
    Is there anybody here that already get such problem and find the solution ? (apparently, Windows User get the same problem with Outlook, but they have an API under Windows...I'm using my own email API..)
    David

    David can you share how you managed to get the inline images to work. I've got the general idea of how to do it. But I do not seem to be able to change the Content-Type to multipart/mix. Can you point me in the right direction. Should the Content-Type definition and everything else be part of the body? Or should some headers (namely the multipart) be defined in the mailto URL format?
    In other words do you do: mailto:?subject=test&Content-Type=multipart/mix;%20boundary=myBoundary&body=--m yBoundary etc...
    Or id it: mailto:?subject=test&body=Content-Type=multipart/mix;%20boundary=myBoundary%20- -myBoundary etc..
    Neither seems to work for me so I am really stuck. But knowing what the right way is would help me figure things out a bit better.
    Thanks in advance

  • NETFLIX STOPS WORKING WITH HDMI ATTACHED TO MY TV

    Everytime I use my Netflix app with a HDMI cord for my TV. It stops working and saying I need to download video drivers to be able to use the service. Where do I find the video driver info on an HP Envy- Tablet and Laptop combo...

    Hello SCB08,
    If you tell us what the full model number of the computer is and what country it was purchased in, we can point you to the correct drivers.
    How Do I Find My Model Number or Product Number? | HP® Support
    Does the HDMI link to your TV work if you just use your browser to view videos or anything else? Or is it just the streaming Apps like Netflix?
    HP may or may not have an update to fix this.

  • SBH 52 Microphone only working with headphones attached

    Hi All,
    One of the main reasons I got the SBH52 is so I can use it as a headset, however, recently the microphone stopped working unless I have a headphone connected or I use the SBH52 speaker instead of headset. Is anyone facing the same issue, or anyone managed to resolve it ??
    Thanks

    @MoathDali
    Contact your local Xperia Care ASAP
    http://support.sonymobile.com/global-en/contactUs/
    "I'd rather be hated for who I am, than loved for who I am not." Kurt Cobain (1967-1994)

  • TM works with network drives?

    Just to be sure - TM works with directly attached drives. But does it also work with network drives? I hope it does at least with Apples newest update.
    Thanks
    Andreas

    There is plenty of documentation/discussion of a workaround that let's you make your computer recognize unsupported drives. Search for it using words like terminal network unsupported drive backup and you will find it. Some people say it works fine, and others caution against using it. I haven't seen a thorough discussion that really explains why Apple doesn't allow it, or why it's risky, or why it works, but that's typical of the boards that attract a techie crowd. Me? After spending $650 for a Terastation, I'm going to give it a try. Apple wants so badly for Windows users to switch to Mac, but they sometimes seem to make it very difficult and frustrating for us.

  • Acrobat XI email attachment does not appear to work with Outlook 2013 64 bit

    When attempting to send email from Acrobat, the following Microsoft Office Outlook 2013 64 bit error message is received: 
    "Either there is no default mail client or the current mail client cannot fulfill the messaging request.  Please run Microsoft Outlook and set it as the default email client."
    Naturally, Outlook was set as default client and then reset for good measure.  I did both Outlook and Acrobat repairs and have the latest 11.0.2 installed.  All other internal Office 2013 email applications work as well as seemingly all other embedded Acrobat funcitions with Office 2013 work well.  Office 2010 64 bit and Acrobat X worked fine.  I upgraded to Office 2013 64 bit and had the problem with Acrobat X.  I then upgraded to Acrobat XI and the issue remained.
    Most importantly, I intalled Office 2013 64 bit on my laptop with Acrobat X.  An the email attachment function works perfectly. 
    So, is there some sort of corrupt MAPI file that I have to overwrite on my desktop that the Ofice and Acrobat repair functions do not fix?
    Thanks,
    Joe

    I am sorry.  In my haste, not only did I attach the link the wrong way, but I also did not specify which solution worked.  My problem was a Click to Run issue.  The portion of the thread that deals with the problem is:
    "HurdleRemove replied on May 16, 2013
    I created a solution for this problem for 64 bit Windows 8 where Outlook 2013 was installed as Click-To-Run.......
    ......A  registry edit will fix the problem with Outlook 2013 click to run  installations and enable Outlook to be set as the default mail client.  This registry edit will for many third party programs eliminate the error "Either  there is no default mail client or the current mail client cannot  fulfill the messaging request. Please run Microsoft Outlook and set it  as the default mail client." It  worked to resolve the problem where Adobe Acrobat was generating this  error.
    The registry edit is here for Office  2013 64 bit click to run installations that will enable Outlook 2013 to  be recognized by third party applications:
    1. Create registry key:
    HKEY_LOCAL_MACHINE\SOFTWARE\Wow6432Node\Microsoft\Office\15.0\Outlook
    2. Create String value:
    Bitness
    3. Set the String value for Bitness to:
    x64
    This registry edit is an essential element  necessary to resolve the click to run problem that prevents Outlook 2013  from being set as the default mail client. Although it worked with  Adobe Acrobat, it will not completely resolve the  problem for some third party applications like Kerio Outlook Connecter  where the software developer has a web site that includes extra steps  necessary for a full resolution for the Kerio product. The Kerio web  site includes this registry edit in the context  of resolving the Office 365 problem. However, the registry edit works  with Office 2013 desktop as well. A similar register edit could likely  be made for 32 bit versions but the registry path would not include Wow6432Node. I do not have a 32 bit machine and cannot test a 32 bit solution."

  • Attach to email not working with Outlook 2011

    I've created a pdf document for users to fill out and then click a SUBMIT button which attaches the document to an email and sends it back to me.  It works great with Windows users, however, it fails to create an email for Mac users with Outlook 2011.  It opens the program but doesn't create an email.  I'm using Acrobat Pro 9.5
    Can someone please help in fixing this matter as there are people that use Macs.
    Thanks
    Matt

    Yes the Acrobat PDFviewer Plug does nt work with anything but Safari on a Mac. In OS9 days it would work with any web Browser.
    But Adobe has decided That they will only support Webkit Browsers and refuses to support despite pleading with Adobe by people using Ecko based browsers. This leave more people unable to use the adobe PDFviewer plugin, than can. A fellow from Germany called Schubert has come up with a PDF Browser Plugin that can use any Browser Webkit or Gecko except Internet Explorer. The one caveat is that you can't fill out forms. And he is banned from putting that feature in, by Adobe.

  • I'm using the note taking view of Word 2011 for Mac so I can record a meeting as well as take notes. The audio of the internal microphone is so low - can I attach an external mic and have it work with note taking view?

    Can I attach an external mic to my Macbook Air to enhance sound input for the note taking view of Word 2011 for Mac? I've tried preferences to up the volume of my sound, but I still cannot hear the recording. Any suggestions? I need to record a meeting as well as take notes so I'd like to use this tool, but the audio is not good enough.

    A USB microphone can work with the Air, and I've used them before with my 11" Air.  Griffin also made a product (the iMic) that will add a standard computer microphone port, connecting to your USB port.  It's heyday was the time of the old iBook laptops (which also lacked a microphone in jack) but I think it's still around.
    The single sound port on the 2011 models, as I recall, supports iPhone style headphone/microphone but I don't believe it will support a standard microphone input. 
    The built in microphone sits on the left side of the computer and I suspect wouldn't work well for picking up a lecture unless you were sitting just right in position vs. the speaker (preferably having the speaker positioned to the left and sitting really close).  By design most laptop microphones presume they are going to be mainly used to record a sound coming from the person sitting at the keyboard, while for a lecture you normally would prefer it concentrate on sound coming from behind the screen.

  • Hi, i have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)

    hi good morning,
    I have a user that is working with the Adobe acrobat 9 standard. when he adds a stamp to a PDF that he opens from an Email in Outlook, this is the error he gets. (snapshot in the attached files)
    can you help us with this problem?

    Hi, thanks for the fast response.
    This is the Extended Font Pack i have installed on the Terminal server.
    what do you mean by properly embedded? how can i check that?
    BR
    Eric Mizrachi

  • Attachment getInputStream does not work with REMOTE_CLIENT

    Hi.
    So, I am working with Worklist attachments. When using the WorkflowServiceClientFactory.REMOTE_CLIENT I can grab the task just fine. However, when using the getInputStream on the task attachment, I get a null input stream. The same cannot be said when I use WorkflowServiceClientFactory.JAVA_CLIENT.
    Is there a way of getting around this? Eventually, we will be trying to put this code inside an EJB that lives remotely from the BPM container.
    Is this a bug? Suggestions?
    Thanks,
    BradW

    The feedback page is here: http://www.apple.com/macosx/feedback/
    This is most definitely a bug. Apple will sell you a remote control with volume control and a computer with digital output and then the remote doesn't work? Please note that using the volume control manually (with a mouse) does work, even with a digital output.
    Apple please fix this bug
    PowerMac G5   Mac OS X (10.4.6)  

  • Unable to send mp3 with mail attachment. Zip the file doesn't work same

    Tried to send an mp3 file several times and kept getting this message. The file was only 11 mg.
    Unable to send with mail attachment.
    Your message couldn't be sent because a server error occurred. To send this message,please delete the current attachment,then re-attach.
    iMac, Mac OS X (10.7.2)
    Toad replyed try zip file (compress) I did and still got the same message

    Many mail servers cap their message sending or receiving at 4MB.  If you are sending your own work that you want distributed by someone else, check with your internet provider if they can temporarily raise that restriction and the recipient's mail server can temporarily raise those restrictions.   Better would be for both of you to be able to access a webhosting site to share the material and use some FTP programs to send the file to each other.    If it is an MPEG-3 of a commercial CD's music, we can't help you as such distribution is illegal.

  • Document scanning software that allows for custom search fields, attaching a thumbnail to the scanned document file, and works with any scanner?

    I am a professional photographer, with years of paper model releases. I would like to find a document scanning software that works with my exisiting flatbed scanner (Canon MP250) that I can customize the seach fields for (ie. name, agency, job, etc.) and also attach a thumbnail image to as a job reference. I would like the document to be searchable as well. I've looked at a few different document scanning software companies, but I haven't found one that allows me to attach a jpeg file to a scanned PDF. Does anyone know if software like this exists?

    You can't do better than to use VueScan:
    http://hamrick.com/

  • I am new to working with pdf.  I am trying to fill out a form that was attached to a web site.  I have a Macbook Pro.  I am just learning Acrobat.  How do I get the form to accept input?

    I am new to working with pdf.  I am trying to fill out a form that was attached to a website.  I have a Macbook Pro and I am trying to learn Acrobat.  How do I get the form to accept my input?

    If there are Acrobat PDF form fields, not jus a space for a form field, then you will have to add them. It would be better to ask the provider of the form to add the fields. If you cannot add the fields, then you can use the add text feature.
    Have you looked in the "Tools" panel for the "Forms" category?
    Try Acrobat Users Community Tutorials , http://acrobatusers.com/tutorials.
    See Adobe TV - Acrobat, http://tv.adobe.com/channel/how-to/acrobat-xi-tutorials/.

  • I have a version 1 iPad. I would like to be able to use my LCD projector to display content to my students. I have the dongle to attach to the projector, but can't make it work. The process DOES work with my friend's iPad 2. Any advice? Thanks!

    I have a version 1 iPad. I would like to be able to use my LCD projector to display content to my students. I have the dongle to attach to the projector, but can't make it work. The process DOES work with my friend's iPad 2. Any advice? Thanks!

    Expanding on what deggie said, with an iPad 1 the app you're using must support video out. Only the iPad 2 can mirror the screen. The apps included with the iPad that output to external monitors are given here:
    http://support.apple.com/kb/HT4108
    For third-party apps, consult the app's documentation or contact the developer.
    Regards.

Maybe you are looking for

  • [Solved] how do i build my ISO image with archiso?

    hi all i've been following this wiki and it's been going really well (it hasn't gone wrong...). but the wiki page just sort of stops halfway through the configuration bit a google search brought me to this page which suggests using the "build.sh" scr

  • How can I use my MBP's(late 2008) display as a secondary screen for MCP retina display?

    I've got my new MBP retina dispaly and I would like to use my old MBP as a secondary display. Is there any way to do this without installing different types of software like ScreenRecycler? I tried to connect the only cable I have which is an HDMI to

  • Want text input containing HTML tags to appear as HTML in output format

    Hi, We have a table in Oracle database that has a column named detail,one of its values is like this: <bold><italics>Good Morning</italics></bold>. What our client wants is that the output format should show: <b><i>Good Morning</b></i>. That is,Bi Pu

  • Pages not loading properly?

    opening up www.trident-gaming.net when i open a thread i get half of my screen black ive tried re installing and installing different versions of firefox

  • Messages in 10g

    I've searched through the forum and can't find information for what I believe is a general problem that I'm having with Forms 10g (10.1.2). None of the "normal" Forms messages are appearing. If I open a form, enter values in a field or two then refre