"The document could not be saved/exported as"

Since the installation of Mavericks, I get this problem that I have been trying to investigate, without success so far:
With all application (could it be Preview, Pages and so on), when I first want to save or export the document, the Save dialog displays the default folder (let's say the Documents folder), then if I try to "save" there, or in a child directory, I get a "The document XXX.xxx could not be saved/exported as XYX.yxy".
If, instead of browsing from this default directory, I go back to the root (that is, click "User" then "Documents" and so on), the error vanishes, and the next save goes OK. Until I close the application and start over.
A hint:
The same thing can happen when unzipping a file, and I once observed, when trying to make a new folder from the Unzipping dialog, a "This folder is read-only" indication. In this case again, selecting the same folder by going back to the root, made this indication vanish.
So my guess is that there is some permission problem with the default path / shortcut for writing documents, but I have no clue about how to fix this.
I tried fixing the disk permissions and running all maintenance tasks of Onyx, but the problem doesn't go away.
I would be grateful if anybody had a clue or solution!
Thanks

If you're having trouble making changes to files that are inside your home folder (represented by a house icon in the sidebar of a Finder window), or if you can't get changes to the settings of an application to stick, then please see below.
Back up all data.
This procedure will unlock all your user files (not system files) and reset their ownership and access-control lists to the default. If you've set special values for those attributes on any of your files, they will be reverted. In that case, either stop here, or be prepared to recreate the settings if necessary. Do so only after verifying that those settings didn't cause the problem. If none of this is meaningful to you, you don't need to worry about it.
I've tested these instructions only with the Safari web browser. If you use another browser, they may not work as described.
Step 1
If you have more than one user account, and the one in question is not an administrator account, then temporarily promote it to administrator status in the Users & Groups preference pane. To do that, unlock the preference pane using the credentials of an administrator, check the box marked Allow user to administer this computer, then reboot. You can demote the problem account back to standard status when this step has been completed.
Triple-click anywhere in the following line on this page to select it:
{ sudo chflags -R nouchg,nouappnd ~ $TMPDIR..; sudo chown -R $UID:staff ~ $_; sudo chmod -R u+rwX ~ $_; chmod -R -N ~ $_; } 2>&-
Copy the selected text to the Clipboard by pressing the key combination command-C.
Launch the built-in Terminal application in any of the following ways:
☞ Enter the first few letters of its name into a Spotlight search. Select it in the results (it should be at the top.)
☞ In the Finder, select Go ▹ Utilities from the menu bar, or press the key combination shift-command-U. The application is in the folder that opens.
☞ Open LaunchPad. Click Utilities, then Terminal in the icon grid.
Paste into the Terminal window (command-V). I've tested these instructions only with the Safari web browser. If you use another browser, you may have to press the return key after pasting.
You'll be prompted for your login password. Nothing will be displayed when you type it. You may get a one-time warning to be careful. If you don’t have a login password, you’ll need to set one before you can run the command. If you see a message that your username "is not in the sudoers file," then you're not logged in as an administrator.
The command may take a few minutes to run, or perhaps longer if you have literally millions of files in your home folder. Wait for a new line ending in a dollar sign ($) to appear, then quit Terminal.
Step 2 (optional)
Take this step only if you have trouble with Step 1 or if it doesn't solve the problem.
Boot into Recovery. When the OS X Utilities screen appears, select
Utilities ▹ Terminal
from the menu bar. A Terminal window will open.
In the Terminal window, type this:
res
Press the tab key. The partial command you typed will automatically be completed to this:
resetpassword
Press return. A Reset Password dialog will open. You’re not going to reset a password.
In the dialog, select the startup volume ("Macintosh HD," unless you gave it a different name) if it's not already selected.
Select your username from the menu labeled Select the user account if it's not already selected.
Under Reset Home Directory Permissions and ACLs, click the Reset button.
Select
 ▹ Restart
from the menu bar.

Similar Messages

  • CRM order giving the document could not be saved exception! Please help!

    Hi Experts,
       I am changing the status of a order using CRM_STATUS_CHANGE_EXTERN and CRM_STATUS_CHANGE_INTERN.
       After this I call CRM_ORDER_INITIALIZE and the BAPI_BUSPROCESSND_SAVE.
       Finally commit.
               CALL FUNCTION 'CRM_ORDER_INITIALIZE'
                  EXPORTING
                    it_guids_to_init  = lt_crmd_guids
                    iv_init_frame_log = 'X'
                    iv_keep_lock      = 'X'
                  EXCEPTIONS
                    error_occurred    = 1
                    OTHERS            = 2.
                ls_obj_save-guid = v_header_guid.
                append ls_obj_save TO lt_obj_save.
                CALL FUNCTION 'BAPI_BUSPROCESSND_SAVE'
                   EXPORTING
                    UPDATE_TASK_LOCAL       = 'X'  "commented. Taking default
                     SAVE_FRAME_LOG          = 'X'
                   IMPORTING
                     LOG_HANDLE              = lv_log_handle
                    TABLES
                      OBJECTS_TO_SAVE         =  lt_obj_save
                      SAVED_OBJECTS           =  lt_obj_saved
                      RETURN                  =  lt_return.
        The function BAPI_BUSPROCESSND_SAVE is returning error: The document could not be saved in it_return. I am not getting any other details. What am I doing wrong? Please help!
    Thanks & Regards
    Gopal

    Hi Robert,
       The SPRO settings seems to be fine.
       The problem is that the order is not getting saved whenever there is backward status change. However if I see the item status via tcode "crmd_order" then it actually shows the new status. In other words status is changing but still order is not getting saved.
       When I debugged the code I found that first It has successfully executed the FM CRM_STATUS_CHANGE_EXTERN and then when CRM_ORDER SAVE is called the parameter et_saved_objects is empty. I am passing header Guid in  it_objects_to_save. If order is saved properly then et_saved_objects should be filled with order guid.
    CALL FUNCTION 'CRM_ORDER_SAVE'
                   EXPORTING
                     it_objects_to_save = lt_save
                   IMPORTING
                     et_saved_objects   = lt_saved_obj
                   EXCEPTIONS
                     document_not_saved = 1
                     OTHERS             = 2.
    On further debugging inside CRM_ORDER SAVE I found that the FM CRM_EVENT_PASS_INFO_EXE_OW returns lt_events empty. That means the given guid  is not registered for saving. Why is this so?
      are there objects registered for saving
        call function 'CRM_EVENT_PASS_INFO_EXE_OW'
          exporting
            iv_exetime     = gc_event_exec_time-save_order
            iv_order_guid  = ls_object_to_save
            iv_obj_kind    = gc_object_kind-orderadm_h
          importing
            et_event_calls = lt_events
          exceptions
            others         = 99.
        if lt_events is initial.
          delete ct_objects_to_save.
          continue.
        endif.
       The problem is when the order is not getting saved the status change is not getting transferred to BW or BI.
       What could be the issue?
    Thanks
    Gopal
    Edited by: gopalkrishna baliga on Apr 7, 2011 5:59 AM
    Edited by: gopalkrishna baliga on Apr 7, 2011 6:09 AM

  • BAPI_ACTIVITYCRM_CHANGEMULTI : "The document could not be saved"

    Hi,
    hope somone can help.
    I try to change the status of some activities. For this action i use the BAPI_ACTIVITYCRM_CHANGEMULTI function module. But the only message i get is "The document could not be saved" and nothing happend with the activity status.
    Here is my coding :
    DATA: lv_hits TYPE crmt_portal_hits.
    DATA: lt_activities TYPE TABLE OF crmt_portal_list_businessact,
              wa_activities TYPE crmt_portal_list_businessact.
    DATA: lt_output TYPE TABLE OF y0cra_change_act_status,
              wa_output TYPE y0cra_change_act_status.
    DATA: obj_custom_container TYPE REF TO cl_gui_custom_container,
              obj_result_grid TYPE REF TO cl_gui_alv_grid.
    DATA: lv_ok_code TYPE sy-ucomm.
    SELECTION-SCREEN: BEGIN OF BLOCK a WITH FRAME.
    PARAMETERS: p_test AS CHECKBOX DEFAULT 'X'.
    SELECTION-SCREEN: SKIP 1.
    PARAMETERS: p_usr TYPE crmt_portal_search_businessact-bu_partner OBLIGATORY.
    PARAMETERS: p_datefr TYPE crmt_portal_search_businessact-from.
    PARAMETERS: p_dateto TYPE crmt_portal_search_businessact-to.
    SELECTION-SCREEN: SKIP 1.
    PARAMETERS: p_oldsta TYPE crmt_portal_search_businessact-status OBLIGATORY.
    PARAMETERS: p_newsta TYPE crmt_portal_search_businessact-status OBLIGATORY.
    SELECTION-SCREEN: END OF BLOCK a.
    AT SELECTION-SCREEN.
      IF p_oldsta = p_newsta.
        MESSAGE text-m01 TYPE 'E'.
      ENDIF.
    START-OF-SELECTION.
      PERFORM get_data.
      PERFORM change_data.
      CALL SCREEN 0100.
    END-OF-SELECTION.
    *&      Form  get_data
          text
    FORM get_data.
      REFRESH: lt_output, lt_activities.
    Get Activities
      CALL FUNCTION 'CRM_SEARCH_BUSINESSACTIVITY'
        EXPORTING
          from                   = p_datefr
          to                     = p_dateto
          bu_partner             = p_usr
          status                 = p_oldsta
          max_hits               = 1000
        IMPORTING
          hits                   = lv_hits
        TABLES
          business_activity_list = lt_activities.
    ENDFORM.                    "get_data
    *&      Form  change_data
          text
    FORM change_data.
      DATA: lt_guid TYPE TABLE OF bapibus20001_guid_dis,
                wa_guid TYPE bapibus20001_guid_dis.
      DATA: lt_header TYPE TABLE OF bapibus2000110_header_dis,
                wa_header TYPE bapibus2000110_header_dis.
      DATA: lt_header_changex TYPE TABLE OF bapibus2000110_header_insx,
                wa_header_changex TYPE bapibus2000110_header_insx.
      DATA: lt_status TYPE TABLE OF bapibus20001_status_dis,
                wa_status TYPE bapibus20001_status_dis.
      DATA: lt_status_change TYPE TABLE OF bapibus20001_status_ins,
                wa_status_change TYPE bapibus20001_status_ins.
      DATA: lt_status_changex TYPE TABLE OF bapibus20001_status_insx,
                wa_status_changex TYPE bapibus20001_status_insx.
      DATA: lt_header_change TYPE TABLE OF bapibus2000110_header_ins,
                wa_header_change TYPE bapibus2000110_header_ins.
      DATA: lt_return TYPE TABLE OF bapiret2,
                wa_return TYPE bapiret2.
      DATA: lv_status_new TYPE string,
                lv_status_old TYPE string.
    Set status for changing activity
      IF p_newsta = 'OPEN'.
        lv_status_new = 'E0001'.
        lv_status_old = 'E0003'.
      ELSEIF p_newsta = 'CLOS'.
        lv_status_new = 'E0003'.
        lv_status_old = 'E0001'.
      ENDIF.
      LOOP AT lt_activities INTO wa_activities.
    Set output data
        MOVE-CORRESPONDING wa_activities TO wa_output.
        wa_output-light = '3'.
        wa_guid = wa_activities-guid.
        APPEND wa_guid TO lt_guid.
    Get Activity detail
        CALL FUNCTION 'BAPI_ACTIVITYCRM_GETDETAILMULT'
          TABLES
            guid   = lt_guid
            header = lt_header
            status = lt_status.
        IF sy-subrc IS INITIAL AND p_test <> 'X'.
    Set header data
          READ TABLE lt_header INTO wa_header
          INDEX 1.
          MOVE-CORRESPONDING wa_header TO wa_header_change.
          wa_header_change-mode = 'B'.
          wa_header_change-handle = '0001'.
          APPEND wa_header_change TO lt_header_change.
          APPEND wa_header_changex TO lt_header_changex.
    Set status data
          LOOP AT lt_status INTO wa_status.
            wa_status_change-ref_guid = wa_status-guid.
            wa_status_change-ref_handle = wa_header_change-handle.
            wa_status_change-ref_kind = wa_status-kind.
            wa_status_change-status = wa_status-status.
            wa_status_change-activate = wa_status-active.
            wa_status_change-user_stat_proc = wa_status-user_stat_proc.
            IF wa_status-status = lv_status_old.
              wa_status_change-status = lv_status_new.
              wa_status_changex-status = 'X'.
            ENDIF.
            APPEND wa_status_change TO lt_status_change.
            APPEND wa_status_changex TO lt_status_changex.
            CLEAR: wa_status, wa_status_change, wa_status_changex.
          ENDLOOP.
    Change activity
          CALL FUNCTION 'BAPI_ACTIVITYCRM_CHANGEMULTI'
            TABLES
              header  = lt_header_change
              headerx = lt_header_changex
              status  = lt_status_change
              statusx = lt_status_changex
              return  = lt_return.
          READ TABLE lt_return INTO wa_return
          WITH KEY type = 'E'.
          IF sy-subrc IS INITIAL.
            wa_output-message = wa_return-message.
            wa_output-light = '1'.
            CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
          ELSE.
            CALL FUNCTION 'BAPI_ACTIVITYCRM_SAVE'
              TABLES
                objects_to_save = lt_guid
                return          = lt_return.
            READ TABLE lt_return INTO wa_return
            WITH KEY type = 'E'.
            IF sy-subrc IS INITIAL.
              wa_output-message = wa_return-message.
              wa_output-light = '1'.
              CALL FUNCTION 'BAPI_TRANSACTION_ROLLBACK'.
            ELSE.
              CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.
            ENDIF.
          ENDIF.
        ENDIF.
        APPEND wa_output TO lt_output.
        REFRESH: lt_guid, lt_status, lt_return, lt_header, lt_header_change,
                 lt_status_change, lt_status_changex, lt_header_changex.
        CLEAR: wa_activities, wa_guid, wa_output.
      ENDLOOP.
    ENDFORM.                    "change_data
    *&      Form  init_screen
          text
    FORM init_screen.
      DATA: wa_layout TYPE lvc_s_layo.
      IF NOT obj_custom_container IS BOUND.
        CREATE OBJECT obj_custom_container
          EXPORTING
            container_name = 'CUSTOM_CONTAINER'.
        CREATE OBJECT obj_result_grid
          EXPORTING
            i_parent = obj_custom_container.
    Set grid layout
        wa_layout-cwidth_opt = 'X'.
        wa_layout-excp_fname = 'LIGHT'.
        IF p_test = 'X'.
          wa_layout-grid_title = text-t01.
        ENDIF.
        CALL METHOD obj_result_grid->set_table_for_first_display
           EXPORTING
           i_buffer_active               =
           i_bypassing_buffer            =
           i_consistency_check           =
             i_structure_name              = 'Y0CRA_CHANGE_ACT_STATUS'
           is_variant                    =
           i_save                        =
           i_default                     = 'X'
             is_layout                     = wa_layout
           is_print                      =
           it_special_groups             =
           it_toolbar_excluding          =
           it_hyperlink                  =
           it_alv_graphics               =
           it_except_qinfo               =
           ir_salv_adapter               =
          CHANGING
            it_outtab                     = lt_output
           it_fieldcatalog               =
           it_sort                       =
           it_filter                     =
         EXCEPTIONS
           invalid_parameter_combination = 1
           program_error                 = 2
           too_many_lines                = 3
           others                        = 4
      ENDIF.
    ENDFORM.                    "init_screen
    *&      Module  PBO_0100  OUTPUT
          text
    MODULE pbo_0100 OUTPUT.
      SET PF-STATUS '0100'.
      PERFORM init_screen.
    ENDMODULE.                 " PBO_0100  OUTPUT
    *&      Module  PAI_0100  INPUT
          text
    MODULE pai_0100 INPUT.
      CASE lv_ok_code.
        WHEN 'BACK'.
          LEAVE TO SCREEN 0.
        WHEN 'EXIT'.
          LEAVE PROGRAM.
      ENDCASE.
    ENDMODULE.                 " PAI_0100  INPUT
    Regards,
    Anton

    Hi ,
    i am also haveing same problem can u help me
    Regards,
    Tanveer

  • The document could not be saved. There was a problem reading this document (114).

    After adding some sticky notes to a PDF in Adobe Reader i went to save it and it comes up with "The document could not be saved. There was a problem reading this document (114)." and will not let me save it. Please can you advise if there is anyway of saving this document with the sicky notes in?

    The problem is most likely document corruption. Try to work on a new copy from the original source.

  • Error while saving interactive pdf form:The document could not be saved.

    Hello,
    Can anyone please help me here.
    Not able to save the pdf form.
    I have interactive form which contains static fields,text fields,Document digital signature and a submit button.
    After filling and signing the form it will ask for saving the form.But saving is giving error.
    Error : The document could not be saved.There was a error reading the document(26).
    Can anyone please tell me why i am getting this error.
    Thanks in advance,
    Menaka.H.B

    Hello,
    Integrated into WD application means -> Interactive form generated in SFP transaction is used in abap webdynpro application.
    Offline scenarion -> Since it is an interactive form, user will fill the form offline and submit it by email.From the webdyn pro appliaction user will download the form to the local desktop.Fills it offline and submits the form.
    Now the interactive form generated directly from sfp tcode is working fine.I can fill the form,Sign it, save it and submit the form.
    But the form downloaded from the WD application cannot be saved and is not allowing to dogitally sogn the form.
    Its giving error The document could not be saved. there was a problem reading the document(26).
    Thanks and Regards,
    Menaka.H.B

  • The document could not be saved. A file I/O error has occurred

    Hello,
    I have scanned PDF files varying in size from < 1,000 pages to > 5,000 pages. I seem to experience this issue on and off on various files regardless of the size. The issue is when I OCR the pdf using Adobe Acrobat X Pro, when it's completed the OCR process and I go to save it errors out with: "The document could not be saved. A file I/O error has occurred"
    I have tried:
    1. Saving to local hard drive
    2. Saving to network drive
    3. Renaming file and repeating steps 1&2
    4. File/Save as and reducing (but it won't allow me to do so without saving first, lol)
    Any thoughts? Thanks so much.
    Phil
    System specs:
    Windows 7 Professional
    16 gb RAM
    500Gb Hard drive (409gb free)
    Adobe Acrobat X Pro
    Message was edited by: bldfb024  (system specs included at bottom)

    No it is from a disk drive.
    Robb Hanke
    [signature deleted by host]

  • Error message "The document could not be saved. This file is already open" when trying to complete an electronic signature.

    Running Adobe Acrobat Professional 10.1.0. I cannot upgrade to newer version because several applications were already tested on this version.
    When trying to complete an electronic signature, my users receive the error message ""The document could not be saved. This file is already open".  When they close and open the file again to try to sign again they find a corrupted electronic signature.  Instead of a clean signature with the box colored in light blue they see their signature with the embedeed message Click Here to Verify & Sign with the box colored in grey.
    We turned off antivirus in the Sharefolder where the forms are stored and nothing.  We turned off the antivirus on the client and nothing.  We stored the files in another server and nothing.  One workaround is saving the file in the desktop, signing it, and then back to the Sharefolder.  Another is saving the file with a different file name.
    I've searched and the only similar thing was caused by the Windows Preview Pane.  See Information Transmogrification: Adobe Acrobat saving a file does not work, displays “File may be read-only”.  No luck with this one too.
    Is definitively an intermittent problem.  The users that experience the problem experience it intermittently.
    This started to happen when we move our computers to Windows 7.
    Any ideas?

    Correction on Question:
    This is a web application and the users need to be able to load the editable .pdf form from the website, edit it and submit it back to the website from within Internet Explorer.
    Users began getting the error message:
    'The document could not be saved. This file is already open.'
    last Friday after having no problems prior to this. Some users can edit the editable .pdf forms on the website and save the file with the same name to the website. Some get the error mentioned in the subject. 
    We really need help getting this resolved.
    Sandy Martin

  • When I try to save a doc to my server I sometimes get this: The document could not be saved. There was a Macintosh system error (-5000). What does it mean?

    When I try to save a doc to my server I sometimes get this: The document could not be saved. There was a Macintosh system error (-5000). What does it mean?

    What kind of file are you saving, and what sort of clientserver setup do you have?
    If you're using MS Office, it doesn't play nice with OS X Server, particularly with network homes.

  • I keep getting "The document could not be saved. A file I/O error has occurred."

    Everytime I try to save a PDF file in Reader X... "save as...PDF" I get the "The document could not be saved. A file I/O error has occurred."
    When I save it "save as...Text" is saves.

    No it is from a disk drive.
    Robb Hanke
    [signature deleted by host]

  • The document could not be saved. The server said: "The operation failed because an unexpected error occurred. (Result code 0×80020005)" Please ensure you have completed all required properties with the correct information and try again.

    I am having problems  saving documents back to SharePoint when any of the document properties (metadata columns) are set to be "managed metadata". The check-in/save fails with error:
    The document could not be saved. The server said:
    “The operation failed because an unexpected error occurred. (Result code 0×80020005)”
    Please ensure you have completed all required properties with the correct information and try again.
    I have seen similar threads that suggest this is a known issue with this version of Acrobat but I would like conformation from Adobe that this is a known issue and whether it is fixed in a newer version?
    Adobe Acrobat version 10.1.13
    SharePoint 2010

    Hi quodd,,
    We are sorry for the issue being faced by you. I need some information from you so that I take further steps:
    1. Which Adobe product are you using Acrobat or Adobe reader- what is the complete version?
    2. How are you opening and saving the PDF, the exact workflow?
         Are you doing it from within Adobe Reader/Acrobat application or opening it from browser, doing changes and saving it using browser itself.
    3. Can you try to save a PDF to library with Custom template and managed metadata columns using browser directly.
    4. Please verify that columns name do not contain spaces or some other special characters.
       Can you try to save PDF to library with Custom template and just a single managed metadata column  with a simple name
    Thanks,
    Nikhil Gupta

  • Adobe Acrobat Pro XI 11.0.06 when I reduce file size or try to optimize, I get this error: The document could not be saved. A number is out of range. I do the exact same thing every month and it works. I did it a few days ago and it worked. I receated the

    Adobe Acrobat Pro XI 11.0.06 when I reduce file size or try to optimize, I get this error: The document could not be saved. A number is out of range. I do the exact same thing every month and it works. I did it a few days ago and it worked. I receated the pdf, I renamed it. tried to do it before I imported more pages. no go. the 16 mg pdf will normally reduce to 5 or 6

    Hi,
    Are you facing the issue with any pdf file?
    Please try updating Acrobat to 11.0.7 and check.
    You might also want to repair Acrobat and see.
    Regards,
    Rave

  • The document could not be saved. an unexpected network error occurred

    I have several users on a terminal server that access a PDF from a file server. This PDF has many fillable fields like Name: with an empty text box next to it.
    Sometimes when the users open this PDF everything is missing except the fillable text fields. If they try to save the file they get the error in the subject of this ticket:
    the document could not be saved. an unexpected network error occurred
    Obviously, this sounds like a networking error, but 2 things.
    1) The terminal server and the file server on both virtual servers on the same host, using the same SAN. Very unlikely to have a networking error.
    2) This doesn't happen to every, it seems to be only affecting 3 of about 25 right now, and it is not all the time.
    Any thoughts? I have checked to see if there were any hidden lock files, but that wasn't it. Google-fu turned up nothing.
    Thanks for your help

    Hey jdorimoto,
    Could be please confirm if you are using Adobe Reader or Acrobat (what version) to open a PDF form.
    What version of OS are you using?
    Try saving the form to any other location with administrative privileges and then check.
    Hope to get your response.
    Regards,
    Anubha

  • The document could not be saved. There is error reading the document(23).

    HI ,
    Im getting error : the document could not be saved. There is error reading the document(23).
    Had tried de-select "Save As Optimizes for Fast Web View". error still persist.
    Pls help. Thanks

    Hi,
    I am moving your posting at Acrobat.com forum to Acrobat forum.
    Hisami

  • The document could not be saved.  Write error.

    I have a portfolio with a OneNote section embedded in the portfolio.  When I attempt to save the document, I get an error message stating, "The document could not be saved.  Write error."  The document is stored on a network drive.  Other users are able to make edits and save.  I am using Acrobat x, Windows 7, and SharePoint 2010.  I am unable to find any solutions on the web.

    *Bump*

  • The document could not be saved error when Saving to a SharePoint Document Library

    I am having an error when opening and commenting on Adobe PDF's that are stored in SharePoint 2010. When I attempt to save a PDF I have commented on I get the following error:
    The Document could not be saved. The server said:
    "The operation failed because an unexpected error occurred. (Result code: 0x80020005)"
    This seems to happen in a Document Library that is based on a custom template with Managed Metadata columns, when we remove the columns it seems to work and when we create a library with a standard document library template and manually add the manage metadata columns it also works fine.
    We would make this change to all document libraries where this issue occurs however this template is applied to 100's of libraries with thousands of documents stored in them. Is there anything we can look at to attempt to resolve this issue?
    Word, Excel, PowerPoint, etc. documents seem to work fine in these libraries.

    Hi quodd,,
    We are sorry for the issue being faced by you. I need some information from you so that I take further steps:
    1. Which Adobe product are you using Acrobat or Adobe reader- what is the complete version?
    2. How are you opening and saving the PDF, the exact workflow?
         Are you doing it from within Adobe Reader/Acrobat application or opening it from browser, doing changes and saving it using browser itself.
    3. Can you try to save a PDF to library with Custom template and managed metadata columns using browser directly.
    4. Please verify that columns name do not contain spaces or some other special characters.
       Can you try to save PDF to library with Custom template and just a single managed metadata column  with a simple name
    Thanks,
    Nikhil Gupta

Maybe you are looking for