Header problem during convert Word to PDF through FOP

Hi, below are the senarios that I face the problem,
1. I have converted a combination of XML file (contains data only) and XSL file ( containts template only ) into Microsoft Word file. This is done by using xalan as the transformer library.
2. This converted Microsoft Word file will be converted into XSL-FO format.
3. By applying FOP(Implementation-Version: 0.20.5) library, the converted Microsoft Word file ( in XSL-FO format ) has been converted into PDF file successfully.
4. The problem is, althought there is file header at the Microsoft Word document, but the converted PDF file's file header is missing.
May I know how to solve the problem?

What version of Word are you running? If you open Word, do you see the Acrobat PDFMaker Add-on Ribbon? Here is what it looks like in Office 2010. If you have this try creating the PDF from the Acrobat ribbon.

Similar Messages

  • Hyperlink problem when converting Word to PDF

    Hi everyone.
    I am using Adobe Acrobat 7.0 Standard version 7.1.4 on a Windows 2000 environment.
    I am using Word XP/2002 SP3.
    I have a couple of problems when converting Word to PDF.
    When converting a long link which is in 2 lines, PDF just takes one line into account, not considering the whole link
    When I have hyperlinks that links to a web page, the link works fine in Word but in pdf, it gets the few words after the url address making the link not work.  For example.  I have a hyperlink that http://www.google.com/ and after this I have the words: "This is a sample text".  The hyperlink in pdf would then become http://www.google.comThisisasampletext
    Do you have any ideas how I can correct this?
    Thanks.

    To get the cross references, you have to use Convert to PDF (PDF Maker part of the Acrobat product). However, you first need to go to the print menu and set the printer to the Adobe PDF printer. Close the print menu and then do a reflow and link update of the document (ctrl-A, then F9 I think). This is needed to get the links correct since WORD reflows the document based on the printer (problem with them going to the wrong place).
    Printing to the Adobe PDF printer (the step of print to file is not needed, just print to the printer and the rest is automatic) does not include the links. PDF Maker is a PreProcessor for the Adobe PDF printer that adds PDF Marks to the PS file before it is sent to Distiller (OK, the printer when used normally creates a PS file and then invokes Distiller to complete the process - your steps did with the Adobe PDF printer is the same process done manually).
    Summary:
    1. Fix document after setting the printer to Adobe PDF.
    2. Use PDF Maker (create PDF button)

  • Problem in converting XML to PDF through Servlet

    Hi friends,
    I've a button in a page which should open a pdf from an existing xml. I've used the fop mechanism and servlet to do that. I've to deploy that in an unix/solaris environment. When i'm trying to do that it's giving me an exception at the place where it's trying to convert the file(transformer.transform(src,res)) It's as below..
    Thu Oct 20 14:43:47 IST 2005:<E> <ServletContext-General> Servlet failed with Exception
    java.lang.InternalError: Can't connect to X11 window server using ':0.0' as the value of the DISPLAY variable.
    at sun.awt.X11GraphicsEnvironment.initDisplay(Native Method)
    at sun.awt.X11GraphicsEnvironment.<clinit>(X11GraphicsEnvironment.java:54)
    at java.lang.Class.forName0(Native Method)
    at java.lang.Class.forName(Class.java:115)
    at java.awt.GraphicsEnvironment.getLocalGraphicsEnvironment(GraphicsEnvironment.java:53)
    at java.awt.image.BufferedImage.createGraphics(BufferedImage.java:1006)
    at org.apache.fop.svg.PDFGraphics2D.<init>(PDFGraphics2D.java:1401)
    at org.apache.fop.render.pdf.PDFRenderer.renderSVGDocument(PDFRenderer.java:638)
    Some one told me that there are some problems with unix env and graphics. If anyone had ever seen this problem before, pls reply. Thanks in advance.

    Hi Anil,
    Please mail across your outbound agreement export, ecs, XSD and XML which you are using for testing to my id (in my profile)
    Regards,
    Anuj

  • Converting Word to PDF through "print"...

    Hi there,
    Every year I create a Registration Form in MS Word for my netball club. In Word it is a normal document, however previously I have always gone to "print" and printed it to Adobe PDF but before printing it I have gone to "pages per sheet" and selected 2 (as I prefer it to fit to of my A4 portrait word pages into a side by side landscape on the pdf).
    I can't do this anymore! I can pdf like normal through SAVE AS but that doesn't have a 2 to a page option.
    Every time I print to Adobe PDF it sits in the print jobs and never finishes.
    I don't know what to do. Could someone PLEASE help!?!?!          

    Hi
    Can you please mention your OS version, Office version and Acrobat version. Also which version worked correctly for you?

  • I am having a problem converting word onto PDF . PDF into word.Please help .I am signed and paid to Feb 2015

    Can someone advise me why I am having this problem

    Always in the past .I have my Word Document on screen and then I go to 
    Publish and it atomatically PDF the doc.
    The same if I have a PDF to convert to word. I have the PDF on screen and 
    to the right of my screen it will say Convert .I press on convert it
    converts to  word
    In a message dated 12/17/2014 10:01:32 A.M. Eastern Standard Time, 
    [email protected] writes:
    I  am having a problem converting word onto PDF . PDF into word.Please help
    .I am signed and paid to Feb 2015
    created by florencejohn (https://forums.adobe.com/people/florencejohn) 
    in  Adobe Acrobat.com Services - View the full  discussion
    (https://forums.adobe.com/message/7023171#7023171)

  • Problem in converting spool to pdf

    Hi Experts,
    I want an internal table to be converted to the PDF. For this RSPO_OPEN_SPOOLREQUEST, RSPO_WRITE_SPOOLREQUEST and RSPO_CLOSE_SPOOLREQUEST to create the spool. However, somehow the table tsp01 does not gets updated as a result i could not convert the data to PDF. Can any one help me how this problem could be solved.
    Thank.
    Warm Regards,
    Harshad.

    Hi,
    you can refer this sample code.
    DATA: t_otfdata_tab LIKE ITCOO OCCURS 0 WITH HEADER LINE.
    CALL FUNCTION 'CLOSE_FORM'
    TABLES
    OTFDATA = t_otfdata_tab
    fill the exceptions..
    IF SY-SUBRC = 0.
    ENDIF.
    then pass the t_otfdata_tab to this function module..
    CONSTANTS: c_pdf(03) VALUE 'PDF'.
    PDF File size
    DATA: w_file_size TYPE I.
    Internal Table to hold Form contents in PDF format
    DATA: t_pdfdata_tab LIKE tline OCCURS 0 WITH HEADER LINE.
    for converting. the output format from OTF to PDF
    CALL FUNCTION 'CONVERT_OTF'
    EXPORTING
    FORMAT eq c_pdf
    IMPORTING
    BIN_FILESIZE = w_file_size
    TABLES
    OTF eq t_otfdata_tab
    LINES eq t_pdfdata_tab
    EXCEPTIONS...
    use these links, hope it will be useful to you....
    Problem in converting spool to PDF file
    Problem in converting the spool to PDF.
    Thanks and Regards,
    Ahamed.

  • Just converted word to PDF so that I can save on iPhone and subsequently use. Where is the file??

    Just converted word to PDF so that I can save on iPhone and subsequently use. Where is the file?? I have no idea where it is!! Extremely frustrating and not at all user friendly!! Took my 6.99 British pounds and not a sausage to be had!!

    It sounds like you may have purchased a CreatePDF subscription through safari, using our web interface. If this is the case, the good news is that subscription will also work with the (free) Adobe Reader. Simply install the Reader from the App Store:
    https://itunes.apple.com/us/app/adobe-reader/id469337564?mt=8
    Once installed, you can then use "Open In" from another app like Mail to open the Word document in Adobe Reader. Reader will show the word doc, but it will also show you a message pointing to the "convert" button (A document with an arrow through it in the toolbar). Pressing this button should prompt you to sign into Acrobat.com. Use the same account you used to purchase your subscription and Reader will upload the word document for conversion, placing it in the Acrobat.com and Outbox section of the Reader. Please let me know if you have trouble!

  • Not converting word to pdf

    I installed adobe acrobat 5.0 on window 2000 server but its not converting word to pdf when I click by toolbal button system hangs.

    AA5 is not licensed for use in the server mode. As long as Acrobat is not available for use off the server, only local use, you should be OK. Try to print from WORD to the Acrobat Distiller printer. If that does not work, then try printing to file. If that works, then open the file in Distiller to see if you get a PDF. If you do, then AcroTray is not running. It may be that AcroTray will not run properly on W 2000 Server. As I recall, some folks tried with the 2003 server and had problems.

  • When converting word to pdf the cover page of my documet gets page number 1.On the original the numb

    When converting word to pdf the cover page of my documet gets page number 1.On the original the number pages start from the second page.How to keep the original format?

    Michael's reponse is correct. However, as far as I knew, OFFICE 2007 came with printer metrics turned off, meaning it is not supposed to be sensitive to the printer selection. The setting is buried in the options list for compatibility. If it is turned off and a change in printer does affect the result, it would appear just one more of the many things in OFFICE 2007 that MS messed up. The latest one for me has been helping students with the messed up equation editor when you want to add equation numbers in a "standard" way. One of the MS employees even wrote a workaround macro for that problem.

  • Problem in converting Spool to PDF file, having non-English characters

    Hi All,
            I have problem in converting Spool to PDF format.
    Scenario : I have a spool which has non-English characters. I am using CONVERT_ABAPSPOOLJOB_2_PDF  FM to perform conversion. But my output is having junk values( ie # ) for non-English characters. Any pointers to solve this issue will be appreciated.
    I even tried with report RSTXPDFT4 , it also gives me the same junk characters.
    Regards,
    Navin.

    Hi All,
            I have problem in converting Spool to PDF format.
    Scenario : I have a spool which has non-English characters. I am using CONVERT_ABAPSPOOLJOB_2_PDF  FM to perform conversion. But my output is having junk values( ie # ) for non-English characters. Any pointers to solve this issue will be appreciated.
    I even tried with report RSTXPDFT4 , it also gives me the same junk characters.
    Regards,
    Navin.

  • I upgraded my plan to 89.00 a year so i can convert word to pdf but it wont let me make changes

    i upgraded my plan to 89.00 a year so i can convert word to pdf. But it won't allow me to make changes. Do i have to pay additional?

    Hi Karen Tennyson,
    May I know is this happening with all files or with a specific file?
    Would you send your PDF document to [email protected] as an email attachment? 
    I will check it from my end.Please add the link to this forum post for reference.
    Regards,
    Florence

  • Word keeps stoping in the middle of converting word to PDF

    I have a windows 7 desktop with office 2013 and adobe XI STD, every time i try to convert word to PDF or convert PDF to Tiff, my word stops working

    I have reinstalled the Adobe and did several repairs, then added adobe reader. when that did not work I reinstalled the Microsoft office 2013, still did not work. When I ran it in administrator it converted fine, so I though maybe permissions, check them and add the user onto the adobe folder, still did not work?????

  • Problem indexings hyphenized words in PDFs

    Hello everyone on this forum
    In the new site we are building, I am using Oracle Text to implement the search functionality.
    I have problems indexings hyphenized words in PDFs.
    The code I used to create the content table and the Oracle Text index, is like follows
    CREATE TABLE JMMC_TST_OracleText( article_id NUMBER PRIMARY KEY
    , desc VARCHAR2(30)
    , doc BLOB DEFAULT empty_blob()
    COMMIT ;
    I populated the doc column from a database column in our CMS, containing a PDF document. Just for testing, also populated it from a PDF file, using TOAD for Oracle 8.6.
    EXEC CTX_DDL.create_preference( 'jmmc_BSJC_lexer2', 'BASIC_LEXER' );
    EXEC CTX_DDL.SET_ATTRIBUTE( 'jmmc_BSJC_lexer2', 'SKIPJOINS', '-' );
    EXEC CTX_DDL.SET_ATTRIBUTE( 'jmmc_BSJC_lexer2', 'CONTINUATION', '-' );
    CREATE INDEX JMMC_TST_INDEX
    ON JMMC_TST_OracleText( doc )
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS ( 'LEXER jmmc_BSJC_lexer2
    STOPLIST CTXSYS.EMPTY_STOPLIST' );
    COMMIT ;
    The following sql
    select ctx_report.describe_index('JMMC_TST_INDEX') from dual ;
    SELECT err_timestamp, err_text
    FROM ctx_user_index_errors
    ORDER BY err_timestamp DESC;
    shows that indexing went without errors, and index was correctly created.
    The word: processo
    (that in the PDF is hyphenized visually as
    ........... pro-
    cesso .....
    ) is indexed as 2 tokens instead of just one token, as the following sql shows
    select token_text
    from dr$JMMC_TST_INDEX$i
    where UPPER(token_text) = UPPER('CESSO')
    or UPPER(token_text) = UPPER('PRO') ;
    The following query returns 1 result
    SELECT SCORE(1), article_id , doc
    FROM JMMC_TST_OracleText
    WHERE CONTAINS( doc, 'pro cesso', 1) > 0 ;
    The following query returns 0 results
    SELECT SCORE(1), article_id , doc
    FROM JMMC_TST_OracleText
    WHERE CONTAINS( doc, 'processo', 1) > 0 ;
    Strange thing is, several months ago I tried this test with the same PDF, and everything went by without any problem.
    The tests were done on different machines, and on both occasions I used Oracle 10.1.0.5.0.
    Looks like I'm overlooking something or maybe some obscure setting (of DB, server or system) is causing the problem.
    Suddenly hyphenized words in PDFs, stopped being indexed correctly.
    Searched in the manuals and in this forum, and could not find a solution. Any help from anyone in this forum ?
    Thanks in advance.

    Hello everybody on this forum
    As the initiator of this thread, I am glad that after some months, someone else is looking at this issue.
    To add/clear to the confusion, I have followed Roger Ford suggestion.
    Here’s the test I ran
    1) Created a minimal test file (using Windows Notepad) with the following content:
    ABC-
    DEF
    Hex view of above file is:
    41 42 43 2D 0D 0A 44 45 46 00
    A B C - . . D E F .
    2) Created test table
    CREATE TABLE JMMC_TST_OracleText(
    article_id NUMBER PRIMARY KEY
    , fmt VARCHAR2(30)
    , doc BLOB DEFAULT empty_blob()
    The main difference to Roger Ford test case is: my content column is a BLOB instead of a VARCHAR2.
    The reason why my doc column is a BLOB, is because the site I’m building, content come from our CMS, and has different types both text and binary (eg Word, PDFs, etc), that I need to index together.
    So I use a mixed-content column in a materialized view, to prepare/consolidate/hold all contents I index.
    3) I inserted 1 row in above table (using TOAD for Oracle 8.6.), putting my minimal test file in the doc column.
    4) Create Preferences and Index
    EXEC CTX_DDL.create_preference( 'jmmc_BSJC_lexer2', 'BASIC_LEXER' );
    EXEC CTX_DDL.SET_ATTRIBUTE( 'jmmc_BSJC_lexer2', 'SKIPJOINS', chr(45) );
    EXEC CTX_DDL.SET_ATTRIBUTE( 'jmmc_BSJC_lexer2', 'CONTINUATION', chr(45) );
    COMMIT;
    CREATE INDEX JMMC_TST_INDEX
    ON JMMC_TST_OracleText( doc )
    INDEXTYPE IS CTXSYS.CONTEXT
    PARAMETERS ( 'LEXER jmmc_BSJC_lexer2
    FILTER CTXSYS.AUTO_FILTER
    STOPLIST CTXSYS.EMPTY_STOPLIST
    FORMAT COLUMN fmt' );
    COMMIT;
    Note: the basic lexer SKIPJOINS and CONTINUATION characters, were set the same as the hyphen character used in test file.
    5) Tokens indexed:
    select token_text from dr$JMMC_TST_INDEX$i
    Shows:
    ABC
    DEF
    6) Filter indexed content and generate a plaintext version:
    create table JMMC_filtertab (
    query_id number
    , document clob
    commit ;
    begin
    ctx_doc.filter( 'JMMC_TST_INDEX', '1', 'JMMC_filtertab', '11', TRUE);
    end;
    Hex view of plaintext version is:
    41 42 43 2D 20 20 44 45 46 00
    A B C - D E F .
    Note that the original end-of-line chars (0D 0A) were replaced by 2 SPACES.
    It looks like the filter replaces end-of-line chars by SPACES, and feeds the lexer, with something like:
    ABC- DEF (instead of: ABC-DEF) ;
    So the poor lexer, sees 2 tokens and has no clue they originally were only one hyphenised token.
    This is consistent with what Meta Link Note 124624.1 - Intermedia Text & Continuation Character ('-') in PDF says.
    7) Just for comparison the result of Roger Ford test (using a VARCHAR column instead of a BLOB) is:
    Hex view of the filtered plaintext version is:
    61 62 63 2D 0D 0A 64 65 66 00
    a b c - . . d e f .
    So the main difference seems to be different filtering behaviour for BLOB or VARCHAR columns, in dealing with end-of-line chars.
    I have also tried other combinations of INDEX/LEXER preferences (i.e. SKIPJOINS/CONTINUATION/FILTER/NEWLINE,etc), and different file types (WORD,PDF) which means I also tested with “true binary content” and different end-of-line chars.
    No matter what I tried, results were all the same: if I index a BLOB column, I’m not able to index hyphenized lines correctly.
    According to the manuals, the CTXSYS.AUTO_FILTER were supposed to deal correctly with mixed-content columns if given the correct information (ie FORMAT COLUMN)
    Hope this triggers a response from someone.
    Thanks to all the people that took time to look at this problem.

  • When converting word to PDF and reducing the size, the formatting changes how can i keep the format but reduce the size?

    When converting word to PDF and reducing the size, the formatting changes how can i keep the format but reduce the size?

    The original file is 32 MB:
    15 MB is images
    15 MB is Content stream
    2 MB is everything else
    After the PDF/A-1B save as:
    The file is 182 MB
    Almost 100% is Images
    It is an architecture portfolio with many complex images.  Is there a setting when I change to PDF/A that can limit the growth of the image files?

  • Error "ALC-DSC-801-000: com.adobe.idp.dsc.pool.service.impl.ServicePoolDoesNotExistException" while converting Word To PDF using GeneratePDFService

    The below Error occurs while converting Word to PDF using GeneratePDFService(Webservices)
    Message
    "ALC-DSC-801-000: com.adobe.idp.dsc.pool.service.impl.ServicePoolDoesNotExistException: Pool for service id GeneratePdfService, major version 1 and minor version 1 does not exist"
    When I am debugging, i can debug till convertPDF2() and it jumps to catch after there.How to overcome this?
    Any help is highly appreciated.
    Thanks,
    Praveen.

    Looks like a configuration issue. Please re run the configuration manager. Also test the PDFG conversion in adminui.
    -Wasil

Maybe you are looking for

  • Fault and Error handling questions

    Hi, I have a few of questions regarding exception handling : 1. Where can I find documentation (i.e. details and when thrown) on all the Standard faults available with BPEL ie. those in http://schemas.xmlsoap.org/ws/2003/03/business-process/" and htt

  • External Email based on tolerance

    HI Dear Experts,, When the project reaches                                         online popup                                            Email 85% to 95 %                                                                 Warning                      

  • Application on startup

    How do I get an application (Missing Sync Pocket PC) to stop launching whenever I start up my computer? I checked my preferences for startup items and it doesn't appear in that box. I also checked the preferences for the application and it's not conf

  • Time Machine User ID Issue

    I just bought a new mac, and let the setup app transfer my files from Time Machine. It worked great, but now I can't access any of my old Time Machine files (fwiw this also happened the LAST time I attached a new computer to the same Time Machine dri

  • If Iphone 5 connected to AC outlet doesn't respond. Freezes What to do ?

    When I connect the phone to the AC it freezes, it doesn't respond to the slider I have to disconnect and then it works normally. I tried to reset but didn't help, Looks like hardware problem.