How do you close an open PDF attachment in email

Hi, I opened a PDF attachment in my email and now I can't close it and go back to email.  This is a dumb question, but how do I close the attachment?

I looked at the other questions like this and found the answer, thanks

Similar Messages

  • How do you close your open app windows?

    How do you close your open app windows?

    Force the app to close
    Double-click the Home button.
    Swipe left or right until you have located the app you wish to close.
    Swipe the app up to close it.

  • HT4623 On iOS 7, how do you close an open app?

    How do you close open apps with the new update?

    https://sites.google.com/site/appleclubfhs/support/advice-and-articles/closing-a pps

  • There was an error opening document.  Access denied. Cant open pdf attached to emails

    I just upgraded to Acrobat Reader x and can't open files attached to emails in Outlook 2010.   If I save the file, I can open it.   I assume it has something to do with protected view or such but can't find where to change settings.   I can open .doc and .xlsx files attached to emails so it seems to be only an issue with .pdf files attached to emails in Outlook.   Suggestions?

    To make things simple for you, here are two ways for you fix the problem:
    A. Fix One PC
    Launch Adobe Acrobat Reader X
    Go to: Edit > Preferences...
    Click on "General" in the left pane.
    Uncheck "Enable Protected Mode at startup"
    You will prompted with a dialog box to remind you to close the application for the change to go into effect. Click Yes.
    Click OK to save your change.
    Exit Adobe Reader
    B. Fix Several PCs in Your Organization
    Following the above steps aren't practical if you have Adobe Acrobat installed on 1,000+ computers in 30 regional offices! Push this registry setting using your standard software deployment software.
    [HKEY_CURRENT_USER\Software\Adobe\Acrobat Reader\10.0\Privileged]
    "bProtectedMode"=dword:00000000
    Microsoft Outlook and other email clients
    I hear this will also fix the "There was an error opening this document. Access denied." error that is occurring with any email client, including Microsoft Outlook Express; Microsoft Outlook 2010, 2007, 2003; Eudora; Mozilla Thunderbird.
    Credit for this answer must go to http://www.brianstevenson.com/blog/adobe-acrobat-reader-x-there-was-error-opening-document -access-denied

  • How can you minimize all open pdf files at once in Acrobat 10?

    My company just switched us to Acrobat 10 from 6.  Now if I have a number of pdf files open I have to minimize each of them individually.  Before all you did was click the minimize button and the program just minimized to the taskbar.  How do you do that in Acrobat 10?  The Help link is of no use in the program.  Maybe this can't be done any longer.  If not, pretty stupid.

    Use the menu Window > Minimize All Windows

  • How do you download and open PDF files that come in the email?

    I can NOT download or open PDF files. It prompts me to open in IBooks and then it's not there. I am so frustrated. PLEASE HELP!

    Touch the attachement once to download it.  Then touch it a second time, after it is downloaded ( watch the attachment icon) to open it in quick view. if you want to do something more than just view it, and if you want to save it,  Touch and hold the downloaded attachment to get the 'open in' pop up, and any app that supports PDFs, like I books, or any of the other PDF ready apps.
    If it is not downloaded yet, it will not be in I books.

  • Can not open pdf attachment in email (SBWP)

    Hello Expert,
    I created a program to covert a form to pdf format, then, send it to SAPoffice (SBWP) as an attachment successfully. But I cannot open the pdf attachment. I don't know the reason. Could you please give me some suggestion?
    use function module 'CONVERT_OTF_2_PDF' to convert pdf format
    use function module SO_NEW_DOCUMENT_ATT_SEND_API1 to send email.
    points will be assigned for Helpful suggestion.
    Thank you.

    Thanks.
    I have tried to download it into my local computer, the downloaded pdf file can be open correctly. So it's the problem in my program.
    Below is my program, thanks a lot.
    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 = 'test_1234567879'.
    Mail Contents
      mailtxt-line = 'Here is your file'.
      APPEND mailtxt.
    Prepare Packing List
    PERFORM 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 = 'PDF'.
      APPEND mailpack.
    PERFORM 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.
      DATA: i_tline TYPE TABLE OF tline WITH HEADER LINE,
            v_len_in LIKE sood-objlen.
      DATA doctab_archive LIKE docs OCCURS 10.
      CALL FUNCTION 'CONVERT_OTF_2_PDF'
    EXPORTING
      USE_OTF_MC_CMD               = 'X'
      ARCHIVE_INDEX                =
    IMPORTING
      BIN_FILESIZE                 =
        TABLES
          otf                          = otf
          doctab_archive               = doctab_archive
          lines                        = i_tline
       EXCEPTIONS
         err_conv_not_possible        = 1
         err_otf_mc_noendmarker       = 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.
      CLEAR solisti1. REFRESH solisti1.
      LOOP AT i_tline.
        solisti1-line = i_tline.
        APPEND solisti1.
      ENDLOOP.
      LOOP AT solisti1.                                         "solisti1.
        MOVE-CORRESPONDING solisti1 TO mailbin.
        APPEND mailbin.
      ENDLOOP.
      DESCRIBE TABLE mailbin LINES tab_lines.
      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 = 'PDF'.
      mailpack-obj_name = 'TEST'.
      mailpack-obj_descr = 'Subject'.
      mailpack-doc_size = tab_lines * 255.
      APPEND mailpack.
    Set recipient - email address here!!!
      mailrec-receiver = 'FU.Q.HUANG'.  "'[email protected]'.
      mailrec-rec_type = 'B'.           "'U'.
      APPEND mailrec.
    Sending the document
      CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
        EXPORTING
          document_data                    = maildata
      PUT_IN_OUTBOX                    = ' '
    IMPORTING
      SENT_TO_ALL                      =
      NEW_OBJECT_ID                    =
        TABLES
          packing_list                     = mailpack
      OBJECT_HEADER                    =
         contents_bin                      = mailbin
         contents_txt                     = mailtxt
      CONTENTS_HEX                     = mailbin
      OBJECT_PARA                      =
      OBJECT_PARB                      =
          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
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.

  • Acrobat Reader 9 cannot open pdf attachement to email

    My os is xp. After installing Reader 9, I cannot open pdf attahement to incoming email. The error message is "the file does not have a program associated with it", even though I have already associated pdf with Reader 9 in Folder Option. If I save the pdf attachement to a different folder I am able to open it.
    Maybe I need to rever to Reader 8. If someone cannot solve the error message, maybe can tell me where I can get Reader 8 as it is not in the Adobe free download.

    I have no problem opening PDF attachments that arrive in my Outlook 2003 Inbox; they open fine with Adobe Reader 9. It may be an issue with your email client.
    But if you think that Adobe Reader 8 will fix it, you can download it from http://download.adobe.com/pub/adobe/reader/win/8.x/8.1.3/enu/AdbeRdr813_en_US.exe - make sure that you uninstall Reader 9 first (and Acrobat.com & Adobe AIR).

  • How to send an ouput as PDF attachment to email

    Hi,
    We have a 'Z' output for a delivery document. The output has the standard RLE_DELNOTE driver program and a Zsmart form assigned to it. We need to send the output as an attachment to email. Can some one please adivice how this can be achieved?
    Thanks in advance
    Kat

    Hi,
    Plz try following steps.
    1. Note the spool request No.
    2. In T/code SE38, Enter The programme and execute.
    3. In sub Object- Click Documentation and then do debuggung.
    4.Enter spool request no and desired location and execute.
    5. In ABAP Debugger- Use F8 key.
    6. Select the desired location and file name and save.
    View the desired output in PDF and can be sent through mail.
    Hope this helps.
    Regards,
    Jaiprakash.P.T

  • Error opening PDF attachment (via email)

    Hello,
    I've problems to send a PDF file with the function:
    'SO_DOCUMENT_SEND_API1'
    At first a small overview of my process:
    - 'SCMS_DOC_READ'                 -> to read the file from the archive
    - 'SCMS_BINARY_TO_FTEXT'     -> to convert from bin. to pdf
    - 'SO_DOCUMENT_SEND_API1'  -> to send the email
    My pdf result:
    % P D F - 1 . 4  % â ã Ï Ó  1   0   o b j  < <  / T y p e
    Project scope:
    %PDF-1.4%âãÏÓ1 0 obj<</Type
    As a result, by opening the PDF file an error occured.
    Further information:
    objpack-transf_bin = 'X'.
      call function 'SO_DOCUMENT_SEND_API1'
        exporting
          document_data              = doc_data
          put_in_outbox              = ''
          commit_work                = 'X'
        tables
          packing_list               = objpack
          object_header              = objhead
          contents_bin               = data          <-  PDF content
          contents_txt               = objtxt
          receivers                  = reclist
        exceptions

    most possible reason has been discussed in:
    Error in opening PDF attachment

  • ISO 7 how do you close out open apps running in the background you use to double press the start button and then touch and hold an icon on the bottom

    How to close open apps from bottom of screen on ISO 7 when you double tap start button

    When you double click the home button.  You see the App Icon below and an open view of the app page above.  Swipe the open view page upwards and the app closes.

  • How can I close an Open PDF form without crashing the browser

    Hi
    We have build a webdynpro application in Java. In this application, we are make using of the Interactive form to bring up  a PDF form that the users can print. Our issue is that no matter what approach we take there is no gracefull way to exit once the PDF is displayed.
    Here are the approaches we took.
    1) Embed the PDF in the existing Window. The form comes up correctly with all fields, but there is no way to get out from it. A browser back doesnt help, nor is there a default close button in the PDF window.
    2) Bring up the PDF on a separate window.The PDF does come up fine on this new window. We were hoping to use the window.destroyInstanece() method on this new window to both close the window and gracefully exit the PDF form. This too dint quite work out and resulted in a browser crash.
    I am sure others must have faced a similar problem. Are there any suggestions on how we can handle this. I found a few other posts with similar issues but no clear answers.
    We are using Adobe 7.0.9 Reader on the client end.
    Regards
    Aju Paul

    I have been working with Aju on this issue. We are still experiencing the issue.
    We have tried using the destroyWindow() method and using a fireplug to redirect the application. When we have an Interactive form embedded on one of the views in the window, the application will cause a browser crash when we try to destroy popup window or redirect the applicaiton.
    If we remove the Interactive form from the view, we can destroy the window and we can redirect the application. The problem only  occurs when the Interactive form is present.
    We have recently upgraded our server to SP10. I have also reloaded the ACF on my pc. Neither of the steps resolved the issue. What else can we look at to see what may be causing the issue.
    Thanks.....Tommy Knight

  • How can you close 10 open apps at once on iPad retna mini

    Is it possible to do the above as the title says.

    No. And, it is not necessary if they are all in the background.

  • HT4623 How do you close an open page

    I used to double click and an x would appear. 

    User guides
    http://manuals.info.apple.com/MANUALS/1000/MA1595/en_US/ipad_user_guide.pdf

  • How  do  you close the events  folders  in  i movie  version 9.0.8 1795

    how do you close   the open events  folders in  i move events  library so that the are in a folder on the lhs in the events library  as  shown  in the help page " organising events in the events library"
    my events library on the lhs  is  blank and all the  evnts folders are on the rhs  and open with all the video clips on display .
    i have  seen it didplayed  correctly  on a mac pro with i movie 11 version 9.0.8 1778-- 
      my version  is I MOVIE 11 VERSION 9.0.9 , 1795..
    i am downloading the video clips via camera  card to  i photo ( not by connecting camera  and  importing) .  the video  clips appear in the  i photo folder  alongside the still  images but  then automatically import to i movie when you open i movie   next time  and  select last import   in the  events library  > i photos and  select the update thumbnails  box which appears .
    i want the folders   with the video clips to list  in the events  library on the  LHS in folders   and not   be all open on th RHS.
    any ideas /
    iainfromnsw

    Hi,
    Please try this: '''Tools''' ('''Alt''' + '''T''') > '''Add-ons''', click '''Extensions''', '''Appearance''' or '''Plugins''' on the left to see the installed extensions, themes and plugins respectively.
    Useful links:
    [https://support.mozilla.com/en-US/kb/Options%20window All about Tools > Options]
    [http://kb.mozillazine.org/About:config Going beyond Tools > Options - about:config]
    [http://kb.mozillazine.org/About:config_entries about:config Entries]
    [https://support.mozilla.com/en-US/kb/Page%20Info%20window Page Info] Tools (Alt + T) > Page Info, Right-click > View Page Info
    [https://support.mozilla.com/en-US/kb/Keyboard%20shortcuts Keyboard Shortcuts]
    [https://support.mozilla.com/en-US/kb/Viewing%20video%20in%20Firefox%20without%20a%20plugin Viewing Video without Plugins]
    [http://kb.mozillazine.org/Profile_folder_-_Firefox Firefox Profile Folder & Files]
    [https://developer.mozilla.org/en/Command_Line_Options#Browser Firefox Commands]
    [https://support.mozilla.com/en-US/kb/Basic%20Troubleshooting Basic Troubleshooting]
    [https://support.mozilla.com/en-US/kb/common-questions-after-upgrading-firefox-36 After Upgrading]
    [https://support.mozilla.com/en-US/kb/Safe%20Mode Safe Mode]
    [http://kb.mozillazine.org/Problematic_extensions Problematic Extensions]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20extensions%20and%20themes Troubleshooting Extensions and Themes]
    [https://support.mozilla.com/en-US/kb/Troubleshooting%20plugins Troubleshooting Plugins]
    [http://kb.mozillazine.org/Testing_plugins Testing Plugins]

Maybe you are looking for