Adobe 9 PDF Conversion Error

Hey Guys,
my system at work is a:
Adobe 9 Pro Extended
Word 2007 (German)
Windows XP SP3
I have a document saved with several graphics made from text boxes and the drawing tools from Word 2007. In addition, I have a header that is on some pages overlapped by a white un-transperent text box.
When I save it as .doc and convert it to pdf, using unmodified standard settings, it works perfectly.
However, when I save it as .docx and then convert it to pdf, the overlapped header shows although the textbox is put on top of it. In addition, only text and not graphical elements are to be seen in the pdf.
Has anyone experienced a similar problem? I would be very grateful if you could help me. This seems to be a strange error. The cause must lie somehwere in the settings although this is an out-of-the-box installation..
Thank you very much,
Stefan

Good. That simplifies things a bit and makes sure it may be related to the Adobe PDF printer. I was just keying off WORD 2007 as a potential problem for the export, but that is not the case. It is possible that you need to update the software. WORD typically has updates also and it might be possible that an update would solve the issue. It sounds strange that it is affected by saving as a DOCX file rather than a DOC file. That sure suggests an issue with WORD, but I am not sure.

Similar Messages

  • PDF Conversion Error in Email

    Hi Experts,
    my task is to convert a smartform into pdf & download & email. in two different programs
    download program i converted smartform using 'CONVERT_OTF_2_PDF' and its working fine with no problem.
    and in email program when tried the same one, I have a error as the PDF file is damaged and could not be repaired.
    So I used 'CONVERT_OTF', its working fine and can send emails to external systems with no errors.
    Now my problem is in the email, when i open the attachement, i getting a error in Pdf file.
    "Cannot extract the embedded font Arial. Some characters may not be display or print correctly".
    Please tell me how to close this error.
    Thanks & regards,
    Dileep .C

    hi,
          Report BCS_EXAMPLE_6
          Email documents using PDF based forms
    REPORT bcs_example_6.
    DATA: carr_id TYPE sbook-carrid.
    PARAMETER:      p_custid  TYPE scustom-id DEFAULT 12.
    SELECT-OPTIONS: s_carrid FOR carr_id     DEFAULT 'AA' TO 'ZZ'.
    PARAMETER:      p_email   TYPE adr6-smtp_addr OBLIGATORY.
    DATA: customer          TYPE scustom,
          bookings          TYPE ty_bookings,
          connections       TYPE ty_connections,
          fm_name           TYPE rs38l_fnam,
          fp_docparams      TYPE sfpdocparams,
          fp_outputparams   TYPE sfpoutputparams,
          error_string      TYPE string.
    DATA  ls_formoutput     TYPE fpformoutput.
    DATA  lx_fp_api         TYPE REF TO cx_fp_api.
    data  lp_form           TYPE tdsfname  value 'FP_TEST_03'.
    data  lp_langu          TYPE langu     value 'D'.
    data  lp_countr         TYPE land1     value 'DE'.
    BCS data
    DATA  send_request       TYPE REF TO cl_bcs.
    DATA  text               TYPE bcsy_text.
    DATA  document           TYPE REF TO cl_document_bcs.
    DATA  recipient          TYPE REF TO if_recipient_bcs.
    DATA: bcs_exception      TYPE REF TO cx_bcs.
    DATA  sent_to_all        TYPE os_boolean.
    DATA  pdf_content        TYPE solix_tab.
    DATA  lp_pdf_size        TYPE so_obj_len.
    get data
    SELECT SINGLE * FROM scustom INTO customer WHERE id = p_custid.
    CHECK sy-subrc = 0.
    SELECT * FROM sbook INTO TABLE bookings
             WHERE customid = p_custid
             AND   carrid   IN s_carrid
             ORDER BY PRIMARY KEY.
    SELECT * FROM spfli INTO TABLE connections
             FOR ALL ENTRIES IN bookings
             WHERE carrid = bookings-carrid
             AND   connid = bookings-connid
             ORDER BY PRIMARY KEY.
    Print data:
    First get name of the generated function module
    TRY.
        CALL FUNCTION 'FP_FUNCTION_MODULE_NAME'
          EXPORTING
            i_name     = lp_form
          IMPORTING
            e_funcname = fm_name.
      CATCH cx_fp_api INTO lx_fp_api.
      exception handling
        MESSAGE ID lx_fp_api->msgid TYPE lx_fp_api->msgty
          NUMBER lx_fp_api->msgno
            WITH lx_fp_api->msgv1 lx_fp_api->msgv2
                 lx_fp_api->msgv3 lx_fp_api->msgv4.
        EXIT.
    ENDTRY.
    Set output parameters and open spool job
    fp_outputparams-nodialog = 'X'.   " no print preview
    fp_outputparams-getpdf = 'X'.    " request PDF
    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.
    Set form language and country (->form locale)
    fp_docparams-langu   = lp_langu.
    fp_docparams-country = lp_countr.
    Now call the generated function module
    CALL FUNCTION fm_name
      EXPORTING
        /1bcdwb/docparams  = fp_docparams
        customer           = customer
        bookings           = bookings
        connections        = connections
      IMPORTING
        /1bcdwb/formoutput = ls_formoutput
      EXCEPTIONS
        usage_error        = 1
        system_error       = 2
        internal_error     = 3
        OTHERS             = 4.
    IF sy-subrc <> 0.
      CALL FUNCTION 'FP_GET_LAST_ADS_ERRSTR'
        IMPORTING
          e_adserrstr = error_string.
      IF NOT error_string IS INITIAL.
        we received a detailed error description
        WRITE:/ error_string.
        EXIT.
      ELSE.
        MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno
                WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
      ENDIF.
    ENDIF.
    Close spool job
    CALL FUNCTION 'FP_JOB_CLOSE'
      IMPORTING
        E_RESULT             =
      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.
    ------------ Call BCS interface ----------------------------------
    TRY.
      ---------- create persistent send request ----------------------
        send_request = cl_bcs=>create_persistent( ).
      ---------- add document ----------------------------------------
      get PDF xstring and convert it to BCS format
        lp_pdf_size = XSTRLEN( ls_formoutput-pdf ).
        pdf_content = cl_document_bcs=>xstring_to_solix(
            ip_xstring = ls_formoutput-pdf ).
        document = cl_document_bcs=>create_document(
              i_type    = 'PDF'
              i_hex     = pdf_content
              i_length  = lp_pdf_size
              i_subject = 'test created by BCS_EXAMPLE_6' ). "#EC NOTEXT
      add document to send request
        send_request->set_document( document ).
      ---------- add recipient (e-mail address) ----------------------
        recipient = cl_cam_address_bcs=>create_internet_address(
            i_address_string = p_email ).
      add recipient to send request
        send_request->add_recipient( i_recipient = recipient ).
      ---------- send document ---------------------------------------
        sent_to_all = send_request->send(
            i_with_error_screen = 'X' ).
        IF sent_to_all = 'X'.
          message i022(so).
        ENDIF.
      ---------- explicit 'commit work' is mandatory! ----------------
        COMMIT WORK.
    *            exception handling
    * replace this very rudimentary exception handling
    * with your own one !!!
      CATCH cx_bcs INTO bcs_exception.
        WRITE: text-001.
        WRITE: text-002, bcs_exception->error_type.
        EXIT.
    ENDTRY.

  • Smartfomrs to PDF conversion error

    Dear Experts,
    I have a requirement to convert smart forms to PDF.
    After converting smartforms to PDF, I am getting the following errors.
    1. Special signs like u201C&u201D, are shown as <& > in PDF.
    2. Some line breaks which are in smartforms are not appearing in the PDF.
    (How to handle the same during smartforms to PDF)
    Thanks in Advance.
    sri

    Hi,
    in more than once I´ve experimented the same problem. What I do is to replace the text in my form:
    REPLACE ALL OCCURENCES OF '&gt;'   IN aux_text WITH '"'.
    REPLACE ALL OCCURENCES OF '&lt;'   IN aux_text WITH '"'.
    you can insert a line break like this:
    CL_ABAP_CHAR_UTILITIES=>CR_LF
    but in both cases you must set a break point in your form where the text is processed to find out what´s wrong. It could be that system cannot understand some characters as HTML escape code. This is the case in web development when working with text boxes.

  • PDF conversion error

    Hi all,
    while converting a spool request to PDF through the program RSTXPDFT4, a PDf file is getting generated but with an error of 'Japanese fonts not available'.
    Please suggest a solution if some one has encountered it before.
    thanks

    Hi Arun,
    Contact your Basis team. You will have to upload Japanese Fonts in your system.
    Regards,
    Chetan.
    PS: Reward points if this helps.

  • How fix Explorer 11 PDF Conversion Error Messages - used to work fine!

    Using Win7 and Explorer 11. Acrobat 9.5.xx PDF Reader/Creator.
    Works fine on one PC at home and other PC (same config and settings) gives error message "Could not access Acrobat Web Capture Facility".
    Tried repairing Acrobat 9.5.xx with same error results.
    Suggested solution so I can get back to creating PDFs of Websites??

    Not a reply. Screen shot of error message when trying to convert web page to PDF using Acrobat 9.5.5
    Any suggestions how to repair?
    /Mike

  • When I select "Convert" using the Adobe PDF conversion - I get "Error signing in"

    When I select "Convert" using the Adobe PDF conversion - I get "Error signing in"

    You need the CreatePDF forum

  • I have paid for a year subscription, but all the PDF's I attempt to export to Word give me a "Conversion Error" message, citing that the "file's security settings do not allow export." I want a refund. Adobe, please advise. Thank you.

    I have paid for a year subscription, but all the PDF's I attempt to export to Word give me a "Conversion Error" message, citing that the "file's security settings do not allow export." I want a refund. Adobe, please advise. Thank you.

    Hi la recruiter,
    There are a few types of files that Acrobat can't convert--and PDF files with security applied is one on them. I'm happy to cancel your subscription, if you decide that it's not going to work out for you. Please confirm that you'd like me to proceed with the cancelation, and I'll take care of it right away.
    Best,
    Sara

  • What does the "conversion error" I get when converting a pdf file to Microsoft word?

    What is the "conversion error" I get when converfting a pdf file to aMicrosoft word?

    Adobe reader with export to PDF
    Sent from my iPhone 5
    Marty Kennedy

  • Unable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Plea

    nable to convert pdf to any other format. Tried cloud as well as acrobat reader. Reader error message "unable to contact service" and Cloud message "conversion error". I tried multiple pdf documents and checked security settings on all of them. Help Please!

    Hi skydivingsnowman,
    I'm sorry you're having such trouble using the ExportPDF service. What browser are you using?
    Please try clearing your browser cache, or using a different browser (here's a list of supported browsers:   http://www.adobe.com/acom/systemreqs/.
    Please let me know if that works.
    Best,
    Sara

  • Adobe Acrobat Standard and Pdf Conversion

    I am not sure I am in the correct forum, but I recently purchased Adobe Acrobat 8 Standard and I cannot convert existing Word files, for example, to pdf. A message comes up: "PDF Conversion Failed." And that's it. No explanatory message or suggestion how to correct it.
    I would appreciate any help.
    Thank you!

    Try these steps to see if things are working at all. If they work, then it is a process of going one step at a time until the problem is isolated.
    1. Print a simple file to the Adobe PDF printer with print-to-file selected.
    2. Open the file created in (1) in Distiller and see if the conversion completes.
    If (2) is unsuccessful, you will get errors in the Distiller window indicating the problem. With success, the next step is to check if AcroTray is running, so simply print without using print-to-file. If it does not work, then look for AcroTray.exe in your Distiller folder. This application must be working if the print to Adobe PDF is to work correctly.

  • Please help.  Keep getting a conversion error when trying to convert a PDF to a .docx. Advice?

    Please help.  Keep getting a conversion error when trying to convert a PDF to a .docx. Advice?

    Sara,
    Please see my answers in bold below.
    What browser are you using? Try clearing the cache, or using a different browser. N/A
    Are you converting from within Reader, or directly via the ExportPDF website. Within Reader.I disabled the OCR and this did not work either. Try converting from within Reader, and disable OCR as detailed in this document: How to disable Optical Character Recognition (OCR) when converting PDF to Word or Excel.
    Are you on a networked computer? Make sure that there aren't any firewall/proxy settings that are preventing you from uploading files to the Internet. Not having problems uploading the file--that works fine.
    Make sure the file is within the file-size limit of 100 MB. It is <40.
    I get the error message, "File failed to be converted using Adobe ExportPDF online."
    Thanks for your help in advance.

  • ADOBE LIVECYCLE PDF Generator ES4 Error.

    Hi All,
    While converting .tiff files to pdf files (Through watch folder) it gives this error in the server log file.:
    ALC-BMC-001-001: Unexpected exception while logging BSLJ service
    But the converted files are OK and all the files are getting converted.
    Please guide me with this issue.
    2014-02-06 15:00:43,937 INFO  [com.adobe.service.J2EEConnectionFactoryManagerPeerImpl] (WorkManager(2)-18) Service: Img2PDFSvc resource: ProcessResource@49fe98d9(name=java.exe,pid=0) applying queue wait adjustment of 0s to timeout of transaction: TransactionImple < ac, BasicAction: -3f57f8b5:dd5c:52f354df:27ba status: ActionStatus.RUNNING >. Supplied timeout: 300s, Effective timeout: 300s.
    2014-02-06 15:00:43,937 INFO  [com.adobe.service.J2EEConnectionFactoryManagerPeerImpl] (WorkManager(2)-18) Service: Img2PDFSvc successfully scheduled an interrupt for transaction: TransactionImple < ac, BasicAction: -3f57f8b5:dd5c:52f354df:27ba status: ActionStatus.RUNNING > after 300s.
    2014-02-06 15:00:43,953 ERROR [com.adobe.service.ProcessResource] (RequestProcessor-2) ALC-BMC-001-001: Unexpected exception while logging BSLJ service

    Here is a sample for Tiff to PDF conversion using watched folder : http://help.adobe.com/en_US/livecycle/9.0/samples/ServiceUsageSamplePDFGenConvertTiffToPDF .html
    Thanks,
    Wasil

  • Error message when trying to convert powerpoint presentation to Adobe Acrobat PDF

    When trying to create an Adobe Acrobat PDF file from Powerpoint (save as Adobe PDF from the Print menu), Automator gives the following error message: "an error occurred while saving the PDF file". Currently using version 14.4.6 of Microsoft Powerpoint for Mac, 11.0.09 Adobe Acrobat and OS X Yosemite 10.10.1 on iMac. Also had the same problem previously with Mavericks and Mountain Lion. The problem seems to be the Apple Automator not working correctly with the Acrobat interface. I create Acrobat PDF docs perfectly well on my MacBook Pro (OS X 10.7.5) and am scared to update to the latest version of OS X in case that also affects the ability to create PDFs.
    I have tried using Apple's own PDF creator, and doing this by first creating PS files then converting to PDF, however, many bugs appear in the files, and they are enormous - around 5x the size of Acrobat PDFs, so this is not an option. I have also tried troubleshooting with Adobe to no avail.
    Can anyone help?
    Thanks,
    Jane

    Hi star2111,
    Please tell us a bit more about the error message that you're receiving, and where you're seeing it (in Adobe Reader, or the ExportPDF website?). It will also be helpful to know whether the error occur when just one file, or with any file that you try to convert.
    I look forward to hearing back from you.
    Best,
    Sara

  • I just started a free trial of the Adobe XI product that allows me to create an editable PDF. I'm done creating the form and ready to export it. When I click Export PDF from the File menu, it says Adobe encountered an unexpected error. What am I doing wro

    I just started a free trial of the Adobe XI product that allows me to create an editable PDF. I'm done creating the form and ready to export it. When I click Export PDF from the File menu, it says Adobe encountered an unexpected error. What am I doing wrong?

    Good to know  — there is no such application as "Adobe XI".
    "Adobe" is the name of the company.
    "XI" is indicative of the use of either Acrobat XI or Reader XI.
    Neither Acrobat XI Pro (for which Adobe provides a free, fully functional 30-day trial) nor Adobe Reader XI (the free to download and use PDF viewer that Adobe provides) have  an "Export PDF" entry under "File".
    "Export PDF" only is present in Adobe Reader XI over on the right on the "Tools" panel.
    The "Tools" panel provides a way for a user of Adobe Reader XI to connect to various By Subscription online services (gotta pay eh).
    Export PDF is one of these. A subscription lets you send a PDF file to the online internet service (aka "cloud" service). The service then exports to a supported file format (Word / Excel / ...) and the user selects / directs where the output file is to be saved on the user's local machine.
    Of course to use any of the online subscription services one must have an active (paid up in full) subscription to the service.
    So ---- As described the puzzle pieces don't fit eh.
    What specific Adobe (the company) applications are you using?
    Acrobat XI Pro? Adobe Reader XI? Both? 
    Be well....

  • Adobe PDF Document error pop ups while web surfing

    I have a strange issue with either Adobe Reader or Adobe Acrobat. Randomly while looking at websites or loading a website an Adobe error pops up that says, "The Adobe Acrobat/Reader that is running can not be used to view PDF files in a Web Browser. Please exit Adobe Acrobat/Reader and try agian."  Then after hitting OK a couple times a blank PDF pops up. After closing it another PDF file pops up. Finally after closing the second PDF window does it go away.
    Adobe isn't even open when it happens. Also it happens when just clicking MSN on the favorites. Not even trying to open a PDF in Adobe, and yet this error shows up.
    Please help me because I am very confused by this issue.

    Chrome uses its own PDF viewer, not the Adobe Reader plugin.
    Either use a browser that uses the Adobe plugin, or configure Chrome to use the Adobe PDF plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

Maybe you are looking for

  • Age-wise Material Stock Report

    Dear Guru, Any SAP standard report will show age-wise Material stock. Ex: IF i hv a X material in Stock, i want to know the how many days it was in production and how many days in finished stock like that. <b>Any reports which are similar to Age-wise

  • Report Writer in a Report Tree

    All, I am having a problem migrating a report tree from a 3.1i environment to a 5.0 upgrade. I have been successful with SAP Reports, Custom Z reports and ABAP Queries, but Report Writer reports pose a problem.  To migrate I used the RTTREE_MIGRATION

  • Adobe Presenter 8 Video Creator crashes when publishing

    After capturing a video and demonstration using Presenter Video Creator, I am able to edit the video, choose whether I show talking head, demo, or both.  The program seems to record everything as I would expect.  However, when I attempt to publish, i

  • Can Multiclip Feature  Display All Clips Simultaneously In Final Video?

    I want to use the multiclip feature not only to cut from one angle to another, but also to display all the 4 angles simultaneously on occasions. I know I can display 4 tracks by stacking them and using the Motion sliders to cut each one down to a qua

  • Linksys Web pg has me hostage

    I went to the Linksys page 192.168.1.1 to check the statis of my router and download the firmware. Installed firmware and now after 3 weeks I finally have No red X through my little computer icon bottom right screen and I connect to the internet ALMO