PDF Error in Adobe In Design

Hello
Please help me, when I export a file on In Design to Print Ready PDF. The PDF Saves and opens fine on my Computer.
However when i email it to anyone the PDF Comes up with errors.
What could be the problem?
Regards
Asief
eBucket

Error message:
"There is a problem With Adobe Acrobat/Reader. Please exit Adobe Acrobat/Reader and try again."
They are using Adobe Acrobat Reader, its not just 1 person, its everyone that uses Adobe Acrobat Reader thats getting the error.
If they email back to me i get the error as well.
Would it my PC that is generating the error or my email programme?

Similar Messages

  • File does not begin with '%pdf' error with adobe reader 10.1.5 onwards

      In our web application we are using activePDF toolkit (3rd party component) to fill up carrier forms on the fly which are PDF files.
    The output file processed by the above library works fine when opened with adobe reader 8, 9 and10 on end user’s browser (IE); however, it gives below error when opening with adobe reader 11.
    Till now, we have tried different settings at IIS level, Internet explorer e.t.c. suggested on different internet posts. However, we are still facing the problem.
    While analyzing this we have come across following link
    http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html
    According to this adobe 10.1.5 onward file should only start with "%pdf". If file start with other than this we get file corrupted message.
    Before we can communicate this message to client we want to confirm this for experts. Please let me know my assumption is right?

    Rahti - i'm having the same issue but I not familiar with the steps outlined in the Adobe link below
    http://helpx.adobe.com/acrobat/kb/pdf-error-1015-11001-update.html
    Would you be able to help with how I can navigate to this on my PC to correct it for me.
    Thanks.

  • Populate a PDF done with Adobe Livecycle Designer

    I have a pdf from an institution and I have been asked to populate it directly with data saved in an excel file. I have found that the pdf was done with adobe livecycle designer and with that program I can see the name of the fields in the form.
    The pdf can be found in:
    https://sedeelectronica.bde.es/f/websede/content/SPA/Form_TRA_clientes.pdf
    I have thought to use a VB macro in the excel file to populate the pdf. I have been searching on Internet but by now, I am only able to read the values of the fields, but I can't change them. I know that the code below doesn't work with XFA Forms, but I have read a lot of documentation and I can't find anything else.
    Here is the code:
    Set gApp = CreateObject("AcroExch.app")
    Set avDoc = CreateObject("AcroExch.AVDoc")
    If avDoc.Open(FileNm, "") Then
       Set pdDoc = avDoc.GetPDDoc()
       Set jso = pdDoc.GetJSObject()
    jso.Getfield("FrmSolicitudTransferenciaEuros[0].FormContent[0].ordena nte[0].datosOrdenanteExterno[0].ordenante[0]").Value  = "new value"
        pdDoc.Save 1, FileNm
        pdDoc.Close
    End If
    avDoc.Close (True)
    Can anybody write an example explaining how to do that with XFA?
    Thank you in advance.

    You might want to instead use an XML schema to map cells in your Excel spreadsheet to fields in your form. Then you would just export the XML data from your spreadsheet and import it into your form to populate the fields.
    That should get you started. Refer to Excel and LiveCycle Designer documentation for further details.
    Kyle

  • Error 1009, Adobe Livecycle Designer Guide (can't open Form Guide)

    Hi,
    I'm using Windows XP and Adobe Livecycle Designer version: 8.2.1.3144.471865
    I can't open the Form guide I've got an error '1009' (see the details on attached files).
    Do anyone know what it is + and how to fix it ?
    Thanks for your responses

    Hi Chintan
      This resolve my problem, i don´t know what´s happend with the Adobe LiveCycle Designer, i imagine that is not a stable version yet.
    Thnks again
    Josué Cruz

  • SMARTFORM GUI_DOWNLOAD PDF error opening Adobe document

    When attempting to open Adobe document from Smartform converted to pdf using CONVERT_OTF and GUI_DOWNLOAD I get error.  The abap completed each step with no errors and oddly the final pdf file created to PC was either 10 or 15 Mb even.  The 15Mb version when downloaded to network is 17.867 Mb downloaded in background so it is obvious something is wrong.
    It should be
    Note 1107236 regarding size is not applicable as we are at SAP BASIS SP19 and this is not applicable.
    Step 1.      
            CALL FUNCTION 'CONVERT_OTF'
              EXPORTING
                FORMAT                = 'PDF'
              IMPORTING
                BIN_FILESIZE          = PDF_SIZE
                BIN_FILE              = PDF_DATA
              TABLES
                OTF                   = LT_OTFDATA[]
                LINES                 = L_DUMMY
              EXCEPTIONS
                ERR_MAX_LINEWIDTH     = 1
                ERR_FORMAT            = 2
                ERR_CONV_NOT_POSSIBLE = 3
                OTHERS                = 4.
    Step2. 
    Binary download table
            LV_VAR = PDF_SIZE DIV 1024.
            LV_VAR = LV_VAR + 1.
            DO LV_VAR TIMES.
              LV_VAR_FIRST = LV_VAR_FIRST + 1024.
              IF LV_VAR_FIRST LE PDF_SIZE.
                LV_VAR_FIRST = LV_VAR_FIRST - 1024.
                MOVE PDF_DATA+LV_VAR_FIRST(1024) TO LINE_BIN-DATA.
              ELSE.
                LV_VAR_FIRST = LV_VAR_FIRST - 1024.
                LV_VAR_LAST  = PDF_SIZE - LV_VAR_FIRST.
                MOVE PDF_DATA+LV_VAR_FIRST(LV_VAR_LAST) TO LINE_BIN-DATA.
              ENDIF.
              LV_VAR_FIRST = LV_VAR_FIRST + 1024.
              APPEND LINE_BIN TO DATA_TAB_BIN.
            ENDDO.
    Step 3.
                 CALL FUNCTION 'GUI_DOWNLOAD'
              EXPORTING
                FILENAME                = FNAME
                FILETYPE                = 'BIN'       " BIN
                CODEPAGE                = ZCODEPAGE   " issue 12869 02/10/2009 - 4110 is RU
              IMPORTING
                FILELENGTH              = LENGTH
              TABLES
                DATA_TAB                = DATA_TAB_BIN
              EXCEPTIONS
                FILE_WRITE_ERROR        = 1
                NO_BATCH                = 2
                GUI_REFUSE_FILETRANSFER = 3
                INVALID_TYPE            = 4
                NO_AUTHORITY            = 5
                UNKNOWN_ERROR           = 6
                HEADER_NOT_ALLOWED      = 7
                SEPARATOR_NOT_ALLOWED   = 8
                FILESIZE_NOT_ALLOWED    = 9
                HEADER_TOO_LONG         = 10
                DP_ERROR_CREATE         = 11
                DP_ERROR_SEND           = 12
                DP_ERROR_WRITE          = 13
                UNKNOWN_DP_ERROR        = 14
                ACCESS_DENIED           = 15
                DP_OUT_OF_MEMORY        = 16
                DISK_FULL               = 17
                DP_TIMEOUT              = 18
                FILE_NOT_FOUND          = 19
                DATAPROVIDER_EXCEPTION  = 20
                CONTROL_FLUSH_ERROR     = 21
                OTHERS                  = 22.

    bin_filesize            = PDF_SIZE must be added as parm to function GUI_DOWNLOAD.

  • Errors removing adobe cs3 design premium

    I can't remove my windows (XP 64 Bit) copy of CS3 Design Premium as I keep getting an error message. I'm attempting to remove CS3 so I can ginstall a trial of Photoshop CS5.
    Any help is appreciated.
    Thanks in Advance!

    Bob -- thanks for taking the time to assist me with my XP 64Bit CS3\CS5 problem.
    I was attempting to uninstall CS3 because CS5 will not install. I've also got a  couple of little plugin niggles so things are kinda mussed up.
    Therefor I want to deactivate my CS3 then install it on my laptop.
    I'm also building a new desktop with 64 Bit Windows 7, a quad core & a whole pile of ram. Thagt will become mt CS5 machine.
    Regardless I'm kinda stuck because I can't get CS3 to uninstall nor can I hget CS5 \Photoshop CS5 to install

  • How to process (populate & merge) XFA PDF Forms using Adobe library in Java

    We have the XFA Forms (.pdf) created in Adobe LiveCycle designer 8.2 ES. We have the following requirement :
    1. We need to populate data in those forms using standalone Java programs.
    2. We need to merge the populated forms and create a single PDF out of these forms, using standalone Java programs.
    Can both of these be done using Adobe PDF Library or Acrobat SDK?
    What is the difference between Adobe PDF Library or Acrobat SDK?
    We already have the licensed version of Adobe Acrobat Professional 9 with LiveCycle Designer 8.2 ES. Where can I get the relevant Adobe Java APIs from?
    Can someone provide some sample code that could be used for the above requirements?
    Please provide your inputs on these. We have been using IText, but facing some limitations in that recently.

    The answer looks quite clear, and the conclusion is essentially simple: Don't use LiveCycle Designer.
    Keep in mind that LiveCycle Designer originated as design tool for the according servers (that's way back in JetForms's days). For reasons I still can follow, Adobe decided to thow this design tool after any Acrobat Pro for Windows buyer. And the forms industry is now suffering from the mess that created.
    Also, keep in mind that the term "Server" is used here as "service providing application".
    Rants aside, was there a specific feature making you chose XFA (aka LiveCycle Designer)? Knowing these reasons can help us finding suitable workarounds.
    HTH.
    Max Wyss.

  • Adobe Forms Designed

    Hi All,
    I need to develop Adobe forms. When I go to Layout editor using transaction SFP, it gives me an error that Adobe Forms designer needs to be installed on desktop. I have SAP GUI installed locally on my machine and probably need to install Adobe Forms designer locally on my machine. Does anyone know where I can download this software from? The one available on service.sap.com is for the server not for the desktop.
    Any ideas where I can get it from?
    Thank in advance.

    Hi,
    you need to install Adobe Lifecycle Designer and install it on your desktop. You can download it from service.sap.com Check FAQs of interactive forms
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/library/uuid/2a8a0a37-0301-0010-f794-aecd1bb426e0#q-4
    Cheers

  • Adobe Acrobat 7.0 Pro PC with Windows 7 - error mess "Adobe PDF Printer - not available" Help?

    Just loaded my old Acrobat 7.0 Professional on new PC with Windows 7 - Error message "Adobe PDF Priner not available.  Therefore do not have option of Adobe printer when using Word.
    Any ideas as to what  - if anythjing I can do?

    Hi,
    Technically acrobat 7 not not designed for windows 7 OS. You can try to install the pdf printer manually but it's not guaranteed :
    Click the Windows "Start" menu, select "Control Panel," choose "Hardware and Sound," click the "Add a Printer" link under Devices and Printers.
    Click "Next" and select "Local Printer Attached to This Computer."
    Remove the check from "Automatically Detect and Install My Plug and Play Printer" and click "Next."
    Select "My Documents\\*.pdf (Adobe PDF)" in the port selection drop-down menu and click "Next."
    Select the "Have Disk" option and click the "Browse" button to open a dialog box.
    Select the "AdobePDF.inf" file located in the AdobePDF folder in your Program Files directory under "Adobe" | "Acrobat 9.0" | "Acrobat" | "Xtras."
    Select the first item on the list of Adobe PDF Converter options and click "Next."
    Type "Adobe PDF" in the field for a printer name and click "Next."
    Wait for two minutes for the system to process the drivers and click "Finish" to close the Add a Printer wizard.
    Hope this helps.

  • Adobe LiveCycle Designer ES Error while Connecting to MYSQL ODBC Driver

    Hi
    I'm getting an strange error message when i try to connect a LC PDF form to
    MYSQL DB using MySQL Connector /ODBC 3.51 Driver
    Here is the complete detail how i was trying to build a connection
    string :-
    I Opened a form in Adobe LiveCycle Designer ES2 Ver.9.0.0
    Clicked on Data View Pallete --> New Data Connection --> selected OLEDB Database radio button --> Build a Connection string (clicked on build button) --> selected MS OLE DB Provider for ODBC Drivers (the default selected option ) --> clicked on Next >> button --> Use connection string (radio button) --> Build connection string on clicking Build button --> Select Data Source windows opens --> Clicked on Machine Data Source tab --> created a new data source (with User Data Source) --> Selected the MySQL ODBC Driver (MySQL ODBC 3.51 Driver) --> Clicked on next button and then Finish
    A Connector/ ODBC 3.51.28 - Add Data Source Name window opens up which have the DSN connection details (DSN Name , Server , user , password , database).
    I put all the default details
    After this i got a error message saying that
    Adobe LiveCycle Designer ES has encountered a problem and needs to
    close. we are sorry for the inconvenience
    I tried this number of time and was getting this error message every
    time i try to put the DSN Detail and trying to connect to the DB. This
    was really irritating.
    Can somebody's what's the Issue . Is this a Resource Conflict or
    something else
    P.S :- I am using Adobe LiveCycle Designer ES2 Ver.9.0.0 with Windows XP and MySQL
    Connector /ODBC 3.51 and the DB Connection is working good for MS
    Access( though i don't need MySQL Connector fot this ).
    Any Help would be highly appreciated
    Thanks Alok

    Hi
    I'm getting an strange error message when i try to connect a LC PDF form to
    MYSQL DB using MySQL Connector /ODBC 3.51 Driver
    Here is the complete detail how i was trying to build a connection
    string :-
    I Opened a form in Adobe LiveCycle Designer ES2 Ver.9.0.0
    Clicked on Data View Pallete --> New Data Connection --> selected OLEDB Database radio button --> Build a Connection string (clicked on build button) --> selected MS OLE DB Provider for ODBC Drivers (the default selected option ) --> clicked on Next >> button --> Use connection string (radio button) --> Build connection string on clicking Build button --> Select Data Source windows opens --> Clicked on Machine Data Source tab --> created a new data source (with User Data Source) --> Selected the MySQL ODBC Driver (MySQL ODBC 3.51 Driver) --> Clicked on next button and then Finish
    A Connector/ ODBC 3.51.28 - Add Data Source Name window opens up which have the DSN connection details (DSN Name , Server , user , password , database).
    I put all the default details
    After this i got a error message saying that
    Adobe LiveCycle Designer ES has encountered a problem and needs to
    close. we are sorry for the inconvenience
    I tried this number of time and was getting this error message every
    time i try to put the DSN Detail and trying to connect to the DB. This
    was really irritating.
    Can somebody's what's the Issue . Is this a Resource Conflict or
    something else
    P.S :- I am using Adobe LiveCycle Designer ES2 Ver.9.0.0 with Windows XP and MySQL
    Connector /ODBC 3.51 and the DB Connection is working good for MS
    Access( though i don't need MySQL Connector fot this ).
    Any Help would be highly appreciated
    Thanks Alok

  • I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working"

    I am having a problem opening pdf document.  I get error message: "Adobe Reader has stopped working" then I get Windows is looking on line for a solution, but then my document closes. I tried uninstalling and reinstalling Adobe Reader XI, rebooted my computer but this did not help.  I get the same message. What to do?

    Can you open Reader by itself?  If so, check if disabling Protected Mode improves the situation [Edit | Preferences | Security (Enhanced)].

  • PDF won't open on Mac with Adobe Reader Error message:Adobe Reader could not open

    I have Adobe Reader 10.1.3 for Mac, (10.7.3) and am having problems opening pdfs.  I get an error message: Adobe Reader could not open file name.pdf because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded). The files are not from emails, but are from websites, government sites, professional organizations etc.)  Help! Adobe is no help!

    Manually download the files to your computer (right-click on the url). When the file is downloaded to your computer do you get the same message when you try to open in Reader through the File->Open menu? What about when you open the file in Mac's Preview application?

  • Error  while  reading pdf file using adobe reader 8

    Hi ,
    I am using itextsharp for creating pdf file which contains 300 pages.
    When I tried to open that pdf file in adobe reader 5 , there is no issue . Its opening correctly. But When I 've tried to open it using adobe reader 8 . Its opening the file but I could read upto 156 pages out of 300. I couldn't read beyond that. Its displaying the following error message "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem" , "could not find the XObject named 'Xf2'." .
    Please help me to resolve the issue.
    Thanks,
    Tamil.

    Hi ,
    I am using itextsharp for creating pdf file which contains 300 pages.
    When I tried to open that pdf file in adobe reader 5 , there is no issue . Its opening correctly. But When I 've tried to open it using adobe reader 8 . Its opening the file but I could read upto 156 pages out of 300. I couldn't read beyond that. Its displaying the following error message "An error exists on this page. Acrobat may not display the page correctly. Please contact the person who created the PDF document to correct the problem" , "could not find the XObject named 'Xf2'." .
    Please help me to resolve the issue.
    Thanks,
    Tamil.

  • When I try to open a PDF downloaded from Adobe DC I get an error message:Adobe Acrobat Reader DC could not open 'nrneph.2015.33.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email

    When I try to download a PDF from Adobe DC, I get an error message: "Adobe Acrobat Reader DC could not open 'nrneph.2015.33.pdf' because it is either not a supported file type or because the file has been damaged (for example, it was sent as an email attachment and wasn't correctly decoded)"
    I am using a Macbook Pro, OSX 10.9.5, Safari browser. Previous versions of Adobe Acrobat have worked fine for years.
    WGC

    What's the name of the file you are attempting to open?  Is it "ScreenFlow_4.5.2.dmg"?  If it is the correct name then the message is correct and you are attempting to open a file with DMG files extension and not one with a PDF file extension.  Adobe Reader opens PDF files an not any other file type.

  • Preview Problem: PDF file:Adobe livecycle designer ES 10.0

    Hallo.
    How do I fix  preview problem of a .pdf file that was created with Adobe livecycle designer es 10.0.  version 1.7 ( show on the properties of the file). The file opens normally. No preview in explorer preview pane and change to printing problem too. Need to preview the file before uploading it onto the internet. All updates done: Windows 7, Explorer 11, Java (Javascript enable) Adobe reader XI. and Adobe Reader XI Pro.(Trail version). When in Explorer and using open with:Default program: select software already in stalled on computer: Browse Adobe reader XI (Acrord32.exe: properties show version 11.0.06.70) This will show as Adobe reader 9.4 on the list of programs.

    If you purchased a prior license of Acrobat and have purchased an upgrade to Acrobat XI Pro then you are eligible for free LiveCycle Designer upgrade.
    See more information on: http://www.adobe.com/products/acrobatpro/faq.edu.html
    Visit the http://www.adobe.com/go/learn_acr_livecycle_upgrade_en to request an upgrade.

Maybe you are looking for