Formprocessor Not working Blank PDF

I've been trying to merge and xml document with a pdf document so that I could run a batch of po's.
I copied the exact code from the XML Publishers User Guide on page 10-5 calling API's everything complies but I get a blank PDF for my new output file.
I was wondering if anyone has done this and could help me with this. I would like to merge the xml with the pdf so I could run multiple pdf's at the same time this is my goal....
I also looked at the java docs for the FormProcesser() method and found that I could also run it from the command line which also gave me a blank pdf for my output.

Joao,
I now have it working there was a problem with the tags in the pdf, but my new problem is that the pdf is not printing the lines correctly.
Example is I have a Purchase Order with two line that prints fine but it also goes to another page so I have 2 pages instead of one. Looks like the tags for the start body
<?rep_field="BODY_START"?> and <?rep_field="BODY_END"?> in the pdf are right but the line items in the pdf are repeating but not stopping...
The line items in my example each have this tag associated with them....
<?rep_field="T1_G1"?> in the tool tip each with different names....
So my java program runs fine and gives me my new output file but with two pages instead of one I don't know if I have to parse out the xml for each order based on the order number or if my repeating field tags are wrong in my pdf.
thanks
for any help

Similar Messages

  • Hyperlink with tracking applied does not work in PDF

    We use lots of web addresses in our advertising and generally the web addresses automatically convert to hyperlinks when we distill the files and make PDFs. Recently we've had two instances where someone applied tracking or justification to the line of text containing the url to make it spread across the page. When we make our PDF the url is not clickable. Is there anyway around this? We tried actually creating a hyperlink manually in InDesign by using the Hyperlinks panel and entering the address, but that didn't work either.

    Peter,
    We'll look into that. We already do two separate PDFs for print and web, but
    we are distilling both right now. Wouldn't be too much of a problem to
    change to exporting the web version I don't think.
    I did a test, just curious, is there a way to keep it from putting a black
    box around the link on the PDF?
    Thanks for your help! We appreciate it!
    Beth
    From: Peter Spier <[email protected]>
    Reply-To: <[email protected]>
    Date: Fri, 14 May 2010 13:24:04 -0600
    To: Beth Phillips <[email protected]>
    Subject: Hyperlink with tracking applied does not work in PDF
    Distilled PDF uses Postscript which does not support hyperlinks and
    interactivity. To make your hyperlinks in ID you'll need to export and check
    the Include Hyperlinks and Include Interactiviity boxes.
    Your printer doesn't need hyperlinks because they don't work on a printed
    page. The requirements for print and interactive PDF are quite different, and
    you may find you need to make two versions.
    >

  • Security option is not working for PDF Report

    security option is not working for PDF Report , e.g password , bug??

    what version of SQL Developer are you using?

  • Full-Text search is not working with PDF files - SQL Server 2012 64 bit

    Hi,
    We are in the process of storing PDF files in SQL Server 2012 with Full-Text search capability.
    I followed the steps as below and it works fine with word document but not for PDF files. I tried with PDF ifiler 11 & 9 and both are unsuccessful.
    Server/DB Level Settings:
    1)
    Enable FileStream
    2)
    Install Full-Text
    then restart
    3)
    Use [specific db]
    alter
    database [db name]
    add
    filegroup Files
    contains filestream;
    alter
    database [db name]
    add
    file (
    name = N'Files',
    filename =
    N'D:\SQL\DATA') to
    filegroup [Files];
    3)
    Database level
    Settings:
    FileStream:
    FileStream
    Directory name:
    [Set the name]
    FileStream
    non-transacted
    Access: [set Appropriate]
    3a)
    Add a
    datafile to DB
    with filestreamdata
    filetype.
    4)
    Share D:\SQL\DATA
    directory and
    add specific accounts
    with read/write
    access
    5)
    Give bulkadmin
    access to those
    specific accounts
    at server
    level
    6)
    From the
    page (link)
    download and
    install the *.pdf
    IFilter for
    FTS. Link:
    http://www.adobe.com/support/downloads/detail.jsp?ftpID=5542
    7)
    To the
    PATH global system
    variable add
    path to the
    catalog,
    where you installed
    the plugin.
    Default for
    this version is:
    C:\Program
    Files\Adobe\Adobe
    PDF iFilter 9
    for 64-bit
    platforms\bin
    8)
    From the
    page (link)
    download a
    FilterPackx64.exe
    and install
    it. Link:
    http://www.microsoft.com/en-us/download/confirmation.aspx?id=20109
    9)
    Now from
    SSMS execute the following
    procedures:
    -sp_fulltext_service
    'load_os_resources',1
    -sp_fulltext_service
    'verify_signature', 0
    EXEC
    sp_fulltext_service
    'update_languages';
    -- update language list
    EXEC
    sp_fulltext_service
    'restart_all_fdhosts';
    -- restart daemon
    reconfigure
    with override;
    10)
    Restart the
    server
    11)
    select document_type,
    path from
    sys.fulltext_document_types
    where document_type
    = '.pdf'
    -select
    document_type,
    path from sys.fulltext_document_types
    where document_type
    = '.docx'
    12) Results are OK.
    Following is my Table /Index/ catalog script:
    CREATE
    TABLE dbo.DocumentFilesTest
    DocumentId  INT
    IDENTITY(1,1)
    NOT NULL
    PRIMARY KEY,
    AddDate datetime
    NOT NULL,
    Name nvarchar(50)
    NOT NULL,
    Extension nvarchar(10)
    NOT NULL,
    Description nvarchar(1000)
    NULL,
    FileStream_Id UNIQUEIDENTIFIER
    ROWGUIDCOL NOT
    NULL UNIQUE DEFAULT
    NEWSEQUENTIALID(),
    FileSource varbinary(MAX)
    FILESTREAM DEFAULT(0x)
    go
    --Add default add date for document   
    ALTER
    TABLE dbo.DocumentFilesTest
    ADD CONSTRAINT
    DF_DocumentFilesTest_AddDate
    DEFAULT sysdatetime()
    FOR AddDate
    EXEC
    sp_fulltext_database
    'enable'
    GO
    IF
    NOT EXISTS
    (SELECT
    TOP 1 1 FROM sys.fulltext_catalogs
    WHERE name
    = 'Ducuments_Catalog_test')
    BEGIN
    EXEC sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'create',
    'D:\SQL\PDFBlob';
    END
    --EXEC sp_fulltext_catalog 'Ducuments_Catalog_test', 'drop'
    DECLARE
    @indexName nvarchar(255)
    = (SELECT
    Top 1 i.Name
    from sys.indexes
    i
    Join sys.tables
    t on 
    i.object_id
    = t.object_id
    WHERE t.Name
    = 'DocumentFilesTest'
    AND i.type_desc
    = 'CLUSTERED')
    PRINT @indexName
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'create',
    'Ducuments_Catalog_test', 
    @indexName
    EXEC
    sp_fulltext_column
    'DocumentFilesTest',
    'FileSource',
    'add', 0,
    'Extension'
    EXEC
    sp_fulltext_table
    'DocumentFilesTest',
    'activate'
    EXEC
    sp_fulltext_catalog
    'Ducuments_Catalog_test',
    'start_full'
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    ENABLE
    ALTER
    FULLTEXT INDEX
    ON [dbo].[DocumentFilesTest]
    SET CHANGE_TRACKING
    = AUTO
    ALTER
    FULLTEXT CATALOG
    Ducuments_Catalog_test REBUILD
    WITH ACCENT_SENSITIVITY=OFF;
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'pdf'
    'BOL12006553.pdf'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\BOL12006553.pdf',
    SINGLE_BLOB)
    AS BLOB;
    GO
    INSERT
    INTO DocumentFilesTest(Extension,
    Name,
    FileSource)
    SELECT
     'docx'
    'test.docx'
    * FROM
    OPENROWSET(BULK
    'd:\SQL\PDFBlob\test.docx',
    SINGLE_BLOB)
    AS Document;
    GO
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'BILL')
    Returns nothing. it should come from PDF file
    SELECT
    d.*
    FROM dbo.DocumentFilesTest
    d WHERE
    Contains(d.FileSource,
    'TEST')
    Returns from word document as follows:
    2           2014-06-04 10:11:41.393            test.docx docx           
    NULL   [BINARY Value]  [Binary Value]
    Any help is appreciated. Its been a long wait.
    Thanks,
    Vel
    Vel Thavasi

    Hello,
    Did you check the fulltext log files for more details about the errors. If the filter isn’t working, there should be errors in the error log file.
    The following thread is about similar issue, please refer to:
    http://social.msdn.microsoft.com/forums/sqlserver/en-US/69535dbc-c7ef-402d-a347-d3d3e4860d72/sql-server-2008-64bit-fulltext-indexing-pdf-not-working-cant-find-ifilter
    Regards,
    Fanny Liu
    If you have any feedback on our support, please click here.
    Fanny Liu
    TechNet Community Support

  • Hyperlinks not working in PDf created from Keynote '08

    When I produce a pdf from File > Print in Keynote '08, the hyperlinks do not work in the pdf. I have tried all the various pdf settings (even the ones that export hyperlinks) and no luck, the links are not working in the pdf. If I invoke the File > Export > PDf command in Keynote, the hyperlinks do work, but Export does not provide as much flexibility in PDF creation that File > Print does, thus my need to go to File > Print.
    Any suggestion?
    Yvan

    sandman39 wrote:
    If I export to pdf in Keynote, all my saved hyperlinks default to http://livepage.apple.com/ (when the pdf is subsequently opened in Adobe Reader).
    Are you sure that you really entered a link when you created an Hyperlink?
    The described one is the one which is used by default by every iWork's components.
    We must enter the true one by ourselves.
    Yvan KOENIG (from FRANCE samedi 13 septembre 2008 18:05:31)

  • Hyperlinks not working in PDF from ID

    Hi folks:
    I am currently creating a file in InDesign (CC 2014) and attempting to export it to a pdf. When I do export it, only 6 out of 15 hyperlinks work in PDF.  The links that work AND do not work are both URLs and Emails.  In ID all links function in the Hyperlinks panel. I have unclicked "Shared Hyperlinks Destination" for all links. It is not that the links are broken, it is that in the PDF version, half of the links are not reading that a hyperlink is attached.
    Any troubleshooting ideas are greatly appreciated.
    Sincerely,
    Jen

    When you export with File > Export > Adobe PDF (Print), you need to check Hyperlinks at the bottom (see below). Hyperlinks are not included by default:

  • Xrefs not working in PDF

    Hi All,
            Can anyone help. I have created a table within each chapter of my book, I have used this table as a navigation bar which sits on every right master page and linked each chapter by xref to the heading of each chapter, this has worked fine previously with no problems, however I have created a new manual using an existing manual (just changed the footers etc), but unfortunately there are four out of the eight chapaters that when PDF'd to not work (the hyperlink does not seem to exist). I cannot get my head round this why some work on others do not. Any ideas?
    Johann

    When creating the PS/PDF, do you have "Create Named Destinations for All Paragraphs" turned on? (PDF Setup, Links tab) turned on
    Having this setting turned on typically helps prevent random bad links in the PDF (assuming that the cross references are valid in FrameMaker).
    Shlomo Perets, http://www.microtype.com
    FrameMaker/TCS training & consulting

  • Bookmarks and Hyperlinks not Working in PDF's

    Hi,
    I have 2 pdf files, one has extensive bookmarks which do not work. The other pdf has anchor links to refer you to certain areas in the document some work and some do not. How can i fix this in Acrobat Pro 11

    Hi,
    Thanks, I have found the actions details and can set the pages I want. The
    other file has hyperlinks to anchor text I think, not bookmarks, but when
    you right click there is no info given only document properties. Any idea
    how I can fix those links in the pdf. And again thanks for your help.
    Mary
    On Thu, Feb 27, 2014 at 8:55 AM, Gilad D (try67)

  • Web address with hyphen will not work in PDF

    CS 4; ID 6.0.6
    OSX 10.5.8
    In ID, I create web links by selecting a url and then selecting New Hyperlink From URL. The new link is a Shared Destination by default with the web address as was selected. These links work fine when exported to PDF.
    When I use the same process on a url with a hyphen (part of the address and not a line break), the resulting Shared link will not work when exported to PDF. The newly created link in this case always begins with file:///Users/.
    What is it about the hypen that messes up the process? I work in a bilingual government so we have a lot of urls with hyphens in them. For example: www.cga-nb.org.
    Thanks.

    SWSinNC wrote:
    I will, thanks
    so your saying that if it's fake...that specific function is a common flaw ?
    Exactly!
    Unfortunately the full thread recounting this saga got lost in the forum changeover, but the fake copies come in authentic looking shrink-wrapped boxes with printed documentation; and everything works except the nudge.
    Or sometimes other keyboard combinations.

  • Pages '13 not all web links not working in PDF

    Hi
    I am having a issue with a document created in Pages 2013.
    The document I have created is four pages long and on 1st page I have a hyperlink (text) to a You Tube page.
    On page 3 of the document I have another piece of text with a hyperlink to the same You Tube page which works fine inside Pages but when I export to a PDF the link does not work/translate as a URL link. Just a piece of undelined text.
    I have tried deleting the text and retyping it then turning into a hyperlink but does not work.
    Anyone else come across this issue.
    Thanks in advance.

    Thanks for that.
    Problem is when I export to Pages 09 the formating is thrown all over the place. So it takes just as long to reformat the document as it orginally took to create.
    Was just hoping someone may have come a work around.
    Thanks again.

  • Links in PowerPoint 2010 Not Working in PDF

    My PowerPoint 2010 file has several internal links.  Some pages/slides have multiple links.  When I save the file as a PDF, some of the links work correctly, but most of them disappear.  Trouble-shooting experiments so far include grouping and ungrouping items that have links -- there doesn't seem to be a pattern for what's going to work or not in the PDF.  My other experiment was creating the links using PowerPoint's "Hyperlink" feature instead of the "Action" feature.  That doesn't appear to make a difference. 
    I know how to recreate the links in the PDF file but that's not very efficient.
    Anyone know the trick for telling Adobe Pro to retain all links?  Thanks!

    Hi LotteNZ,
    Just for clarification, I'm using PowerPoint 2010 and Adobe Pro XI.  I have an ongoing project for which I have to produce a PDF based on a PowerPoint file that has a lot of links.  I eventually found an actual Adobe person who answered my question so I could stop looking for features that don't exist.
    Here's the bottom line:
    - Links that go to Next, Previous, First, or Last slide will work correctly in the PDF
    - Links that go to other specific slides within the file will not be transferred to the PDF
    - The links that don't get "inherited" in the PFD have to be re-created in the PFD (which isn't difficult -- just tedious when there are a lot of them)
    Adobe is aware of this but the person who wrote me did not know of any specific plans to fix it in future releases (which doesn't necessarily mean that they won't).
    I think Adobe supports "its own" first, which makes sense.  I believe that If the source file was created in InDesign, all of the links would be supported.  But for a variety of reasons, in my case, my source file has to be PowerPoint.
    It's annoying having to recreate links every time I make changes in my source file and so one trick I've learned is to only replace pages that have changes.  It's an imperfect system, but it does speed things up.
    Hope that helps!
    Fifi
    www.FifiKlein.com

  • Internal Navigation not working in PDF

    Hi,
    I have a PDF document (parent) which gets rendered in IE8 & IE9 without any issue. However the parent pdf has hyperlinks to other pdf files which are located on a network share in my intranet.
    The issue is when we click on the hyperlink for the pdf documents from the parent PDF document it does not open (no error is obtained). If the parent PDF is saved in the local file system then the hyperlinks start working. Note that permission is not an issue here since the network share has full rights for all accounts.
    Any help appreciated.

    Hi John
    I am not using task flows. I just have some jspx pages defined in the unbounded task flow adfc-config.xml connected with navigation.
    I run from JDEveloper by right clicking on the jspx files.
    The URL when run from jdeveloper is as follows.
    http://127.0.0.1:7101/SessionsPOC-ViewController-context-root/faces/MainPage
    From Weblogic server I am using the link given in the Testing tab of the weblogic administration console.
    The URL is as follows.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root (default)
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/MainPage.jspx
    Actually, the URL given in the weblogic testing tab is not runnable. I am changing the link as follows to be able to run it.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/faces/MainPage.jspx
    I have defined the MainPage.jspx in the web.xml 's Welcome page. But it is not taking it I guess.
    Also, I am able to run the other page by giving the following url. But the navigation buttons are not working in that page also.
    http://10.9.73.103:7001/SessionsPOC-ViewController-context-root/faces/SecondPage.jspx
    Thanks
    Sameer

  • TOC link with a subscript character does not work in PDF

    Hi,
    has anyone come across with this? A heading has a subscript character and when you generate a PDF, the TOC page has no link. Other TOC heading links work out just fine, but all these that have subscript, these do not.
    I have used Save As PDF and selected even create named destinations for all Paragraphs. Usually the TOC works fine even if that is not selected. A link with subscript does not work in either case.
    I appreciate any help with this, thanks

    > The link is always terminated before any change in the character format. That's not a bug.
    In user-authored manually-created hypertext links, sure. And in that case, we know that we have to re-apply the Marker to the various fragments of the desired text. I would not expect this behavior for a generated file where we have limited control over the auto-tagging.
    > Therefore if you have subscript or superscript applied, the link starts at the beginning of the paragraph and ends before the character format change (sub-/superscript).
    It's not just format changes in body <$paratext> that break this. If you so much as apply a different format to the elements on the TOC Reference Page TOC (such as making the page number a different font), that breaks the HT of the page number in the PDF.
    > As far as I know Rick Quatro offers a FrameScript script for this problem.
    Well, Adobe might consider this to be an Enhancement Request item, but I consider it to be a defect.
    Is there anyone who would object if the TOC entries had functional full-string HT links by default? If so, Adobe could fix the problem, and have an Update tickbox to revert to legacy broken behavior.
    In any case, the Unicode solution is not really a "work-around", even though I put it that way. For anything where Unicode has a glyph that you would otherwise implement as FrameRoman with a Character Format, use Unicode.

  • Scrollbar does not work in PDF documents

    When FF opens an PDF document the scrollbar does not work. If it is a one page document I can use Page up/Page down to toggle between top and bottom of page. If it is a multiple page document I can use PageUp/Page down and the arrow keys.

    Try running Firefox in [[Safe Mode]]. If it works correctly in that configuration, then one of your add-ons is the culprit.

  • Quartz filters are not working (for PDF)

    It seems that quartz filters are not working for me under Mountin Lion. I have tried to export, print, etc everything in Preview, Automator, ColorSync. It simply won't apply the filters to my PDFs.
    Anyone experienced similar issues? Is it a known bug?

    I kinda have the same problem, except its only my custom filters that aren´t working in ColorSynch. The other filters get applied as usual, but I can not change any of the preformed filters within ColorSynch, and the "live update from filter inspector" doesn´t work if I try to apply changes or use my custom filters.
    The custom filters I have, were created prior to my upgrade from snow leopard to moutain lion.
    I´ve understood that there has been multiple problems with the filters in lion ++
    If there isn´t a quick fix to this, does anybody know of any programs I can use to apply filters without having to buy Adobe Pro, my use is not for simply decreasing file size, but mostly for editing colors prior to prinitng. And its  not sufficient to use the preformed filters unfortunately.

Maybe you are looking for