Just save a pdf file without nav pan

why can't I save my pdf file with the nav pane showing

Hi francesw,
What version of Acrobat are you using? And are you referring to the Navigation pane on the left, or the Tools Panel on the right? In either case, you can choose to show or  hide these items by choosing View > Show/Hide >.
Best,
Sara

Similar Messages

  • Save a pdf file without Adobe automatically adding "-Copy" to the end

    How can I save a pdf file without Adobe automatically adding "-Copy" to the end of file name?

    If you have actually made any changes (e.g. adding a Sticky Note or filling out forms), the Save button will appear in the bottom toolbar.  It will save it as the same name.
    "- Copy" is added only when you tap/click the Save As button.  You can change it to something else, if you'd like.

  • Save PDF File Without Display

    Hi Folks,
    I have a scenario where i need to save a PDF file on desktop without opening it. I've implemented the following approach and code:
    1. Created a UI Element fileDownload and associated it with PDFSource variable of type XSTRING in context
    2. Called the following method in init method of view
    METHOD manual_save .
    * Table in XML Format
      DATA : ixml TYPE string.
    * Table Data in Hexadecimal Format
      DATA : lv_xstring TYPE xstring.
    * Function Module Calling
      DATA : w_fmname TYPE rs38l_fnam,     "FM Name
             fp_outputparams   TYPE sfpoutputparams. "FM Output Parameters
    * Form Parameters
      DATA :   fpdocparams TYPE sfpdocparams ,   "Form Parameters
               fpformoutput TYPE fpformoutput .  "Form Output Data
    * Get Context Refrence and Table Data
      DATA lo_nd_skutab TYPE REF TO if_wd_context_node.
      DATA lo_nd_skudata TYPE REF TO if_wd_context_node.
      DATA lo_el_skudata TYPE REF TO if_wd_context_element.
      DATA ls_skudata TYPE wd_this->element_skudata.
    * navigate from <CONTEXT> to <SKUTAB> via lead selection
      lo_nd_skutab = wd_context->get_child_node( name = wd_this->wdctx_skutab ).
    * navigate from <SKUTAB> to <SKUDATA> via lead selection
      lo_nd_skudata = lo_nd_skutab->get_child_node( name = wd_this->wdctx_skudata ).
    * @TODO handle not set lead selection
      IF lo_nd_skudata IS INITIAL.
      ENDIF.
    * get element via lead selection
      lo_el_skudata = lo_nd_skudata->get_element(  ).
    * @TODO handle not set lead selection
      IF lo_el_skudata IS INITIAL.
      ENDIF.
    * get all declared attributes
      lo_el_skudata->get_static_attributes(
        IMPORTING
          static_attributes = ls_skudata ).
    * Convert Table Data to XML Format (type String)
      CALL METHOD lo_nd_skudata->to_xml
        RECEIVING
          xml = ixml.
    * Convert String to Xstring Format
    *CALL FUNCTION 'CRM_IC_XML_STRING2XSTRING'
    *  EXPORTING
    *    instring         = IXML
    * IMPORTING
    *   OUTXSTRING       = LV_XSTRING
      CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
        EXPORTING
          text           = ixml
    *   MIMETYPE       = ' '
    *   ENCODING       =
        IMPORTING
          buffer         = lv_xstring
    EXCEPTIONS
       failed         = 1
       OTHERS         = 2
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    *  Set Output Parameters
      fp_outputparams-nodialog = 'X'.
      fp_outputparams-getpdf = 'X'.
      fp_outputparams-connection = 'ADS'.
    *  Job Open
      CALL FUNCTION 'FP_JOB_OPEN'
        CHANGING
          ie_outputparams = fp_outputparams
        EXCEPTIONS
          cancel          = 1
          usage_error     = 2
          system_error    = 3
          internal_error  = 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.
    *&-  Identify FM for PDF Form
      CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
        EXPORTING
          i_name           = 'ZTEST_SKU_PDF_FORM'
        IMPORTING
          e_funcname       = w_fmname
    *      e_interface_type =
    * set form parametsrs
      fpdocparams-langu = 'E'.
      fpdocparams-country = 'US'.
    *fpdocparams-FILLABLE = 'X'.
    * Generate form
      CALL FUNCTION w_fmname      "'/1BCDWB/SM00000021'
        EXPORTING
         /1bcdwb/docparams        = fpdocparams
          /1bcdwb/docxml           = lv_xstring
       IMPORTING
         /1bcdwb/formoutput       = fpformoutput
       EXCEPTIONS
         usage_error              = 1
         system_error             = 2
         internal_error           = 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.
    * Job Close
      CALL FUNCTION 'FP_JOB_CLOSE'
        EXCEPTIONS
          usage_error    = 1
          system_error   = 2
          internal_error = 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.
    * Bind Data to PDF source
      DATA lo_el_context TYPE REF TO if_wd_context_element.
      DATA ls_context TYPE wd_this->element_context.
      DATA lv_pdf LIKE ls_context-pdf.
    * get element via lead selection
      lo_el_context = wd_context->get_element(  ).
      lv_pdf = fpformoutput-pdf.
      CALL METHOD lo_el_context->set_attribute
        EXPORTING
          value = lv_pdf
          name  = 'PDF'.
    ENDMETHOD.
    To explain in simple terms, i've done the following:
    1. Stored the context table data in a XML format in a string variable
    2. Converted the string variable to xstring format using fm 'SCMS_STRING_TO_XSTRING'
    3. Job Open
    4. Identify the Actual FM Name
    5. Genarate Form
    6. Job Close
    7. Bind data (fpformoutput-pdf) to the PDF Source variable in context
    Issue is, when i run application and download, i am only able to get a PDf with no data in it.
    Interestingly, in debug mode, i am able to see some data.
    Points to add: When i display in a PDF UIElement the output comes in two pages, and in debug mode when i see the variable FPFORMOUTPUT-PAGES, it has a value of 1.
    May be am following the wrong approach or missing someting in code.
    Any inputs, appreciated.
    Thanks,
    Santosh Verma,
    Deloitte.

    Hi SV,
    Below is code that i am writing for preparing the ZSTRING.
          DATA : ixml TYPE string.
    Table Data in Hexadecimal Format
          DATA : lv_xstring TYPE xstring.
          CALL METHOD lo_nd_main_node->to_xml
            RECEIVING
              xml = ixml.
          ixml = ixml+33.
          CALL FUNCTION 'SCMS_STRING_TO_XSTRING'
            EXPORTING
              text           = ixml
      MIMETYPE       = ' '
      ENCODING       =
           IMPORTING
             buffer         = lv_xstring
           EXCEPTIONS
             failed         = 1
             OTHERS         = 2
          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 XSTRING into internal table
          DATA: gt_formdata  TYPE STANDARD TABLE OF lxe_xtab,
                gwa_formdata TYPE lxe_xtab.
          CALL FUNCTION 'LXE_COMMON_XSTRING_TO_TABLE'
            EXPORTING
              in_xstring       = lv_xstring
    IMPORTING
      PSTATUS          =
            TABLES
              ex_tab           = gt_formdata
    1. I have around 20 fields on my form which i need to capture in this XSTRING.
    2. This method is capturing only 10 fields.
    3. I am not getting
    Inputs would be highly appreciated!!!
    Thanks,
    Ashish

  • Preflight keeps saying  "Unable to save the PDF File after post processing"

    I'm at a loss how to overcome this. Spent almost a whole day, together with another person, trying to fix it with no success!
    I use Adobe pro CC on a PC
    I usually receive pdf files from this one client who edits and formats a book in Mac Pages. Up until a few days ago I had no problems converting the client's pdfs into pdf/x3, but the last three versions of the latest file have stumped me.
    Just to test, I first just tried to convert the file (33MB), unchanged, to pdf/x3 using the save as other option - message reads  "the document has been saved, however, it could not be converted according to the selected standard profile: convert to PDF/X. Please use preflight with the profile "Convert to PDF/X" in order to identify those properties of the document which prevent it from being compliant to this profile"
    if I then choose under Profiles - convert to PDF/X3 - it says no problems found, and appears to have saved the file. If I try to save again as a pdf/x3, just to make sure, it then tells me it's not pdf/x3 compliant
    OK - so then I go back to preflight - and choose the standards function - then pdf/x3, then continue with the default colour profile. About halfway through the conversion, at the point of saving the file,  I get the message "unable to save the pdf file after post processing"
    So far I've had no luck figuring out what this is.
    I then choose the option of "verify compliance of ppdf/x3" - message reads "pdf/x3 version key (GTS_PDFXVersion) missing", and "Trapped key not true or false"
    Help!! How can I be sure the file converted / or not?
    kim

    Yes I was/am aware of Preflight's inability to play nicely over cloud technologies in certain cases, especially wrt Standards technologies, this will be partially addressed in an upcoming version of Preflight without saying too much.  But the same thing could theoretically have happened if the file was also located on another local network client or server.  Leaving aside the argument that this may violate the Acrobat User Agreement - since purchasing the software, the user agrees to employ its functionality on a single host system and precludes host-client-based scenarios - this simply is not a supported use, meaning the user may not have expectations that it will work at all, if the applications requirements are not observed.  There do exist server-solutions for Preflight files within networks, but Acrobat and by extension Acrobat Preflight is not one of those solutions, and (still) belongs in the single host-based desktop environment.
    However most (99.9%) functions within Acrobat <-> acrobat.com file exchange are supported, file syncing across multiple devices will soon be supported, but Standards compliance is still admittedly a problem at this point.  Some testing has been done using 3rd party cloud technologies starting with enterprise-based solutions, such as Office 365, and this will continue to ramp up to include other 3rd party products.
    As for the second point, Preflight will usually change the PDF version to be complaint, are you saying that it was unable to do so in this case?  It seems that this error should have popped up during the normal Preflight conversion attempt.  Personally I think solving a workflow problem using the print path is a little bit of a heavy-handed approach, but if helped and the results are acceptable, then that is good.  Since that path is non-existent on a Mac, as one needs to Save as Adobe PDF from the Print dialog's PDF drop-down menu, I am assuming your workflow involved file creation on a Mac, then further processing on Windows using the PDF printer.  I am wondering if a simple resave/Save As... to PDF with overwrite on a Mac, or Preflighting the file using a PDF version compatibility profile before the PDF/X conversion would have helped.  Since there are such a multitude of methods that a PDF can be created, there are also many ways within Acrobat that a user can shape the file to be compatible with the expected workflow, ie, 'many ways to skin a cat', without being morbid.

  • [locked] Allow users to save the PDF file

    I've noticed that by using the form Distribution through either email, Acrobat.com, or a shared folder on the network the user can save the PDF file, correct? Do I understand this correctly? One other thing, what if I don't want to email out but just want the PDF form to be available on my website, will the user still be able to save a copy of the filled form for themselves to print or do whatever they want?

    Okay, is this the paragraph?
    15.12.3 For any unique Extended Document, you may only
    either (a) Deploy such Extended Document to an unlimited number of unique
    recipients but shall not extract information from more than five hundred (500)
    unique instances of such Extended Document or any hardcopy representation of
    such Extended Document containing filled form fields; or (b) Deploy such
    Extended Document to no more than five hundred (500) unique recipients without
    limits on the number of times you may extract information from such Extended
    Document returned to you filled-in by such Recipients. Notwithstanding anything
    therein to the contrary, obtaining additional licenses to use Acrobat Pro or
    Acrobat Pro Extended shall not increase the foregoing limits (that is, the
    foregoing limits are the aggregate total limits regardless of how many
    additional licenses to use Acrobat Pro or Acrobat Pro Extended you may have
    obtained).
    I'm not trying to break any laws but just curious as how Adobe would track that information. In any case, I'm not trying to capture/extract any information from the PDF form. Mainly what I'm trying to do or like to do is just allow the user to save the form. I don't want to capture or extract any information from the PDF form. My form is about three to four pages long and all I'm trying to do is allow the user to save the form that they partially filled and allow them to save the form so they can come back whenever they want to and finish filling up the form and that's it. I'm not looking for any data coming back to me. The user is required to print the form so their is no electronic information coming back. Is this still violate Adobe's limitation above?

  • Is there any way to create 3D PDF file without having the model tree ?

    Is there any way to create 3D PDF file without having the model tree ?
    3D communication is good but sometime we don't want the receiver to be able to study every components in model.
    or any way to make the receiver cannot use model tree and measurement tool ????
    Thank you very much

    You can remove the assembly tree by doing a roundtrip in 3D Toolkit, here's how:
    - start Acrobat 3D
    - drag & drop a CAD file
    - click on 3D Annot to activate
    - right-click on 3D
    - select 'Edit in 3D Toolkit'
    - 3D Toolkit launches
    - click in 'Scene Tree' panel
    - right-click on top assembly name
    - select 'Tools->Collapse Hierarchy'
    - select 'File->Save'
    - select 'File->Exit'

  • Saving a PDF file without the comments

    In Acrobat Reader, is it possible to save a copy of a PDF file without the comments.
    I'm doing a PhD, and would like to be able to send some scientific papers to colleagues without the annotation I may have added. Of course, manually removing all the comments is not a good solution.

    In the Comment panel, go to the Comments List, press Ctrl+A and then Delete.

  • PS Elements 8 - "Save As" PDF File Sizes Huge

    In Photoshop Elements 8.0, Photoshop PDF file sizes are huge when using the "save as" function, using JPEG compression.
    No matter which "Image Quality" is used, the resultant PDF is huge. At "high" quality the file is 20 MB. At "medium" quality, the file is 15 MB. At "low" quality, the file is also 15 MB, much too large. This was not a problem in older versions of Elements. File sizes were typically just more than 3 MB.
    If I save the image as JPEG files using "maximum" (10) quality, "medium" (5) quality, and "low" (3) quality, I can insert the image(s) into Word and use the Acrobat Pro PDF printer driver to get PDF file sizes of 1.8 MB, 1.3 MB, and 1.1 MB. These PDF files are perfect. Even the lowest quality is perfectly readable for my purposes. The older versions of Elements worked fine so I didn't need to take the step of saving in JPEG format, importing to Word and then printing.
    Does anyone know if Photoshop Elements Version 8 is capable of saving PDF files in the smaller file sizes?  Is there a plug-in I can purchase that would give better results?
    Photoshop Elements Version 8.0 (20090905.r.605812) with all updates applied.
    OS = Windows 7 Enterprise (6.1, Build 7600).
    Thank you for any help or adevice.

    I'm dealing with the same situation.
    With Photoshop Elements I use to scan a picture at 300 dpi, save as PDF file, jpg compression medium low
    quality and alway got files under 5 Mb, even lower than that. Colour or black and white pictures.
    Now with Photoshop Elements 8.0 did the usual procedure but the pdf are huge, larger than 8 Mb, even more
    than 10 Mb !
    Am I missing any detail in settings program, perhaps ?
    Thanks for any suggestions.

  • Save as PDF file as excel file or text file in vba excel

    Hi all,
    I am opening a PDF document fromm VBA excel. After opening document it should save the document as excel file or text file in one folder.
    I am trying to do this with some code but not able to , pls help me thatnks.
    Dim AcroApp As Acrobat.CAcroApp
      Dim Part1Document As Acrobat.CAcroPDDoc
    Set Part1Document = CreateObject("AcroExch.PDDoc")
       Part1Document.Open ("Z:\EG MI Information\MIS\Requests\Req_156\NO.1.pdf")
      Dim app As Object, avdoc As Object, pageview As Object
    Set app = CreateObject("AcroExch.App")
    Set avdoc = app.GetActiveDoc
    app.MenuItemExecute ("SaveAs")
    thanks
    Abhijeet

    Hi,
    In the documentation for the saveAs function it has the following params
    cPath The device-independent path in which to save the file.
    cConvID (optional, Acrobat 6.0) A conversion ID string that specifies the conversion
    file type.
    cFS (optional, Acrobat 7.0) A string that specifies the source file system name.
    bCopy (optional, Acrobat 7.0) A Boolean value which, if true, saves the PDF file
    as a copy. The default is false.
    bPromptToOverwrite (optional, Acrobat 7.0) A Boolean value which, if true, prompts the user if
    the destination file already exists. The default is false.
    In order to get a text file saved you need to specify the correct cConvID.
    See the documentation for the valid convID's - http://livedocs.adobe.com/acrobat_sdk/10/Acrobat10_HTMLHelp/JS_API_AcroJS.88.519.html
    Please note the Acrobat SDK contains all the information and does not require much installing ( as it is a zip file(on windows) and a disc image (on Mac) it just needs extracted)
    Regards
    Malcolm

  • How do i save a pdf file from an incoming email on my ipad 2

    how do i save a pdf file from an incoming email on my ipad 2

    If you have iBooks on your iPad you have the option to save it to that. Just tap and hold on the document link and the options will pop up. Hit "open with ibooks" and it will save it in there for you. Thats one option

  • How to view pdf files without downloading them on firefox for android

    I use an Electronic Medical Record program using Firefox for android on a a Samsung Galaxy Pro 12.2 tablet. I need to view patient pdf files on the tablet. So far, the only way I have been able to accomplish this is to download the file first. It would be more efficient if I could just view the pdf file on the Galaxy tablet without having to download it. Is it possible to do this with Firefox for android? Thanks.

    Not in any reliable manner. There is PDF.js but it has not been optimized for Firefox for Android. https://github.com/mozilla/pdf.js/#firefox

  • Saving a Text data to a PDF file without using print option

    Hi,
    I want to save a Text to a PDF file. I want to assign the path of the PDF file as a default one.
    If I use Print options, then it ask for the file path at the run time.
    Is there any method to save to a PDF file without using print option in Labview 8.2.
    Regards,
    Raja

    This question comes up a lot. Did you try searching? It depends on the PDF printer driver that you're using. See here, here, here, ...

  • Prompted to Open or Save a pdf File

    Does any one know how this Works:
    What is the security difference between having Acrobat opening a PDF from a webpage inside the browser
    and opening in the Acrobat program.
    I ask because when i have Acrobat opening PDF's inside the browser it
    does not prompt to open/save the PDF file. But when you disable the open
    inside browser, you get the prompt from IE to open/save the PDF first.
    I can circumvent it by placing the site into the Intranet security zone in IE, but this is not a long term solution because Office requires that the site is in the Trusted Internet Zone, if you dont have the site in trusted internet zone, office will
    tell you that the file can harm you computer etc.

    Hi,
    So what do you want to achieve with the PDF files, Let them display inside the browser or open the download prompt?
    PDF open inside browser is managed by add-ons in IE. And if the PDF needs to open in the Acrobat, the file need to be downloaded first.
    Here are two articles talking about this:
    Display PDF in browser
    How do I open a PDF in Acrobat instead of the browser?
    Please note: Since the website is not hosted by Microsoft, the link may change without notice. Microsoft does not guarantee the accuracy of this information.
    Best regards
    Michael Shao
    TechNet Community Support

  • How do I save my .pdf files as .jpeg files?

    How do I save my .pdf files as .jpeg files? Do this require Acrobat Pro? I don't need all of the bells and whistles, just the ability to save as .jpeg. Please advise.

    There's no such thing as Acrobat Reader. If you have the free version then you have Adobe Reader. In which case, see my reply above.
    If you have Acrobat (Standard or Pro) then see Dave's reply above.

  • Prompted to Open or Save a pdf File. Very Annoying!!

    I have Windows 7, IE9, and Adobe Reader X. My question is this. When I click on a pdf file to open it, I receive a bar across the bottom of my window asking me if I want to open or save the pdf file. How can I just get the pdf to open and stop the prompt from appearing?

    If you use the 32-bit version of IE9 there should be no prompt; it sould open inside the browser.

Maybe you are looking for

  • Satellite L675 is locked in a loop of "configuring system"

    I have a Satellite L675 pre-loaded with Windows7 64-bit, because it was very slow so I decided to recovere it to the factory default out-of-box. But it has now been locked in a loop of "configuring system" with several reboots for more than an hour -

  • Implementing Menu Tree in the ADF Faces

    We needed to create a Menu tree. I.e a menu list and sub menus inside ont of them. Something like this Inbox E-Prescription>>--Create New Prescription >>--My Prescriptions >>--Refill Requests ReminderHas any one implemented this and woul dprovide a s

  • BADI canu00B4t be found

    Hi, I have the task to implement the BADI ME_PURCHDOC_POSTED, but I can´t find it in the system! When I Search for ME* in SE18, I just get the following list: ME_CHANGE_CHARACTER  Customer-Specific Characteristics for Product Allocation ME_CHECK_ALL_

  • VOFM help !!!!

    Hi Guys I want to block the output of an inbound delivery(E1) based on some conditions. I have created an output control routine . The routine is created, activated, shows active status in table TRFM, Its is correctly included in its parent include a

  • Error in PPT after exporting Xcelsius dashboard

    I exported a Xcelsius dashboard into a MS Power Point. If tried to open in the same sytem it is working fine. if tried to open in some other system, I am getting the following error. "Some controls in this presentation can't be activated. They might