Email attachment problem on iOS 5.1

Since the update to ios 5.1 all attachments sent from my work email arrive on my iPad as Winmail.dat files.  This does not happen on my android phone (the same email has the File correctly attached and readable.  Furthermore, this problem did not exist prior to updating my iPad this weekend.

Troubleshooting winmail.dat files: http://support.apple.com/kb/TS1506
There are also a number of apps that support winmail.dat files

Similar Messages

  • New document: How to avoid known PDF email attachment problems

    Have you ever had problems with PDF attachments sent from Adobe Reader for iOS using Share > E-mail Document?
    You may find this document useful to avoid the problems.
    How to avoid known PDF email attachment problems
    Please let us know if you have encountered different types of problems with PDF attachments.  We can look for solutions or workarounds for you.

    Unfortunately, we (Adobe Reader mobile team) do not know if/when Apple will fix the attachment problems (software defects) in Apple Mail.
    In particular, the attachment problem with Microsoft Outlook (See Problem #2 in How to avoid known PDF email attachment problems) appears to be a long-standing defect that has been known for years.  However, Apple has not provided any fix for Apple Mail yet.
    Adobe Reader for iOS merely launches Apple Mail (the default mail app on iOS) to send a PDF document as an attachment.  Adobe Reader has no control over whether or not to embed a preview image of an attachment in the body of an email message, which is known to cause the problem with Microsoft Outlook (on the receiving side).  The same problem happens when you send a single-page PDF document as an attachment along with an email signature from Apple iBooks on iOS.
    For now, all iPad/iPhone users can do is to avoid the problems by using the workarounds that are described in How to avoid known PDF email attachment problems.
    When new and different problems with PDF attachments are reported by Adobe Reader for iOS users, we will update the document above.
    Sorry for the inconvenience.

  • Web OS 1.4, PDF email attachment problem

    Since 1.4 I can no longer expand/zoom in on a PDF page email attachment. I get a lot of my purchase orders by email this way and now I can no longer read them when on the road. Gee thanks PALM, you just set me back to the dark ages.
    Anyone else having this problem?
    This question was solved.
    View Solution.

    Thanks for such a speedy solution - I will scamper back into my cave now........
    Kevin

  • BEx Broadcast email attachment problem with Lotus

    In our BW system, broadcasting with email have attachment problem when we look at SOST we can see email has mhtml attachment and looks fine but end-user does not get the attachment. Email server is Lotus and we think that problem is Lotus configuration related. Anyone having same problem come to a solution, help would be appreciated.
    Thanks in advance

    OK.

  • Email Attachment Problem

    Hi Gurus!!!
    We are sending email in HTML format and has the option of attaching PDF, Excel and Text files. Now the problem occurs in attaching text file, when the email is received the contents of the email is unrecognizable. <b>It converted the format of the email to TEXT</b>. I don't know what causing this but in PDF and Excel attachments it has no problem at all. Its seems that that HTML format email doesn't recognize <b>.txt</b> attachments.  We are using class <b>CL_DOCUMENT_BCS</b> for the email. Does anyone knows how to fix this?
    Thanks and Best regards,
          JP

    I've been having the same problem attaching documents with Firefox. I finally sent a large file for free through YouSendIt.com. Take a look. It's free unless you want special services.

  • Email Account Problems after iOS 5.0.1 update on iPad 2 &amp; iPhone 4

    After finishing the iOS 5.0.1 update - I have noticed none of my email accounts are working (i.e. Error saying Incorrent Password or Username).
    I have deleted the associated accounts and added them once again, verifying both username and passwords as well and now it will NOT verify any accounts on both. Still no luck on both devices.
    Odd that both devices email accounts stop working after the new update?
    Anyone know of a fix/problem?
    Thanks!

    Same problem, this happens with any Safari site that requires a user name and password to log in ... frustrating!  I have also posted this issue and will be stopping by Apple on my way home ... I'll let you know what I find out.

  • E-mail attachment problem of ios 4.3

    I have the exchange 2010 mail account and recived by iPhone, everything okay before I upgrade the IOS to 4.3...
    Now I upgrade the IOS to 4.3, my iPhone can't open the attachment by 3G, it can download, you can see it will finish download job but can't open, or need to waiting 10-15min. (only open the file, not download time...)
    I try to using wifi open the attactment(new mail), everything okay...
    Anyone know what happen and how to fix it?
    Thank you

    Ok, I think I have tracked down the reason this is happening and I have also found a solution to the problem.
    Cause:
    If you copy your itunes music library from one machine to another using the finder (copying the directory ~/Music/iTunes) you will have 2 machines sharing the same library ID. This appears to cause the ipad and iphone running ios 4.3 to be unable to distinguish the 2 libraries and it ends up showing just one of them.
    Solution:
    Use this KB (http://support.apple.com/kb/HT1451) to force itunes to rebuild your itunes library. This have resolved the problem for me and I can now see all 3 copies of my itunes library at the same time.
    OBS!
    Be aware that if you follow this solution you and you are syncing a IOS device against the library you are rebuilding the IOS device will do a full re sync since it believes the library to be a new one.
    -Ivar

  • Smartform PDF email attachment problem

    I am not able to see the attachment of email which is PDF format of smartform. It showing me the blank PDF page. Please check the following code and let me know where is the problem.
    Thanks in stack.
    CONVERT PDF FORMAT
    I_OTF[] = WA_RETURN-OTFDATA[].
    call function 'CONVERT_OTF'
    EXPORTING
    format = 'PDF'
    max_linewidth = 132
    IMPORTING
    bin_filesize = V_LEN_IN
    TABLES
    otf = I_OTF
    lines = I_TLINE
    EXCEPTIONS
    err_max_linewidth = 1
    err_format = 2
    err_conv_not_possible = 3
    others = 4.
    if sy-subrc <> 0.
    endif.
    loop at i_tline.
    translate i_tline using '~'.
    concatenate wa_buffer i_tline into wa_buffer.
    endloop.
    translate wa_buffer using '~'.
    do.
    i_record = wa_buffer.
    append i_record.
    shift wa_buffer left by 255 places.
    if wa_buffer is initial.
    exit.
    endif.
    enddo.
    Attachment
    REFRESH: I_RECLIST,
    I_OBJTXT,
    I_OBJBIN,
    I_OBJPACK.
    CLEAR: WA_OBJHEAD,
    WA_DOC_CHNG.
    I_OBJBIN[] = I_RECORD[].
    Create Message Body**** Title and Description
    I_OBJTXT = 'PDF ATTACHMENT 2 !'.
    APPEND I_OBJTXT.
    DESCRIBE TABLE I_OBJTXT LINES V_LINES_TXT.
    READ TABLE I_OBJTXT INDEX V_LINES_TXT.
    WA_DOC_CHNG-OBJ_NAME = 'smartform'.
    WA_DOC_CHNG-EXPIRY_DAT = sy-datum + 10.
    WA_DOC_CHNG-OBJ_DESCR = 'smartform'.
    WA_DOC_CHNG-SENSITIVTY = 'F'.
    WA_DOC_CHNG-DOC_SIZE = V_LINES_TXT * 255.
    clear i_objpack-transf_bin.
    i_objpack-head_start = 1.
    i_objpack-head_num = 0.
    i_objpack-body_start = 1.
    i_objpack-body_num = v_lines_txt.
    i_objpack-doc_type = 'RAW'.
    append i_objpack.
    Attachment* (pdf-Attachment)
    i_objpack-transf_bin = 'X'.
    i_objpack-head_start = 1.
    i_objpack-head_num = 0.
    i_objpack-body_start = 1.
    describe table i_objbin lines v_lines_bin.
    read table i_objbin index v_lines_bin.
    i_objpack-doc_size = v_lines_bin * 255 .
    i_objpack-body_num = v_lines_bin.
    i_objpack-doc_type = 'PDF'.
    i_objpack-obj_name = 'smart'.
    i_objpack-obj_descr = 'HELLO NILESH'.
    append i_objpack.
    clear i_reclist.
    i_reclist-receiver = [email protected]'.
    i_reclist-rec_type = 'U'.
    append i_reclist.
    call function 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = wa_doc_chng
    put_in_outbox = 'X'
    TABLES
    packing_list = i_objpack
    object_header = wa_objhead
    CONTENTS_BIN = i_objbin
    contents_txt = i_objtxt
    receivers = i_reclist
    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.

    Hai
    go through the following code
    REPORT ZRICH_0003.
    DATA: ITCPO LIKE ITCPO,
          TAB_LINES LIKE SY-TABIX.
    Variables for EMAIL functionality
    DATA: MAILDATA   LIKE SODOCCHGI1.
    DATA: MAILPACK   LIKE SOPCKLSTI1 OCCURS 2 WITH HEADER LINE.
    DATA: MAILHEAD   LIKE SOLISTI1 OCCURS 1 WITH HEADER LINE.
    DATA: MAILBIN    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
    DATA: SOLISTI1   LIKE SOLISTI1 OCCURS 0 WITH HEADER LINE.
    PERFORM SEND_FORM_VIA_EMAIL.
          FORM  SEND_FORM_VIA_EMAIL                                      *
    FORM  SEND_FORM_VIA_EMAIL.
      CLEAR:    MAILDATA, MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
      REFRESH:  MAILTXT, MAILBIN, MAILPACK, MAILHEAD, MAILREC.
    Creation of the document to be sent File Name
      MAILDATA-OBJ_NAME = 'TEST'.
    Mail Subject
      MAILDATA-OBJ_DESCR = 'Subject'.
    Mail Contents
      MAILTXT-LINE = 'Here is your file'.
      APPEND MAILTXT.
    Prepare Packing List
      PERFORM PREPARE_PACKING_LIST.
    Set recipient - email address here!!!
      MAILREC-RECEIVER = '[email protected]'.
      MAILREC-REC_TYPE  = 'U'.
      APPEND MAILREC.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = MAILDATA
                PUT_IN_OUTBOX              = ' '
           TABLES
                PACKING_LIST               = MAILPACK
                OBJECT_HEADER              = MAILHEAD
                CONTENTS_BIN               = MAILBIN
                CONTENTS_TXT               = MAILTXT
                RECEIVERS                  = MAILREC
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                OPERATION_NO_AUTHORIZATION = 4
                OTHERS                     = 99.
    ENDFORM.
         Form  PREPARE_PACKING_LIST
    FORM PREPARE_PACKING_LIST.
      CLEAR:    MAILPACK, MAILBIN, MAILHEAD.
      REFRESH:  MAILPACK, MAILBIN, MAILHEAD.
      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.
    Creation of the document attachment
    This form gets the OTF code from the SAPscript form.
    If you already have your OTF code, I believe that you may
    be able to skip this form.  just do the following code, looping thru
    your SOLISTI1 and updating MAILBIN.
      PERFORM GET_OTF_CODE.
      LOOP AT SOLISTI1.
        MOVE-CORRESPONDING SOLISTI1 TO MAILBIN.
        APPEND MAILBIN.
      ENDLOOP.
      DESCRIBE TABLE MAILBIN LINES TAB_LINES.
      MAILHEAD = 'TEST.OTF'.
      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-OBJ_NAME = 'TEST'.
      MAILPACK-OBJ_DESCR = 'Subject'.
      MAILPACK-DOC_SIZE = TAB_LINES * 255.
      APPEND MAILPACK.
    ENDFORM.
         Form  GET_OTF_CODE
    FORM  GET_OTF_CODE.
      DATA: BEGIN OF OTF OCCURS 0.
              INCLUDE STRUCTURE ITCOO .
      DATA: END OF OTF.
      DATA: ITCPO LIKE ITCPO.
      DATA: ITCPP LIKE ITCPP.
      CLEAR ITCPO.
      ITCPO-TDGETOTF = 'X'.
    Start writing OTF code
      CALL FUNCTION 'OPEN_FORM'
           EXPORTING
                FORM     = 'ZTEST_FORM'
                LANGUAGE = SY-LANGU
                OPTIONS  = ITCPO
                DIALOG   = ' '
           EXCEPTIONS
                OTHERS   = 1.
      CALL FUNCTION 'START_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      CALL FUNCTION 'WRITE_FORM'
           EXPORTING
                WINDOW        = 'MAIN'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
    Close up Form and get OTF code
      CALL FUNCTION 'END_FORM'
           EXCEPTIONS
                ERROR_MESSAGE = 01
                OTHERS        = 02.
      MOVE-CORRESPONDING ITCPO TO ITCPP.
      CALL FUNCTION 'CLOSE_FORM'
           IMPORTING
                RESULT  = ITCPP
           TABLES
                OTFDATA = OTF
           EXCEPTIONS
                OTHERS  = 1.
    Move OTF code to structure SOLI form email
      CLEAR SOLISTI1. REFRESH SOLISTI1.
      LOOP AT OTF.
        SOLISTI1-LINE = OTF.
        APPEND SOLISTI1.
      ENDLOOP.
    ENDFORM.
    Thanks & Regards
    Sreenivasulu P

  • Forwading email Attachment problem

    HI All,
         I Have a problem in my email. When i forward email with attachment email will duplicate massage body.
         what can i do in this problem.
         Thanks and God Bless

    I think I've had that problem occasionally with previous versions. As a workaround, do the hidden attachments become visible if you try to forward the email?

  • Iphone 4s - email attachment problem

    Does anyone have any suggestions for my problem.  It is sporadic.  I am trying to forward an email that I know has an attachment and the receiver gets the email but there's no attachment.
    My IT department can't seem to figure it out either.  We have rebooted and reloaded and still the same problem.

    From the receiver side - how are they viewing the email? iphone/ipad/desktop or another smart phone.
    It could be a problem on the receiving end rather than on your end.

  • Mime-attachment problems on iOS 6.1.3

    Hello all,
    I have a problem with multiple iPads running iOS 6.1.3. that I can reproduce every time, and would like to verify whether anyone else can confirm that behavior.
    Environment:
    - Apple iPad 4th Generation, Wi-Fi, 32 GB
    - Apple iPad 4th Generation, Wi-Fi + 3G, 64 GB
    - both iPads run iOS 6.1.3
    - open Outlook 2013 on local PC, select any two e-mails and click forward (those two e-mails will be added as attachments to new message ... extension .eml).
    - add another attachment (e.g. pdf file) to that new message and send it to e-mail address of account that you configured in your iPad Mail app.
    - open received e-mail through your iPad Mail app. Click "Download full message". When download completes, open "mime-attachment". Mail app crashes / closes.
    What I've tried:
    - turn on/off iPad (soft/hard (restart))
    - removed e-mail account from iPad and added e-mail account again
    - turned off all running applications, started Mail app ...
    Multiple iPhones running iOS 6.1.3 successfully display "mime-attachment" from e-mails created in described way.
    Thanks, MS

    Additional info:
    I've installed iPhone configuration utility and collected console log of crash ...
    Aug 30 19:00:57 IT1 MobileMail[629] <Warning>: Autoselection cancelled for message 515
    Aug 30 19:00:59 IT1 kernel[0] <Debug>: launchd[651] Builtin profile: syncdefaultsd (sandbox)
    Aug 30 19:01:02 IT1 lockdownd[46] <Notice>: 01584000 _receive_message: walk away - non-SSL 1
    Aug 30 19:01:03 IT1 MobileMail[629] <Error>: *** Terminating app due to uncaught exception 'NSInvalidArgumentException', reason: '*** setObjectForKey: key cannot be nil'
    *** First throw call stack:
    (0x332183e7 0x3b0a2963 0x3317a5ef 0x162eb1 0x35112087 0x13feed 0x13ff37 0x8873cb3 0x35144c61 0x3510c3a1 0x352f9163 0x35030883 0x3502f2cd 0x3503a1e7 0x35039db3 0x350278e1 0x350271ef 0x36d1b5f7 0x36d1b227 0x331ed3e7 0x331ed38b 0x331ec20f 0x3315f23d 0x3315f0c9 0x36d1a33b 0x3507b2b9 0xfefdf 0x3b4cfb20)
    Aug 30 19:01:04 IT1 ReportCrash[652] <Notice>: Formulating crash report for process MobileMail[629]
    Aug 30 19:01:04 IT1 ReportCrash[652] <Error>: libMobileGestalt copySystemVersionDictionaryValue: Could not lookup ReleaseType from system version dictionary
    Aug 30 19:01:04 IT1 ReportCrash[652] <Notice>: Saved crashreport to /var/mobile/Library/Logs/CrashReporter/MobileMail_2013-08-30-190103_IT1.plist using uid: 0 gid: 0, synthetic_euid: 501 egid: 0
    Thanks, MS

  • Email attachment problem - unicode?

    Hi All,
    I've copied some of the examples from SDN on how to send an attachment via email from ABAP.
    The problem is that the text file attachments are incorrect. Each character is separated by another character. If I create a text attachment that reads "Hello" in the ABAP, the resulting text attachment is "H E L L O ".
    The SAP system is unicode. I have tried both SO_NEW_DOCUMENT_ATT_SEND_API1 and SO_DOCUMENT_ATT_SEND_API1. Both have the same effect.
    Does anyone have any idea how to ensure the email attachments retain the same format?
    Cheers
    Richard

    Hi Richard,
    Please refer to the below mentioned code and compare the Function modules used in your program and the below one.
    Program:  ZRAT                 Creation Date: 12.04.2007 *
    Program Title :  Retirement Age Trigger                  *
    Program Author:  Puneet Jhari                            *
    Program Type  :   Executable                             *
    Object ID     :                                          *
    Technical Specification Version:                         *
    Technical Specification Author:                          *
    Code Quality Reviewer     :                              *
    Transport No.          :  SRDK906499                     *
    Program Description:                                     *
    Inputs                                                   *
       Tables:                                               *
       Parameters                                            *
       External files:                                       *
    Outputs                                                  *
       Reports:                                              *
       Tables:                                               *
       Databases:                                            *
       Screens:                                              *
       Parameters                                            *
       External files:                                       *
       Other objects:                                        *
    Return codes set by ABAP:                                *
    Modification Informaion                                  *
    Program Version:                                         *
    Date         : DD-MMM-YYYY                               *
    Author       :                                           *
    Description  :                                           *
    Transport No.:                                           *
    REPORT  zrat NO STANDARD PAGE HEADING.
    *DATA DECLARATION
    DATA : BEGIN OF wa_ccode,
            bukrs TYPE t001-bukrs,
           END OF wa_ccode.
    DATA : itab_ccode LIKE TABLE OF wa_ccode.
    DATA : BEGIN OF wa_emp,
            pernr TYPE pa0001-pernr,
            sachp TYPE pa0001-sachp,
            sname TYPE pa0001-sname,
           END OF wa_emp.
    DATA : itab_emp LIKE TABLE OF wa_emp.
    DATA : BEGIN OF wa_bdate,
            nachn LIKE pa0002-nachn,
            vorna LIKE pa0002-vorna,
            pernr TYPE pa0002-pernr,
            gbdat TYPE pa0002-gbdat,
           END OF wa_bdate.
    DATA : itab_bdate LIKE TABLE OF wa_bdate.
    DATA : new_date LIKE sy-datum.
    DATA : diff TYPE i.
    DATA : years LIKE p0347-scryy,
           months LIKE p0347-scrmm,
           days LIKE p0347-scrdd.
    DATA : sup_code LIKE pa0001-sachp,
           itab_usrid LIKE t526-usrid,
           sup_pernr LIKE pa0105-pernr.
    DATA : BEGIN OF wa_email,
           usrid_long LIKE pa0105-usrid_long,
           END OF wa_email.
    DATA : sup_email LIKE TABLE OF wa_email.
    DATA : gwa_document_data LIKE sodocchgi1,
           gc_name  TYPE so_obj_nam VALUE 'RETIREMENT',
           gc_senst TYPE so_obj_sns VALUE 'P',
           gc_size  TYPE so_doc_siz VALUE '510',
           gi_obj_cnt LIKE TABLE OF solisti1 WITH HEADER LINE,
           gi_recievers LIKE somlreci1 OCCURS 0 WITH HEADER LINE,
           gwa_obj_cnt LIKE LINE OF gi_obj_cnt.
    DATA : smtp_addr LIKE adr6-smtp_addr.
    DATA : wa_date LIKE sy-datum,
           entries LIKE sy-tabix,
           name(15),
           line1(18) TYPE c,
           line2(20) TYPE c,
           line3(20) TYPE c,
           line4(23) TYPE c,
           line5(10) TYPE c,
           line6(45) type c,
           date(2) TYPE c,
           month(2) TYPE c,
           year(4) TYPE c.
    *START OF SELECTION
    SELECT bukrs
    FROM t001
    INTO TABLE itab_ccode
    WHERE land1 EQ 'GB'.
    SORT itab_ccode.
    DELETE ADJACENT DUPLICATES FROM itab_ccode.
    SELECT pernr sachp sname
    FROM pa0001
    INTO TABLE itab_emp
    FOR ALL ENTRIES IN itab_ccode
    WHERE bukrs EQ itab_ccode-bukrs AND begda LE sy-datum AND
    endda GE sy-datum and persg eq '1'.
    SELECT nachn vorna pernr gbdat
    FROM pa0002
    INTO TABLE itab_bdate
    FOR ALL ENTRIES IN itab_emp
    WHERE pernr EQ itab_emp-pernr.
    *TO CHECK EMPLOYEES WHOSE AGE IS NEAR 75 YEARS.
    LOOP AT itab_bdate INTO wa_bdate.
      new_date = wa_bdate-gbdat.
    *TO CALCULATE THE AGE TILL DATE
      CALL FUNCTION 'HR_HK_DIFF_BT_2_DATES'
        EXPORTING
          date1                         = sy-datum
          date2                         = new_date
         output_format                 = '05'
       IMPORTING
         years                         = years
         months                        = months
         days                          = days
      IF sy-subrc <> 0.
      ENDIF.
      IF years EQ 64 AND months EQ 4.
        IF days GE 23 AND days LE 31.
    *FETCH THE DATA IF THE AGE IS NEARING 75 YEARS
          SELECT SINGLE sachp FROM pa0001 INTO sup_code WHERE pernr EQ
          wa_bdate-pernr AND begda LE sy-datum AND endda GE sy-datum.
          SELECT SINGLE usrid FROM t526 INTO itab_usrid WHERE sachx EQ
          sup_code.
          SELECT SINGLE pernr FROM pa0105 INTO sup_pernr WHERE usrid EQ
          itab_usrid AND subty EQ '0001'.
          clear sup_email[].
          SELECT usrid_long FROM pa0105 INTO TABLE sup_email WHERE pernr EQ
          sup_pernr AND subty EQ '0010'.
    *EMAIL ADDRESS OF THE SUPERVISOR TO BE NOTIFIED
          CLEAR gi_obj_cnt.
          CLEAR gi_recievers.
          CLEAR gwa_document_data.
          Loop at sup_email into wa_email.
          write sy-uline+0(5).
          write sy-uline+10(5).
          write sy-uline+20(5).
          write sy-uline+30(5).
          write sy-uline+40(5).
          write sy-uline+50(5).
          write sy-uline+60(5).
          write sy-uline+70(5).
          smtp_addr = wa_email-usrid_long.
          gi_recievers-receiver = smtp_addr.
          gi_recievers-rec_type = 'U'.
          gi_recievers-com_type = 'INT'.
          APPEND gi_recievers.
          Endloop.
          smtp_addr = '[email protected]'.
          gi_recievers-receiver = smtp_addr.
          gi_recievers-rec_type = 'U'.
          gi_recievers-com_type = 'INT'.
          APPEND gi_recievers.
          gwa_document_data-obj_name    = gc_name.
          gwa_document_data-obj_descr   = 'RETIRE'.
          gwa_document_data-sensitivty  = gc_senst.
          gwa_document_data-obj_langu = sy-langu.
    *CONTENT OF THE EMAIL TO BE SENT
          line1 = 'Please note that  '.
          line2 = wa_bdate-vorna.
          line3 = wa_bdate-nachn.
          line4 = ' will be 65 years on  '.
          line50(4) = wa_bdate-gbdat4(4).
          date = line5+2(2).
          month = line5+0(2).
          year = wa_bdate-gbdat+0(4) + 65.
          CONCATENATE date month year INTO line5 SEPARATED BY '.'.
          line6 = '.Please complete the Retirement Procedure.'.
          CONCATENATE line1 line2 line3 line4 line5 line6 INTO gwa_obj_cnt
          SEPARATED BY space.
          APPEND gwa_obj_cnt TO gi_obj_cnt.
          CLEAR gwa_obj_cnt.
          DESCRIBE TABLE gi_obj_cnt LINES entries.
          READ TABLE gi_obj_cnt INDEX entries.
    gwa_document_data-doc_size = ( entries - 1 ) * 255 + STRLEN( gi_obj_cnt
    *FUNCTION MODULE TO SEND THE EMAIL TO THE CONCERNED PERSONS
    CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
      EXPORTING
        document_data                    = gwa_document_data
        document_type                    = 'RAW'
             commit_work                      = 'X'
            TABLES
             object_content                   = gi_obj_cnt
              receivers                        = gi_recievers
      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
    *MESSAGE TO BE DISPLAYED AFTER THE EXECUTION
         endif.
          CASE sy-subrc.
            WHEN 0.
              LOOP AT gi_recievers.
                IF gi_recievers-receiver = space.
                  name = gi_recievers-rec_id.
                ELSE.
                  name = gi_recievers-receiver.
                ENDIF.
                IF gi_recievers-retrn_code = 0.
                  WRITE: / name, ': succesfully sent'.
                ELSE.
                  WRITE: / name, ': error occured'.
                ENDIF.
              ENDLOOP.
            WHEN 1.
              WRITE: / 'Too many receivers specified !'.
            WHEN 2.
              WRITE: / 'No receiver got the document !'.
            WHEN 4.
              WRITE: / 'Missing send authority !'.
            WHEN OTHERS.
              WRITE: / 'Unexpected error occurred !'.
          ENDCASE.
        ENDIF.
      ENDIF.
    ENDLOOP.
    In case you have any further clarifications,do let me know.
    Regards,
    Puneet Jhari.

  • Email attachment problems with "excel" files.

    I have just upgraded to the iphone 4 from the 3gs and since doing so any emails I receive with excel files attached will not open the attachment? These files openened with no problem on the same email account on my 3gs.
    Instead when I download the attachment and go to open it I am met with a page displaying....
    "Unable to read document.
    An error occured while reading the document."
    Has anyone else having this problem or even better anyone know what the fix is to get these files showing up?
    Any help would be appreciated,
    Kris

    After much frustration about excel files not opening and repeatedly not getting answers from apple, I think I might have found another way. It seems that the new apple OS does not support older versions of excel. By saving the excel file in question (Save As) to "Microsoft Excel 2007 Workbook" the Workbook opens just fine as an E-mail attachment. If you have macro's you can save as "Microsoft Excel 2007 Workbook (Macro Enabled)" and it works also.
    The Workbook in question as far as I was concerned was created in Microsoft Excel 2003.
    Hope this helps
    Apple needs to get on the ball. This was almost a dealbreaker with me.
    Android is looking better and better every day.

  • Source of .png email attachment problem

    When opening .png email attachments from some companies, instead of seeing a photo of an object, I get an image such as the following:
    This is actually a company logo, as opposed to the photo that was supposed to be there. I can't get anything different, whether I "open" it with PE6 for Mac, iPhoto, etc. It has happened with several different (commercial) sources. Does it sound like the problem is with the sender(s), or am I missing something at my end?

    When I hit the save button, there's no jpeg choice...just the png. It 
    seems like the source(s) have simply sent me a logo, rather than the 
    intended photo. Since it had happened several times, I thought it 
    might be a function that could be addressed with PE. Most likely, that 
    is not the case. Thank you for for your replies. I'd probably best go 
    to the email source the next time it happens.

  • Email Attachment Problems with New Photos Program

    I just spent two hours online with Apple Support to try to figure out why I couldn't get my photos to upload to my gmail - or any mail other than the Mail that's hooked directly into the new Photos program.  After two hours I was told that the only way to do this without using Photos was to send the pictures to my email of choice, download them back to my computer (are you kidding!) and then save them to a location other than the Photos program.  What the what?!! 
    I take photos for charities and sports teams that are used by our local papers and websites.  If you're sending photos to a business or person who does not use Apple products there are issues opening up the attached photos. I tried sending my photos through the new Photos program today but as feared the newspaper called to say they could not open my photos.  They do not use Apple products.  I had to go through a ridiculous number of steps to get these photos sent, instead of the simple attachment that used to be available with iPhoto.
    My question is WHY?  Why is Apple making what used to be so simple so difficult?  Please tell me this issue will be fixed and fixed soon!  I never thought I would say this but it may be time to look at a Chromebook or something other than a MacBook.  What used to be so intuitive and creative has now become a mess worse than anything Microsoft could cook up.
    Julie Gilbertson

    Follow up, Julie!
    Remember that you can use any mail provider in your Mac Mail that you wish.**
    I have several different email providers as I have multiple email accounts.
    When you select your pictures(s) within Photos and
    click on the Share option via Email
    your selected pictures get placed within the email,
    you then select - within your email - which email provider you are using ( e.g. your Yahoo mail, your Google mail account, you name it).
    Your choice. It is really quite easy.
    Looks kind of like this
    Somebody, somewhere, is now realizing that they can use any mail provider in your Mac Mail that they want.
    They do not have to log into Gmail or Yahoo mail or other web based mail servers.
    http://macintoshhowto.com/email/how-to-set-up-a-gmail-account-to-work-with-apple -mail.html
    This is akin to the epiphany of years ago when millions realized they did not have to have AOL to surf the web.

Maybe you are looking for

  • Firefox 3.6.15 Windows 7 not saving passwords

    When I enter a user name and a password, just as I did a moment ago to create my login for this forum, the information is not being saved by Firefox. The pop-up bar appears with the three buttons, Remember, Never for this Site and Not Now. However, c

  • New Calendar Entries Made on my BB won't sync by BB Enterprise in my Outlook 2003

    We have tried wiping the Tour, resetting the server settings, the Caledar Services in Default Services is set correctly. Someone suggested deleting Messanger.  Did that and immediately did a test new event on my handheld.  That event immediately show

  • Sixth times a charm?

    Someone please respond with something that will relate to my question! I see that people keep viewing my questions but no one even attempts to help me out. Are there any Apple employees online?? There is obviously a fix to this since my friend, who d

  • XPATH Query syntax question

    Hi Folks. Have had a read of the documentattion but maybe I'm missing something subtle. Given the following XML (Extract)   <?xml version="1.0" ?> - <IndividualAnnex xmlns="https://infocentre.gsm.org/TADIG-RAEX-AA14" xmlns:tadig-gen="https://infocent

  • Opening Files in Multiple Instances of Excel 2010

    I've been using multiple instances of Excel 2003 using two monitors for a long time using Windows XP.  I used to do this by opening Excel and opening Excel again from the Start menu and opening files through windows explorer and controlling which ins