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

Similar Messages

  • 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. there was a problem reading this document (109)

    Have Vista and get this error msg when trying to save Doc as pdf.  Document created online as result of survey and opens fine, just cannot save it to a file folder for future access.

    If not corrupt, it may be that security is set that does not allow changes. So in that case, adding names and such could not be saved.

  • 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

  • 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

  • 11.0.10 Update Issue -  Problem saving documents - getting message "This document could not be saved.  There was a problem reading this document (21)."  The PDF documents are being created by Esker VSIFax and the problem is only occuring with updated vers

    Our IBM Unix system uses a program called VSIFax (Esker) to create PDF documents such as invoices.  Users that have updated to Acrobat version 11.0.10 can open the PDF but then when trying to save the document the get a message "This document could not be saved.  There was a problem reading this document (21)."  The problem is only occuring with updated version 11.0.10 (11.0.9 works fine).

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • 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.

  • 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.

  • Problem with saving a pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21).

    Need advice on a saving file issue. I'm having problem with saving a .pdf file to computer. Continually get an error message " This document could not be saved. There was a problem reading this document (21). This is new as this error message just recently started to pop-up.

    More information about this issue can be found here:
    https://forums.adobe.com/thread/1672655
    A "quick" fix that worked for me was to uninstall Adobe... then download the base install for Adobe Reader 11.0.
    Then download each of the individual updates and run them sequentially. 
    I've installed back up to the last security update which is version 08 and have been able to do normal Save As operations.
    You will have to disable automatic updates in order to stay at version 08 until Adobe resolves this issue in a later release.
    http://www.adobe.com/support/downloads/product.jsp?product=10&platform=Windows
    Adobe Reader 11.0 - Multilingual (MUI) installer    AdbeRdr11000_mui_Std
    Adobe Reader 11.0.01 update - Multilingual (MUI) installer    AdbeRdrUpd11001_MUI.msp
    Adobe Reader 11.0.02 update - All languages    AdbeRdrSecUpd11002.msp
    Adobe Reader 11.0.03 update - Multilingual (MUI) installer    AdbeRdrUpd11003_MUI.msp
    Adobe Reader 11.0.04 update - Multilingual (MUI) installer    AdbeRdrUpd11004_MUI.msp
    Adobe Reader 11.0.05 security update - All languages    AdbeRdrSecUpd11005.msp
    Adobe Reader 11.0.06 update - Multilingual (MUI) installer    AdbeRdrUpd11006_MUI.msp
    Adobe Reader 11.0.07 update - Multilingual (MUI) installer    AdbeRdrUpd11007_MUI.msp
    Adobe Reader 11.0.08 security update - All languages    AdbeRdrSecUpd11008.msp

  • 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

  • Cannot save error, "This document could not be saved. There was a problem reading this doc...(8)"

    Cannot save file. Get error message, "This document could not be saved. There was a problem reading this document (8)".   What does this mean and how do I fix it?  The file opens normally, so how is there a problem reading this document?

    Hi MarkStabler,
    It appears that your document gets corrupted, try printing the file through Adobe PDF printer and then check the issue.
    Regards,
    Anoop

  • 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

  • Error Message "The document could not be saved. A number is out of range"

    Hello to all,
    I'm working on a G5/10.4.11/Illust CS3/Acrobat 9 and use to generate .pdfs from .ais by using "Save as pdf" function. Either with LowRes profile and HighRes profile. My pdfs are sent to PC users that use to post it them for changes. But when they need to save them, they get the message "The document could not be saved. A number is out of range".
    I know there was a few subject about that but do you have a recent solution to give me to help avoiding this bug ?
    Many thanks in advance !
    Stekc

    As a follow to the above, the problem was related to a file transfer.  The PDFs in question were being transfered from a Unix platform to a Windows Server.  The transfer was defaulting to ASCII or Text and not binary.  Apparently this was never an issue with older versions of Adobe Reader.  Once the transfer was switched to binary, Reader X was able to view the files with no missing pages.  Something was being stripped from the file that Reader X just didn't like.

  • 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

  • When I try to save, I keep getting the message "The document could not be saved. You don't have permission" - even though I am the Administrator and the Get Info displays "Administrator and (me)".

    When I try to save, I keep getting the message "The document could not be saved. You don't have permission" - even though I am the Administrator and the Get Info displays "Administrator" and my_name(me)". Also, when I do a disk permission repair, it always repairs the same applications and files. Last night, I did a disk permission repair twice and both times it took a long time and did the exact same repair both times.

    Disk Utility won't repair your home folder.  Sounds like your home folder permissions are messed up tho.  Try repairing them this way by using Lion Recovery.
    1. Restart Lion, and before you hear the chime, hold down the Command and R keys.
    2. You’ll be at the Repair Utilities screen. Click the Utilities item in the Menu Bar, then click Terminal.
    3. In the Terminal window, type resetpassword and hit Return.
    4. The password reset utility window launches, but you’re not going to reset the password. Instead, click on icon for your Mac’s hard drive at the top. From the dropdown below it, select the user account where you’re having issues.
    5. At the bottom of the window, you’ll see an area labeled Reset Home Directory Permissions and ACLs. Click the Reset button there.
    The reset process takes just a couple of minutes. When it’s done, exit the programs you’ve opened and restart your Mac.
    Good luck
    RM

Maybe you are looking for