Open PDF in Email?

Since updating to iOS 7 can't open pdf sent by email. Will only open as single page picture

Not even get the option after opening the attachment to select another app (reader, good reader, Dropbox etc.) it will only give me a picture which I could copy. If there are multiple pdf attachments it will not even give me pictures, just can't open anything. I assume there is a conflict with any of the apps, on my iPhone all works perfect

Similar Messages

  • Not able to Open PDF in Email using CL_BCS

    Hello Experts,
    I am using CL_BCS to send an email that contains PDF as attachment.
    The PDF doucment should contain below text.
    "This is test system".
    Thanks.
    I am able to send an email that contains PDF as attachment. But while opening PDF document, I am getting internal error.
    Can you please suggest me any workaround for the same? It would be great if you can provide me sample code for the same.
    Regards,
    Amit

    hello,
    i am failure to open PDF in my new phone, do you know why? here is my phone data: www.eshopbing.com/ciphone-c6-16gb-30-smart-phone-with-windows-61-gps-wifi-p-600. html
    it's Windows 6.1, is it the same with Windows Mobile Emulator 6.5? please tell me if you know. Thank you very much.

  • Opening PDFs in emails and on my computer

    I thought when I bought this program that I would be able to open PDFs that come in emails and that are on my computer. I can't open any of these. Help! I'm desparate! Debra

    What did you buy? Please give a full product name.
    What is the problem you have today in opening PDFs on your computer, and in emails?

  • I have adobe reader but cant open pdfs from emails. Why?

    Getting very frustrated as recently cant open pdfs sent to me by emails although I have Adobe reader app on my tablet. Comes up with message Open file failed. Help please
    Donut1950

    donut1950,
    Would you provide more information about your problem so that we can troubleshoot?
    What is the version of your Adobe Reader for Android?
    What is the version of Android OS?
    What is the mail app do you use to read email on Android?
    When you try to open an PDF attachment, do you see the dialog "Compete action using" with the Adobe Reader icon?  Does the dialog have "Always" and "Just Once"?
    Could you tell us the exact error message that you see when you try to open an PDF attachment?
    Does the problem happen with ONE particular PDF attachment?  Or does it happen with any PDF attachments all the time?

  • Error opening pdf in email

    I am trying to email a smartform as pdf. But getting the error that File cannot be opened as it is damaged and cannot be repaired.
    I am getting the otf data from Smartform FM. Then convert it to pdf. And then sending it through SO_NEW_DOCUMENT_ATT_SEND_API1. Attached is my code. I don't know what I am doing wrong. I first tried to send it directly through smartform email parameters. It didn't work. I also tried other functions for OTF to PDF conversions. But always getting the same error . I've also checked SCOT for SMTP node setup. The o/p format for smartforms is PDF.
    Has anybody ever succeeded in getting the good pdf from smart form in the email ? Any idea what I am doing wrong ?
    V_FORMNAME = 'ZSD_DAILY_SHEET_DB'.
    call function 'SSF_FUNCTION_MODULE_NAME'
    exporting
    formname = v_formname
    importing
    fm_name = fm_name
    exceptions
    no_form = 1
    no_function_module = 2
    others = 3.
    IF sy-subrc <> 0.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    w_ctrlop-getotf = 'X'.
    w_ctrlop-no_dialog = 'X'.
    w_compop-tdnoprev = 'X'.
    CALL FUNCTION fm_name
      EXPORTING
       CONTROL_PARAMETERS         = w_ctrlop
       OUTPUT_OPTIONS             = w_compop
       USER_SETTINGS              = 'X'
       VTITLE                     = SY-TITLE
       VDATE                      = P_DATE
       VDATE2                     = SY-DATUM
    IMPORTING
       JOB_OUTPUT_INFO            = w_return
      TABLES
        I_DAILY                    = it_daily
        I_MONTHLY                  = it_monthly
        I_YEARLY                   = it_yearly
    EXCEPTIONS
       FORMATTING_ERROR           = 1
       INTERNAL_ERROR             = 2
       SEND_ERROR                 = 3
       USER_CANCELED              = 4
       OTHERS                     = 5
    IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
             WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    i_otf[] = w_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.
    MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
    WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
    ENDIF.
    * Convert PDF from 132 to 255.
    LOOP AT i_tline.
    * Replacing space by ~
    TRANSLATE i_tline USING ' ~'.
    CONCATENATE w_buffer i_tline INTO w_buffer.
    ENDLOOP.
    * Replacing ~ by space
    TRANSLATE w_buffer USING '~ '.
    DO.
    i_record = w_buffer.
    * Appending 255 characters as a record
    APPEND i_record.
    SHIFT w_buffer LEFT BY 255 PLACES.
    IF w_buffer IS INITIAL.
    EXIT.
    ENDIF.
    ENDDO.
    Refresh: i_reclist,
    i_objtxt,
    i_objbin,
    i_objpack.
    clear w_objhead.
    * Object with PDF.
    i_objbin[] = i_record[].
    DESCRIBE TABLE i_objbin LINES v_lines_bin.
    * Object with main text of the mail.
    i_objtxt = 'Find attached the Daily Dashboard Sheet.'.
    APPEND i_objtxt.
    i_objtxt = 'Regards,'.
    APPEND i_objtxt.
    i_objtxt = 'Dummy.
    APPEND i_objtxt.
    DESCRIBE TABLE i_objtxt LINES v_lines_txt.
    * Document information.
    w_doc_chng-obj_name = 'Smartform'.
    w_doc_chng-expiry_dat = sy-datum + 10.
    w_doc_chng-obj_descr = 'Smart form output'.
    w_doc_chng-sensitivty = 'F'. "Functional object
    w_doc_chng-doc_size = v_lines_txt * 255.
    * Pack to main body as RAW.
    * Obj. to be transported not in binary form
    CLEAR i_objpack-transf_bin.
    * Start line of object header in transport packet
    i_objpack-head_start = 1.
    * Number of lines of an object header in object packet
    i_objpack-head_num = 0.
    * Start line of object contents in an object packet
    i_objpack-body_start = 1.
    * Number of lines of the object contents in an object packet
    i_objpack-body_num = v_lines_txt.
    * Code for document class
    i_objpack-doc_type = 'RAW'.
    APPEND i_objpack.
    * Packing as PDF.
    i_objpack-transf_bin = 'X'.
    i_objpack-head_start = 1.
    i_objpack-head_num = 0.
    i_objpack-body_start = 1.
    i_objpack-body_num = v_lines_bin.
    i_objpack-doc_type = 'PDF'.
    i_objpack-obj_name = 'Smartform'.
    i_objpack-obj_descr = 'Dashboard Sheet'.
    i_objpack-doc_size = v_lines_bin * 255.
    APPEND i_objpack.
    * Document information.
    CLEAR i_reclist.
    * e-mail receivers.
    i_reclist-receiver = p_mail.
    i_reclist-express = 'X'.
    i_reclist-rec_type = 'U'. "Internet address
    APPEND i_reclist.
    * Sending mail.
    CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
    EXPORTING
    document_data = w_doc_chng
    put_in_outbox = 'X'
    TABLES
    packing_list = i_objpack
    object_header = w_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.
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    Edited by: Arbaab Rahim on Sep 15, 2008 2:41 PM

    Rahim,
    in the FM, SO_NEW_DOCUMENT_ATT_SEND_API1 give COMMIT_WORK = 'X'.
    The following code works for me. Try this.
    *                      START-OF-SELECTION EVENT                       *
    START-OF-SELECTION.
    *" Read the HFA records into internal table............................
      SELECT *
        FROM zhfa
        INTO TABLE t_zhfa
       WHERE zz_vin6 IN s_vin6.
      IF sy-subrc NE 0.
        MESSAGE text-002 TYPE 'W'.
      ENDIF.                               " IF SY-SUBRC NE 0
      CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'
        EXPORTING
          formname                 = 'YH1145_HFA1'
    *   VARIANT                  = ' '
    *   DIRECT_CALL              = ' '
       IMPORTING
         fm_name                  = w_name
       EXCEPTIONS
         no_form                  = 1
         no_function_module       = 2.
        w_control-getotf = 'X'.
        w_control-no_dialog = 'X'.
        w_output-tdnoprev = 'X'.
        LOOP AT t_zhfa INTO fs_zhfa.
          CALL FUNCTION '/1BCDWB/SF00000457'
            EXPORTING
    *   ARCHIVE_INDEX              = ARCHIVE_INDEX
    *   ARCHIVE_INDEX_TAB          = ARCHIVE_INDEX_TAB
    *   ARCHIVE_PARAMETERS         = ARCHIVE_PARAMETERS
             control_parameters         = w_control
    *   MAIL_APPL_OBJ              = MAIL_APPL_OBJ
    *   MAIL_RECIPIENT             = MAIL_RECIPIENT
    *   MAIL_SENDER                = MAIL_SENDER
             output_options             = w_output
             user_settings              = 'X'
              fs_zhfa                    = fs_zhfa
           IMPORTING
    *   DOCUMENT_OUTPUT_INFO       = DOCUMENT_OUTPUT_INFO
             job_output_info            = w_return
    *   JOB_OUTPUT_OPTIONS         = JOB_OUTPUT_OPTIONS
           EXCEPTIONS
             formatting_error           = 1
             internal_error             = 2
             send_error                 = 3
             user_canceled              = 4.
    *" w_return-otfdata holds the smartform OTF data.................
        append lines of w_return-otfdata to t_otf.
        ENDLOOP.
    *" t_otf is the OTF data.........................................
    *" t_line is the PDF data.......................................
        CALL FUNCTION 'CONVERT_OTF'
         EXPORTING
           format                      = 'PDF'
           max_linewidth               = 132
    *   ARCHIVE_INDEX               = ' '
    *   COPYNUMBER                  = 0
    *   ASCII_BIDI_VIS2LOG          = ' '
    *   PDF_DELETE_OTFTAB           = ' '
         IMPORTING
           bin_filesize                = w_filesize
    *   BIN_FILE                    = BIN_FILE
          TABLES
            otf                         = t_otf
            lines                       = t_line
         EXCEPTIONS
           err_max_linewidth           = 1
           err_format                  = 2
           err_conv_not_possible       = 3
           err_bad_otf                 = 4.
        LOOP AT t_line.
          CONCATENATE w_string t_line INTO w_string.
        ENDLOOP.
    *" convert the 132 line character to 255 character ..................
        DO.
          t_attach = w_string.
          APPEND t_attach.
          SHIFT w_string LEFT BY 255 PLACES.
          IF w_string IS INITIAL.
            EXIT.
          ENDIF.
        ENDDO.
        t_objbin[] = t_attach[].
    *" body of the mail..................................................
        CLEAR t_message. REFRESH t_message.
        t_message = 'This is a mail from SAP ECC6'.
        APPEND t_message.
        t_message = 'Thanks and Regards'.
        APPEND t_message.
        t_message = 'Indu'.
        APPEND t_message.
        DESCRIBE TABLE t_message LINES w_msg.
        w_docdata-obj_name = 'SAPRPT'.
        w_docdata-expiry_dat = sy-datum + 10.
        w_docdata-obj_descr = 'Smartform mail from Indu'.
        w_docdata-sensitivty = 'F'.
        w_docdata-doc_size = w_msg * 255.
        w_docdata-obj_langu = sy-langu .
    *" type of the mail send: packing_list.........................
        CLEAR t_packing_list. REFRESH t_packing_list.
        t_packing_list-transf_bin = space.
        t_packing_list-head_start = 1.
        t_packing_list-head_num = 0.
        t_packing_list-body_start = 1.
        t_packing_list-body_num = w_msg.
        t_packing_list-doc_type = 'RAW'.
        APPEND t_packing_list.
        t_packing_list-transf_bin = 'X'.
        DESCRIBE TABLE t_objbin LINES w_objbin.
    *" doc_size = (lines in pdf table) * 255......................
        t_packing_list-doc_size = w_objbin * 255.
        t_packing_list-body_num = w_objbin.
        t_packing_list-doc_type = 'PDF'.
        t_packing_list-obj_name = 'smart'.
        t_packing_list-obj_descr = 'test'.
        APPEND t_packing_list.
        CLEAR t_receivers.
        t_receivers-receiver = '<email id>'.
        t_receivers-rec_type = 'U'.
        APPEND t_receivers.
        CALL FUNCTION 'SO_DOCUMENT_SEND_API1'
          EXPORTING
            document_data                    = w_docdata
           put_in_outbox                    = 'X'
           sender_address                   = sender
    *   SENDER_ADDRESS_TYPE              = 'B'
           commit_work                      = 'X'
    * IMPORTING
    *   SENT_TO_ALL                      = SENT_TO_ALL
    *   NEW_OBJECT_ID                    = NEW_OBJECT_ID
    *   SENDER_ID                        = SENDER_ID
          TABLES
            packing_list                     = t_packing_list
    *   OBJECT_HEADER                    = OBJECT_HEADER
           contents_bin                     = t_objbin
           contents_txt                     = t_message
    *   CONTENTS_HEX                     = CONTENTS_HEX
    *   OBJECT_PARA                      = OBJECT_PARA
    *   OBJECT_PARB                      = OBJECT_PARB
            receivers                        = t_receivers
         EXCEPTIONS
           too_many_receivers               = 1
           document_not_sent                = 2
           document_type_not_exist          = 3
           operation_no_authorization       = 4
           parameter_error                  = 5
           x_error                          = 6
           enqueue_error                    = 7.
        IF sy-subrc NE 0.
          WRITE:/ 'Error When Sending the File', sy-subrc.
        ELSE.
          WRITE:/ 'Mail sent'.
        ENDIF.
        SUBMIT rsconn01 USING SELECTION-SET 'INT' AND RETURN.
        CALL FUNCTION 'SO_DEQUEUE_UPDATE_LOCKS'.
      ELSEIF p_fax EQ 'X'.

  • Trying to open PDF in email with Adobe Reader app

    Citimortgage sent me a disclosure statement by email. I'm trying to open it on my iPad using the Adobe Reader app, but this is all I get.
    To view the full contents of this document, you need a later version of the PDF viewer. You can upgrade to the latest version of Adobe Reader from www.adobe.com/products/acrobat/readstep2.html For further support, go to www.adobe.com/support/products/acrreader.html
    Help!
    Jennifer

    George is correct. XFA forms (which the mobile Reader does not support) are often built with a generic error (like the one described) page that displays for Readers that do not support these document types.

  • Error when Open PDF from Email

    When I open a PDF-File from an email, there is always an error "schwerwiegender Fehler" (German version) and the acrobat close down.
    When I download/save first the pdf local harddisk and open after, normally I don't have that error (sometimes happen).
    I reinstall already once adobe acrobat with the latest version. It doesn't work. By the way I have Adobe CS3 completely installed. I guest here is a problem

    When I open a PDF-File from an email, there is always an error "schwerwiegender Fehler" (German version) and the acrobat close down.
    When I download/save first the pdf local harddisk and open after, normally I don't have that error (sometimes happen).
    I reinstall already once adobe acrobat with the latest version. It doesn't work. By the way I have Adobe CS3 completely installed. I guest here is a problem

  • Can't open pdf in emails

    I am running Windows 7, IE 11.  When I get a pdf attached to an email. I click on it. Popup asks Open or Save. Select Open. Dialogue box closes and nothing happens. If i save the pdf it will open fine.  I don't want to have to save pdfs and then go find them just to get them open.
    I think this changed with one of your updates. I have the most recent version of Adobe Reader.

    Can you open Adobe Reader by itself?  If so, try disabling Protected Mode [Edit | Preferences | Security (Enhanced)].

  • Can't open PDF from email

    I uploaded adobe reader, tried to open a PDF from my email and it doesn't give me the "open in" option, only the print option

    Please try looking at this document: http://forums.adobe.com/docs/DOC-2532

  • Error message opening PDF

    "The document cannot be opened because it is corrupted or damaged".  I cannot open PDF's emailed to me on my Iphone which originate from Quickbooks on-line.  All other PDF's open fine on my Iphone. 

    I would try once opening the pdf on a computer. It is very possible that the pdf reader on the phone cannot read something about the way that Quickbooks creates the pdf. While Adobe might read it, it could have some minute differences the phone cannot identify.
    EDIT: Adobe has a free reader app for the iPhone that can be downloaded from the App Store. You can also try that if you like.
    Message was edited by: ChrisJ4203

  • Can't open pdfs anymore

    Lately I have been unable to open PDFs from the internet.  When I click it sends me to a blank internet tab.  Sometimes I am able to control click and have the option to save the file in my downloads, then have to go back into finder to open the file.  This is also the case when opening PDFs from emails.  However there are some files on the internet that will not allow me that option.  I have tried this in firefox, safari, and chrome.  All are the same.  Everything worked just fine until about 3 days ago.  Please help?

    I've been having a similar problem with Safari pdf files despite downloading the latest Adobe Reader XI.
    I would constantly get messages - There was an error opening this document. The file is damaged and could not be repaired. And I would get a blank page when I tried to print the pdf if I tried printing from the Safari web page using File - Print from the top toolbar on my laptop.
    But at last I have managed to find a simple way around it.
    Firstly, without downloading the pdf, I printed the pdf file direct from the Safari page by using the Print icon on the grey lozenge that appears centrally three quarters down the screen.
    Then I discovered that if I save the pdf using the Save icon from this same grey lozenge on the Safari page I can open and print this pdf version from my desktop.
    I've tested it with a couple of different pdf files and these methods work using the grey lozenge icons but the same pdfs files don't work using File - Save As on the Tool Bar.

  • Attachments (word docs and PDFs) to emails can not be opened by the receivers. Are received as .dat files or application/octet-stream

    Attachments I add to emails (word doc or PDFs) can not be opened by the email receivers. Word documents attachments are received with ATT00427.dat (application/octet-stream) or .doc with (application/octet-stream). PDF attached files arrive with .pdf (application/octet-stream). My copy of my sent email has the same attachment extensions.
    == This happened ==
    Every time Firefox opened

    Firefox doesn't do email, it's a web browser.
    If you are using Firefox to access web mail, you need to seek support from your service provider or a forum for that service.
    If your problem is with Thunderbird, see this forum for support.
    [http://www.mozillamessaging.com/en-US/support/]
    or this one
    [http://forums.mozillazine.org/viewforum.php?f=39]

  • Why can't i open .pdf email attachment on my iphone 5

    Hi,
    Hope someone can help! I can't seem to open .pdf or .doc files which are sent to me in email format. I have had a look at other posts and tried the answers but none of these work. It seems to be since the ios7 update. Do i need to download an app?
    Many thanks
    Paul

    Hi, Try downloading the free Adobe Reader app from the App Store. Hope it works.
    Nirav Patel
    www.nirav-patel.co.uk

  • How can I open pdf attachments in email? Adobe reader used to do this, and does not.

    About 3 weeks ago, I suddenly could not open pdf attahments while reading my email. I now must down load them and save, in order to open them. Can someone help me to fix this? They open on my desk top, but not in Internet explorer. I would like to see them before down loading. What can I do to fix this problem?

    Enable the Adobe Reader plugin in browser : http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html
    Thanks
    Wasil

  • Since the update I can no longer open a link from an email opened PDF file. I could prior to update

    Since the update I can no longer open a link from an email opened PDF file. I could prior to update

    Try this  - Reset the iPad by holding down on the Sleep and Home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider - let go of the buttons. (This is equivalent to rebooting your computer.) No data/files will be erased.
     Cheers, Tom

Maybe you are looking for

  • Rendered movie is replacing black background

    I can't seem to get an exported movie to export correctly. It's a computer generated sequence with an all black background. It's almost as if Premiere pro tries to replace the background as a green screen effect. How do I fix this?

  • How to find function module's and tables used for the particulat screen or TCODE?

    Hello Nation, I would like to know how to find the  function modules and tables used for the particular screen or TCODE or program. Example : I would like know the function module used in the program RDBGFT?                  How can i find that? Than

  • I don't find anymore how to set a CD as COMPILATION

    Until last update to iTunes 12.1.0.71 it was possible to mark a CD as COMPILATION and now I don't find anymore how to do it.

  • Clients with managed preferences using parallels

    If I use Mac OS X server to restrict which applications a user can access it causes a problem if they run parallels. Because although they can launch parallels application, they get a warning for each application running inside the virtual machine "T

  • Cannot cancel Urgent Change document in Solman 7.1

    Hi all, After we upgraded to Solman 7.1, we found that the Urgent Change documents in CHARM are not allowed to be withdrawn/cancelled when tranports have already been imported to QA system. In previous Solman 7.0, we were able to cancel/withdraw Urge