When sending email PO in a PDF attachment, the attachment can not be openen

Hi all,
We are trying to send an email with the PO in PDF format.  We got the email but the attachment can not be opened. 
Error reads: Adobe could not open test.pdf because  it is either  not a supported file type  or because  the file has been damaged (for example , it was send as a email attachemnet and was not  correctly decoded).
Could any body bring some light?   We know that everything in SCOT is fine because we can email the PO through configuration to the vendor without problem. It is just these extra copies that do not work.
a) We are modifying our custom Print program to add the code below after closing the form.
in few words:
a) We are getting the OTF from closing the form.
b) Converting the OTF to PDF
c) Sending the PDF as attachment.
data: lt_docs      TYPE TABLE OF docs.
data: pdf_bytecount TYPE i.
data: begin of pdfout occurs 0,
   tline type tline,
end of pdfout.
Ende Formulardruck --------------------------------------------------*
  CALL FUNCTION 'CLOSE_FORM'
       IMPORTING
            result = result
       tables
            otfdata = otf.
  IF RESULT-TDSPOOLID NE SPACE.
    SPOOLID = RESULT-TDSPOOLID.
    PERFORM PROTOCOL_UPDATE USING '320' SPOOLID SPACE SPACE SPACE.
  ENDIF.
  if result-userexit eq 'C' or
      result-userexit eq 'E'.
    retco = '9'.
  endif.
  CALL FUNCTION 'CONVERT_OTF_2_PDF'
    IMPORTING
      bin_filesize           = pdf_bytecount
    TABLES
      otf                    = otf
      doctab_archive         = lt_docs
      lines                  = pdfout
    EXCEPTIONS
      err_conv_not_possible  = 1
      err_otf_mc_noendmarker = 2
      OTHERS                 = 3.
Creation of the document to be sent File Name
   maildata-obj_name = 'TEST'.
Mail Subject
   maildata-obj_descr = 'Subject'.
Mail Contents
   append mailtxt.
  describe table mailtxt lines tab_lines.
  read table mailtxt index tab_lines.
  maildata-doc_size = ( tab_lines - 1 ) * 255 + STRLEN( mailtxt ).
Creation of the entry for the compressed document
  clear mailpack-transf_bin.
  mailpack-head_start = 1.
  mailpack-head_num = 0.
  mailpack-body_start = 1.
  mailpack-body_num = tab_lines.
  mailpack-doc_type = 'RAW'.
  append mailpack.
Move OTF code to structure SOLI form email
CLEAR solisti1. REFRESH solisti1.
LOOP AT otf.
  solisti1-line = otf.
  APPEND solisti1.
ENDLOOP.
Move pdf code to structure soli form email
  clear solisti1. refresh solisti1.
  loop at pdfout.
    solisti1-line = pdfout.
    append solisti1.
  endloop.
  loop at solisti1.
     move-corresponding solisti1 to mailbin.
     append mailbin.
  endloop.
  describe table mailbin lines tab_lines.
mailhead = 'TEST.OTF'.
  mailhead = 'TEST.PDF'.
  append mailhead.
Creation of the entry for the compressed attachment
  mailpack-transf_bin = 'X'.
  mailpack-head_start = 1.
  mailpack-head_num = 1.
  mailpack-body_start = 1.
  mailpack-body_num = tab_lines.
mailpack-doc_type = 'OTF'.
  mailpack-doc_type = 'PDF'.
  mailpack-obj_name = 'TEST'.
  mailpack-obj_descr = 'Subject'.
  mailpack-doc_size = tab_lines * 255.
  append mailpack.
  mailrec-receiver = '[email protected]'.
  mailrec-rec_type = 'U'.
  append mailrec.
  mailrec-receiver = '[email protected]'.
  mailrec-rec_type = 'U'.
  append mailrec.
  CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
          EXPORTING
               DOCUMENT_DATA              = maildata
          TABLES
               PACKING_LIST               = mailpack
               OBJECT_HEADER              = mailhead
               CONTENTS_TXT               = mailtxt
               RECEIVERS                  = mailrec
          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.
ENDFORM.

Dear Monica,
  You need to configure the system with respect to functional point of view and need to write the following code in print program. i have done this and solution is as follows.
<b>  Reward me for this solution.</b>
Process 11 (MM)     Sending RFQs and POs to vendors directly from the system instead of sending thru Courier or Fax     
Existing Process (AS-IS)     Presently system is not supporting this requirement
Business Requirements     RFQ’s to be linked with vendor master with e-mail to send enquiries directly through system instead of courier/fax. Vice versa P.O’s.  Specifications, drawings should also go to vendor along with mail.
To-Be     
Configuration Settings:                  
1) Spro – Materials management – Purchasing – Messages – Output control – Message types – Define message types for RFQ/ PO
•     Created ZEK1,ZMI and ZEK2 for RFQs
•     Created ZIK,ZOC,ZOK,ZOM,ZSI, ZSK2 and ZSM for Pos
•     The above New output types Included with existing Print Forms and Programs but modified with External send(5) medium, and added company’s letter head thru ABAP developments (details provided below)
•     The above new output types also maintained for Fine- tuned control (thru same navigation) for New(1) and Change(2) operations
      2) Spro – Materials management – Purchasing – Messages – Output control – Message   determination schemas – Define message schema for RFQ/ PO
•     Maintained the new output types in the control data
3)     Maintain Condition records for the New out put types (copied same document types from the existing old output types)
Easy access – Logistics – Materials management – Purchasing – Master data – Messages – MN01 (for RFQs)/ MN04 (for Pos)
4)     Maintain Email id of Vendor in Vendor master.
Developments (ABAP):
1)  Copied the existing print programs and forms of the corresponding out types.
2) Addition of header window in each corresponding form (HEADER window). Uploaded the HEADER3 graphics in the header window.
INCLUDE HEADER3 OBJECT GRAPHICS ID BCOL LANGUAGE EN
3) Added the the following code in TOP includes
                   TYPE-POOLs szadr.
           INCLUDE:  LMEDRUCKF09.
data: intnast         LIKE snast,
      lvs_recipient   LIKE swotobjid,       "Internet
      lvs_sender      LIKE swotobjid,       "Internet
      lvs_comm_type   TYPE ad_comm,
      lvs_comm_values TYPE szadr_comm_values,
      p_retco         TYPE i.
5)     Addition of the perform to SOS include for header window display
       PERFORM WRITE_FORM_HEADER.
*&      Form  WRITE_FORM_HEADER
      text
-->  p1        text
<--  p2        text
FORM WRITE_FORM_HEADER.
CALL FUNCTION 'WRITE_FORM'
EXPORTING
   ELEMENT                        = 'HE1'
   FUNCTION                       = 'SET'
   TYPE                           = 'BODY'
   WINDOW                         = 'HEADER'
IMPORTING
   PENDING_LINES                  =
EXCEPTIONS
   ELEMENT                        = 1
   FUNCTION                       = 2
   TYPE                           = 3
   UNOPENED                       = 4
   UNSTARTED                      = 5
   WINDOW                         = 6
   BAD_PAGEFORMAT_FOR_PRINT       = 7
   SPOOL_ERROR                    = 8
   CODEPAGE                       = 9
   OTHERS                         = 10
ENDFORM.
6)     In the corresponding FORM include the following code has been added.
DATA:  lvs_comm_type     TYPE   ad_comm,
        lvs_comm_values   TYPE   szadr_comm_values,
        xprogramm         type   sy-repid.
  ... use stratagy to get communication type
      CALL FUNCTION 'ADDR_GET_NEXT_COMM_TYPE'
           EXPORTING
                strategy           = nast-tcode
                address_number     = lfa1-adrnr
           IMPORTING
                comm_type          = lvs_comm_type
                comm_values        = lvs_comm_values
           EXCEPTIONS
                address_not_exist  = 1
                person_not_exist   = 2
                no_comm_type_found = 3
                internal_error     = 4
                parameter_error    = 5
                OTHERS             = 6.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
           WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
convert communication data
      MOVE-CORRESPONDING nast TO intnast.
      MOVE sy-repid           TO xprogramm.
7) By using the function module we can get sender and reciepient mail ids to variables lvs_recipient    lvs_sender
      CALL FUNCTION 'CONVERT_COMM_TYPE_DATA'
           EXPORTING
                pi_comm_type              = lvs_comm_type
                pi_comm_values            = lvs_comm_values
                pi_country                = lfa1-land1
                pi_repid                  = xprogramm
                pi_snast                  = intnast
           IMPORTING
                pe_itcpo                  = itcpo
                pe_device                 = xdevice
                pe_mail_recipient         = lvs_recipient
                pe_mail_sender            = lvs_sender
           EXCEPTIONS
                comm_type_not_supported   = 1
                recipient_creation_failed = 2
                sender_creation_failed    = 3
                OTHERS                    = 4.
      IF sy-subrc <> 0.
      Avoids cancellation with message TD421
        p_retco = '1'.                                           "831984
        PERFORM protocol_update USING '740' space space space space.
      dummy message to make the message appear in the where-used list
        IF 1 = 2.
          MESSAGE S740(me).
        ENDIF.
        EXIT.
      ENDIF.
      IF xdevice = 'MAIL'.                                       "885787
    Check validity of email address to avoid cancellation with TD463
        CALL FUNCTION 'SX_ADDRESS_TO_DEVTYPE'                    "831984
          EXPORTING
            recipient_id            = lvs_recipient
            sender_id               = lvs_sender
          EXCEPTIONS
            err_invalid_route       = 1
            err_system              = 2
            OTHERS                  = 3.
        IF SY-SUBRC <> 0.
          p_retco = '1'.
          PERFORM protocol_update USING '740' space space space space.
       dummy message to make the message appear in the where-used list
          IF 1 = 2.
            MESSAGE S740(me).
          ENDIF.
          EXIT.
        ENDIF.
      ENDIF.
8)     Attaching the new print program and form in NACE transaction.
Steps for End user:
1)     Creating the Purchase Order or RFQ with suitable document type through ME21N or ME41 .
2)     Executing the transaction ME9F and in selecting the suitable output type.
3)     Executing the transaction ZSEND_PDOC using INT as input.
4) With above steps we can able to send purchase order or RFQ to vendor as an attachment through e-mail in PDF format.
Regards
Badari

Similar Messages

  • HT1338 when send email there is no sound of the whoosh

    there is no woosh sound when I email ??

    Mail > Preferences > General
    New message sound:
    Play sound for other mail actions.
    Make sure that the box is checked.
    If it is checked, uncheck and recheck it.
    Hope this helps.

  • I've brought my daughter a second hand iPhone 3GS on O2 network. But when I put a O2 sim in. The phone can not connect to Network? Any ideas?

    I brought a second Hand iPhone 3GS for my daughter on the O2 network. But when I put an O2 sim in to the phone it doesn't connect / keeps searching for network. Can any one help me Connect??

    Try: Settings>General>Reset>Reset Network Settings.

  • When I download a file, particularly PDF's, the file does not appear in the download box. Why?

    The file will appear in the location that I set for downloads, but this is not convenient to constantly return to the computers main window and extract the file.

    Hi Stephen,
    What version of MS Office are you using?
    Are you facing the issue similar to that mentioned here: Acrobat/Reader: Attach to Email button not working for PDFs referenced from long URLs
    Open Acrobat. Use the click-path Edit - Preferences - select the Category "Email Accounts". In the dialog there is the "Add Account" drop-down. Select "Add Other". The "Add Webmail Account" dialog presents. You'll fill out the dialog's fields with Outlook.com settings. (don't forget the "Advance Settings" button)
    From a look-see on the web it appears that the following are the needed settings. BUT, you'll be wanting to validate.
    The Outlook.com SMTP server settings for sending outgoing messages from an email program on desktop, cell phone or mobile device are:
    • Outlook.com SMTP server address: smtp.live.com
    • Outlook.com SMTP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com SMTP password': Your Outlook.com password
    • Outlook.com SMTP port: 587
    • Outlook.com SMTP TLS/SSL encryption required: yes
    For incoming messages from an Outlook.com account to an email program using POP, use the Windows Live Hotmail POP3 server settings.
    The Outlook.com POP server settings for downloading new incoming messages to email program, cell phone or mobile device are:
    • Outlook.com POP server address: pop3.live.com
    • Outlook.com POP user name: Your full Outlook.com email address (not an alias)
    • Outlook.com POP password: Your Outlook.com password
    • Outlook.com POP port: 995
    • Outlook.com POP TLS/SSL encryption required: yes
    Regards,
    Rave

  • Anybody having problems in Mail when sending reply messages from a thread and the message is not showing in the Sent mailbox?

    Hello Folks;
    Got a weird one...
    I am sending replies from a thread in Mail and they seem to have been sent (sounds) but they don't show in the Sent mailbox... O-0 These messages seem to have been delivered to cyberspace as they don't show in my Sent mailbox on my IMAP server... This has been happening for the last month... I have checked and verified all of my IMAP settings and Mailbox behavior settings... This is really weird and maybe a bug.... I checked all of my other clients that have access to the server on the same account and these messages do not show there either.... Any ideas?
    --prd54usa

    The messages are getting to the recipient...
    I am on a Comcast IMAP server if this has anything to do with it and the server settings are following the correct server port numbers, SSL settings, etc... I save Sent messages on the IMAP server for 90 days.... None of these "disappearing" messages were on the server for more than a couple of days.. Typically, these messages will get 'hung' in the Outgoing Mailbox for @30 seconds before sending... like they are being scanned for viruses or Mail can't connect to the server all of a sudden...
    I anybody else here is on a Comcast IMAP server, and having this problem of disappearing Sent messages... This would tell us that it might be a Mail Provider issue with their outgoing server...
    --prd54usa

  • Attachment failure when sending email

    three days ago I detected the problem with Convergence,attachment failure(any type of files) when sending email,the attachment suddenly disappears (confirmed by checking the convergence webmail Sent folder and the recipient only receiving the body text message without the attachment(s)) .However , sending with attachment through mail client software such as Thunderbird is OK . before this problem happened , the system can send email with attachment without any problem . Please help on how can I fix this ?
    the java messaging server details :
    Sun Dir LDAP
    #./iwcadmin -V
    Sun Convergence 1.0-10.01 (built September 6 2009 - 18:29:30)
    Sun Java(tm) System Messaging Server 7.0-3.01 32bit
    on Solaris- Bourne shell
    #uname -srv
    SunOS 5.10 Generic_137137-09

    mattzyzy wrote:
    -all users experiencing the same problem now with Convergence
    I don't see this behaviour with my test Convergence patch 10 install (Comm-Suite-7). I should point out that you need to be running MS7u3 a.k.a. MS7.3-11.01 as per the documentation:
    http://wikis.sun.com/display/CommSuite7/Communications+Suite+7+Component+Products+Release+Notes#CommunicationsSuite7ComponentProductsReleaseNotes-RequirementsforCommunicationsSuite7
    "Communications Suite Component Requirements for Convergence 1 Update 3"
    "Messaging Server - Webmail Server => 7 Update 3"
    -Firefox 3.0 ,3.5 , IE 7,8
    small attachment size 100KB to 400KB - PDF ,MSWORD (DOCX AND DOC), -all the types that work prior to this problem happened .Do the users see the size of the attachment displayed next to the attachment name after uploading it?
    Regards,
    Shane.

  • "An error occurred when sending email"  Reader XI  PDF  W7  Outlook 2010

    "An error occurred when sending email" Reader XI  PDF W7 Outlook 2010

    To bypass client-side email software the submit button should point to a server-side script such as PHP or ASP.net.
    For more information and examples visit the following website:
    http://www.pdfemail.net/examples/

  • Unable to retrieve attachments when sending emails.

    When sending emails I can select any attachment ,and when I select open or double click attachment button the icon at the end of the attachment button spins like its trying to retrieve attachment but never completes.

    Using Howmail where n the Mac? In the Mac Mail app?
    What does all the above mean in " The attachments are all the above"?
    What are the attachments? photos?

  • Program To Send Email with attachemnts in PDF / Excel with Subject

    Hi All,
    I have been given an Object to Develop a report to Send Email with attachemnts in PDF / Excel with Subject.
    Please provide the way to go about.
    Regards,
    Mohsin

    REPORT ZREPORT_TO_EMAIL NO STANDARD PAGE HEADING LINE-SIZE 200.
    DATA : BEGIN OF ITAB OCCURS 0,
    PERNR LIKE PA0001-PERNR,
    ENAME LIKE PA0001-ENAME,
    END OF ITAB.
    DATA: message_content LIKE soli OCCURS 10 WITH HEADER LINE,
    receiver_list LIKE soos1 OCCURS 5 WITH HEADER LINE,
    packing_list LIKE soxpl OCCURS 2 WITH HEADER LINE,
    listobject LIKE abaplist OCCURS 10,
    compressed_attachment LIKE soli OCCURS 100 WITH HEADER LINE,
    w_object_hd_change LIKE sood1,
    compressed_size LIKE sy-index.
    START-OF-SELECTION.
    SELECT PERNR ENAME
    INTO CORRESPONDING FIELDS OF TABLE ITAB
    FROM PA0001
    WHERE PERNR < 50.
    LOOP AT ITAB.
    WRITE :/02 SY-VLINE , ITAB-PERNR, 15 SY-VLINE , ITAB-ENAME, 50
    SY-VLINE.
    ENDLOOP.
    Receivers
    receiver_list-recextnam = 'type your email address here'. "-->
    EMAIL ADDRESS
    RECEIVER_list-RECESC = 'E'. "<-
    RECEIVER_list-SNDART = 'INT'."<-
    RECEIVER_list-SNDPRI = '1'."<-
    APPEND receiver_list.
    General data
    w_object_hd_change-objla = sy-langu.
    w_object_hd_change-objnam = 'Object name'.
    w_object_hd_change-objsns = 'P'.
    Mail subject
    w_object_hd_change-objdes = 'Message subject'.
    Mail body
    APPEND 'Message content' TO message_content.
    Attachment
    CALL FUNCTION 'SAVE_LIST'
    EXPORTING
    list_index = '0'
    TABLES
    listobject = listobject.
    CALL FUNCTION 'TABLE_COMPRESS'
    IMPORTING
    compressed_size = compressed_size
    TABLES
    in = listobject
    out = compressed_attachment.
    DESCRIBE TABLE compressed_attachment.
    CLEAR packing_list.
    packing_list-transf_bin = 'X'.
    packing_list-head_start = 0.
    packing_list-head_num = 0.
    packing_list-body_start = 1.
    packing_list-body_num = sy-tfill.
    packing_list-objtp = 'ALI'.
    packing_list-objnam = 'Object name'.
    packing_list-objdes = 'Attachment description'.
    packing_list-objlen = compressed_size.
    APPEND packing_list.
    CALL FUNCTION 'SO_OBJECT_SEND'
    EXPORTING
    object_hd_change = w_object_hd_change
    object_type = 'RAW'
    owner = sy-uname
    TABLES
    objcont = message_content
    receivers = receiver_list
    packing_list = packing_list
    att_cont = compressed_attachment.
    Hope it helps,
    regards,
    kushagra

  • When i try to send email from my ipad i get the message The recipient "£)()&&£)" was rejected by the server. This has only just started to happen and I don't know why. Please help. I have tried lots of things now and cannot solve it.

    When i try to send email from my ipad i get the message The recipient "£)()&amp;&amp;£)" was rejected by the server. This has only just started to happen and I don't know why. Please can someone help. I have tried lots of things now and cannot solve it.

    "Your email account" means to tap on the name of your email account. Whatever it is listed as in the settings.
    In my mail settings, one of my email accounts is a Comcast account. I tap on the Comcast name and it brings up this window.
    Then I tap on the arrow under the Outgoing mail server smtp setting to get to the next window.
    In the resulting window, I then tap on the arrow next to the smtp server under the Primary Server setting.
    That brings up this window in which I check to make sure that my user name and password have been entered correctly. If those items are missing, enter them in the appropriate fields and then tap done.

  • TS3899 When sending email from the Mail App or through other Apps, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design.

    When sending email from the Mail App or through other Apps on my iPad, my default From: address will change when I enter a To: address.  This sometimes leads me to send the email from the wrong outgoing email account.  It is frustrating and poor design, especially since I had already checked the From: address.
    iPad 4 running iOS 8.1.3

    3rd party email addresses have to be deleted on every synmced mac product, although I have 1and1.co.uk and my imac updatetes the mails in that account from mac mail.
    Yahoo etc is a 2 step deleting process but good to get your emails pushed when on the go.
    LJ
    http://www.facebook.com/The.Cowboy.Party

  • I am losing my carriage returns when sending emails. How to keep? uses SMTP Email MIME Text Content-Type.vi

    I am losing my carriage returns when sending emails using the Internet email vi's.
    All carriage returns are stripped out and I get one long word wrapped paragraph.
    I want to avoid html.
    Ideally, using the vi's for rich text would be perfect, but a simple text message with carriage returns and line feeds in any font ok. 
    uses SMTP Email MIME Text Content-Type.vi
    i have tried text/plain, text/html, and mixed yada something

    You need to use Line feed constant and then use concatenate function.See the screen shot.
    Naqqash
    Attachments:
    Using Line feed.png ‏15 KB

  • TS3276 My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    My o2 email account does not work when sending from my MAC it will accept incoming mail but not send it gives me a message that  o2 account (offline) my mac I have no problem with my iPhone  or mac laptop. any suggestions please.

    Sorry for the delay...
    I did what you've told me, new account and manually copied my files from Time Machine. I had lots of permissions problems, but at the end, almost everything is in order... It seems it had to be with some of the Apple Preferences, but I can't be sure, as most of them were dumped to the trash can.
    I still don't have my Mail Rules back, unfortunately, although I did goggled some. It is a pity, as I had around 30 or 40 of them, getting my mail in order to each of its mailboxes, but it is a small price as the rest doesn't show the before syntoms.
    Thanks for the help, anyway!!

  • How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    How can I get a picture to go with my email signature when sending emails from my iPad? Only a square box shows up on my signature not the actual picture I iploaded in my settings.

    Only Apple Account Security could help at this point. You can try calling Apple Support in Canada - you'll have to find one of the several ways, such as Skype, to call an 800 number from outside of the relevant country - and ask for Account Security and see if they can help. Or you can find a friend who speaks Chinese and ask them to help you talk to Apple Support in China. There are really no other options that I know of.
    Note, by the way, that these are user-to-user support forums. You aren't speaking with Apple when you post here.
    Regards.

  • Error 554-5.6.0 Corrupt message content... when sending emails to other users on same exchange server

    Hello
    I have a very strange problem at a customer from our company.
    The problem happens to only one user on the Exchange 2010 organization (SP3, no additional patches installed, Server is 2008 r2).
    When this specific user sends an email to one or more users on the same Exchange organization, he gets sometimes (not always) the following error back:
    554-5.6.0 Corrupt message content 554 5.6.0 STOREDRV.Deliver.Exception:ConversionFailedException; Failed to process message due to a permanent exception with message Inhaltskonvertierung: Fehlerhafter TNEF-Zusammenfassungsinhalt. ConversionFailedException:
    Inhaltskonvertierung: Fehlerhafter TNEF-Zusammenfassungsinhalt. [Stage: CreateReplay]
    So - TNEF, corrupt message Content... I googled the error and checked all the recommended Solutions. The Outlook Client is ok, I have doublechecked it and everything is configured like it has to be.
    The Problems happens as above described only for one user when he writes emails to users from one specific Domain on the same Exchange organization (example
    [email protected]).
    He has this specific contacts in a SharePoint contact list which is connected to his Outlook Client.
    Thanks for any help or Information!
    Regards

    Hi,
    According to your description, I understand that one user cannot send message with error “554-5.6.0 Corrupt message content 554 5.6.0”.
    If I misunderstand your concern, please do not hesitate to let me know.
    I want to double confirm whether it works or not when send message to external address, how about the OWA?
    It seems that message has corrupt content. Is there any 3rd prevent software or Anti-Virus software in Exchange 2010?
    Regarding this issue, firstly I would like to explain that content conversion occurs in two places, that are the Store Driver and the Content Conversion stage of Categorization. Since the issue exists in the delivery mail of internal user, the agent that was
    used in the process of handling by Store Driver may cause this issue.
    Please try to enable pipeline tracing and content conversion tracing to get more details about this error, for your reference:
    Content conversion tracing:
    http://technet.microsoft.com/en-us/library/bb397226.aspx
    Pipeline tracing:
    http://technet.microsoft.com/en-us/library/bb125018.aspx
    Best Regards,
    Allen Wang

Maybe you are looking for

  • TS1567 my Iphone 4s will not show up in itunes or my computer

    my Iphone 4s will not show up in itunes or my computer, I upgraded from windows 7 to windows 8. i have tried all the above and lots more and nothing seems to work. i have a ipod mini and its the same with that. they show up in the device manager unde

  • Songs from the Ipod to the Computer....?

    Is there anyway to get ALL the songs from my ipod to my computer? I've recently had to recover my computer, and lost all my files. I'm not sure if it's possible, but if you could get them out, I'll really appreciate it. Compaq   Windows XP   Service

  • Calling a custom Infotype field in Time Management PCR

    Dear All, I need to read a custom Infotype field in TM PCR to read the individual leave entitlement. In my organization there is no employee group wise or Personnel Area wise fixed entitlements for leave. Leave entitlement varies individual to indivi

  • Corrupt iPod touch music library

    I've got the following problem: i've added songs to my iTunes library, then i have synced it to my iPod touch. Some songs just disappeared on the iPod, other have lost their album artwork. I removed these songs and synced again. After some reboots of

  • ISight not working with Skype on secondary user accounts

    Having problems with Skype on my iMac. I cannot consistently get the built in iSight to work when logged into my partners user account. It seems to work OK from my main (admin) account but more often than not it don't light up and is greyed out in Sk