How to update bookmarks when merging two PDF files?

We have a company catalog that gets generated once a night.  It's three step process:
     Step 1)  A raw XML file gets generated from our main ERP software (Microsoft Dynamics).
     Step 2)  Then that raw XML file is ran against a stylesheet with XEP to produce a nice professional looking catalog.
     Step 3)  And the third step is a script that merges the front and back covers with the main catalog produced in step 2.  Each cover is two pages (front and back).
My problem is when step 3 runs it produces a final catalog but all the bookmarks are off by 2 pages because the front cover adds two pages in the very beginning.  This post may be premature because up until now I've been merging the PDF pages with a program called "GhostScript" and it allows me to merge them via line command.  I'm just now trying out AcroExch.App COM Object for VBScript so I'll see if it works but wanted to fire this out for help to see if anyone has encountered this or can confirm if Adobe automatically updates them for you?  When I "Merge" the PDF files through Acrobat Pro they get updated automatically, so hopefully it will work the same way with AcroExch.App Object.   Thanks guy!

I think you might be misunderstanding what I'm saying... we are not performing tasks for non-licensed individuals.  We purchased a copy of Adobe Acrobat Standard so we could create a PDF of our catalog.  That catalog we then put on our website and let people download it.  Since our products change all the time, we generate a new catalog every night.  The term "server" is just a place where a script runs, I could have it run on my desktop computer if that's really an issue but I think we're talking semantics.  Acrobat is not what produces the main catalog PDF, that is done through XEP when it runs through the raw XML produced by our ERP software every night.  The only thing we want Acrobat to do is an automated process to merge 3 PDF files together:  Front Cover, Main Catalog and Back Cover.  That's it.   Are you saying that is against the EULA of Adobe for us to do that? 
Now for the bookmark problem, what do you recommend I do then?  When I merge all three of those PDF files in Acrobat Standard manually it works perfect.  All I'm trying to do is automate that process once every night.  I know how to automate with Acrobat, I just can't figure out how to fix the bookmark problem?

Similar Messages

  • Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

    Installed Adobe XI Pro trial verison, when compared two pdf files it gives error  "Expected a Name Object"..Can some one say how to fix this?

  • Merge two PDF files into one with Adobe Reader

    Does anyone know how to merge two PDF files into one with Adobe Reader. Is it even possible?
    Thanks

    If you've got a Mac and OSX you can do this in Preview.  Make sure you can see the sidebar with the first PDF opened, and then drag the second PDF to the bottom of the last page in the sidebar.  Also you can reduce the size of your saved file by selecting (or making) a Quartz filter to 'reduce file size'
    Cheers

  • Insert PDF into new Adobe Form - merging two PDF files into one

    Hi everyone,
    I need to enable access to archive PDF files but within a new PDF file containing header and footer.
    Request is not to change archived PDF files at all.
    I use Web Dynpro application to upload PDF file and to display new PDF file.
    I thought converting archive PDF files into JPG files and than using an 'Image Field' object to display those in a new PDF file.
    I am dealing here with PDF version 1.3 files.
    I am also having trouble converting these PDF files into JPG files. Any sugestions one this problem?
    Does anyone have any suggestion on how to deal with this concerning the fact that archive PDF files can not be changed?
    Is there some other way to merge two PDF files into one using Adobe Designer?
    Regards,
    Amel

    Hello, Lukasz:
      I am also facing similar requirement from my customer.
      And I found one useful blog, hope this blog can help you.
      http://wiki.sdn.sap.com/wiki/display/WDJava/CombinePDFfileswithWebDynproforJava
      Best regards, Nick.

  • How do i merge two pdf files into one

    How do i merge 2 pdf files into one.

    Open up the first pdf in Preview
    Then from Menu
    select from Edit Menu
    Select Insert (your choice of)
              Page from Scanner
              Page from File (select your PDF file)
              Blank Page
    You can then save as your first file or rename it

  • Error Message When Merging Multiple PDF Files into One PDF File

    Good Morning,
    I have a problem with Adobe Acrobat 9 Pro. I am trying to merge/combine multiple PDF files into one PDF file, but I keep receiving this error message:
    Does anyone have a fix for this? Thank you!

    To fix:
    Provide a unique name for each form field. This includes the individual PDFs fields. As you intend to combine/merge no field name in each of the individual PDFs can be the same.
    Be well...

  • Merge two PDF files into one

    I have two separate PDF slideshows created with Photoshop Elements with 1-100 and 101-200 images that I would like to combine into one slideshow with 1-200 images. How can I do this? The actual number of images in each slideshow is quite large, so that Elements cannot create the combined one, only the two separate slideshows.

    You can try this service from Adobe: http://createpdf.adobe.com/
    Or you can download the free 30-day trial version of Acrobat.

  • How do I combine two PDF files into one?

    I want to merge two PDF files into one to make things easier when I take the file(s) to a professional printer.
    Can I do this in Preview?
    Thanks.

    You can't do in Preview.
    You can combine individual PDFs into one PDF using one of these freeware utilities.
    PDFMergeX @ http://www.malcom-mac.com/blog/pdfmergex/
    joinPDF @ http://www.macupdate.com/info.php/id/16604
    Combine PDFs @ http://www.monkeybreadsoftware.de/Freeware/CombinePDFs.shtml>
    PDFLab (join & split) @ http://pdflab.en.softonic.com/mac
     Cheers, Tom

  • How to Merge two PDF documents orginally created in different programs?

    I am trying to find information on how you can merge a PDF document created in LiveCycle and a PDF created in PageMaker or Microsoft Word?
    I know that you can easily merge two PDF documents created in the same program, but I am specifically looking for how you can merge two PDF documents created from two different programs. A step by step process would be helpful, if you have that information. Thanks.

    You use Assembler for this purpose.
    1) Assembler can be accessed through LC Java API. See http://help.adobe.com/en_US/enterpriseplatform/10.0/programLC/help/index.html
    API Quick Starts (Code Examples) > Assembler Service API Quick Starts
    2) Last week I posted on generating and merging PDF's from PostScript. Take a look at the assembly service instance in the .lca. Assembler uses DDX (Document Description XML) to describe document construction. NOTE the .lca was developed with ES 3 (aka ADEP). The .lca It contains the most basic DDX.
    <?xml version="1.0" encoding="UTF-8"?>
    <DDX xmlns="http://ns.adobe.com/DDX/1.0/">
    <PDF result="out.pdf">
      <PDF source="inDoc1"/>
      <PDF source="inDoc2"/>
    </PDF>
    </DDX>
    http://forums.adobe.com/message/4019760#4019760
    DDX Reference at http://help.adobe.com/en_US/livecycle/9.0/ddxRef.pdf
    Steve

  • How do I merge 2 pdf files into one file?

    How do I merge 2 pdf files into one file?

    I use PrimoPDF (free download) to create pdf files. To merge two docs/pdfs/etc., print the first to a new pdf using Primo. Close it, then print the second and save it to the same new pdf. Primo gives you the option to 'append' or 'overwrite' the original file. By using 'append', you are just adding it to the back of the existing file. You can do this repeatedly to resort or combine existing pages into a new pdf.
    Also, I'm using Adobe Reader X.

  • Unwanted bookmarks when generating a PDF in FM 8.0

    I have a issue about generating bookmarks when creating a PDF. After I have finished my book, I identify my bookmarks while in the PDF setup window. But for some reason, FM creates bookmarks for paragraph tags that I didn't choose. This is happening in particular to my table of contents. I even reconstructed the book file and created a new table of contents, list of figures and list of tables from scratch, paying close attention to every step and I still get the bookmarks I didn't ask for. If anyone has any advice for me I would appreciate it (Adobe or non-Adobe affiliated). My work email is [email protected]... feel free to contact me. Thank you in advance.

    The TitleTOC is a marker that is created by FM when we autogenerate a Table of Contents. We also have markers that FM calls Heading1TOC, Heading2TOC, etc.... When we tell FM that we want it to include the paragraph formats Title, Heading1, Heading2 in the TOC (when autogenerating the TOC), FM creates the markers TitleTOC, Heading1TOC, Heading2TOC (respectively). FM creates these markers so that when the book is updated any time in the future, FM doesn't view the TitleTOC, Heading1TOC, Heading2TOC markers as the paragraph formats that they represent.
    Funny thing is though...that FM is not assigning bookmarks to the Heading1TOC, Heading2TOC, etc... just the TitleTOC. We think it is a software glitch of some sort (think being the key word there)....but we aren't sure. Maybe you gentlemen have some ideas?
    Thanks...

  • How to eliminate duplicates when merging photos?

    How to eliminate duplicates when merging photos?

    OK, time to move over to the Aperture Discussions Group.
    It's at this link - https://discussions.apple.com/community/professional_applications/aperture
    This group you are in now is for Lion discussions, and over in the Aperture group, you'll meet skilled people who will help.  Especially if you state your questions clearly and provide sufficient context such that the reader can figure out what is needed.
    Make sure you spend some time reading the Aperture User Guide before asking really basic questions, and search the PDF version using Preview.
    Also search that group for your question, it may well have been asked and answered

  • How do i merge multipule pdf files into one file?

    how do i merge multipule pdf files into one file?

    One method:
    Open Acrobat XI Pro - use this "click path":
    File :: Create :: Combine Files into a Single File
    Be well...

  • How do I change my email address when sending a PDF file:

    How do I change my email address (correct it) when sending a PDF file?

    You'll need to add the email address you want to use to Reader... If you're not prompted to do so when clicking the Submit button, you can do it via Edit - Preferences - Email Accounts.

  • How to Merge 1 PDF file  to 50 PDF together not one by one. Using Acrobat 9 Windows xp.

    Hi, How to Merge 1 PDF file  to 50 PDF together not one by one. Using Acrobat 9 Windows xp.

    Depending on just what you are trying to do, you can also use DOCUMENT>Insert Pages to add multiple documents or simply drag and drop the documents into the current document (OK, I have not tried this one).

Maybe you are looking for

  • Lost old computer how can I sync with new?

    The computer I used to sync my iPhone has stopped working and I really would like to sync my phone so is there any way to sync my phone to another computer without losing everything?

  • Need help in hr abap

    hi friends, I need to learn hr abap.I need help from u ...if anyone have hr abap documents or books please give me..or suggest me some basic hr abap book names Thank u. Pinky.

  • Services Order In Oracle 11g

    is there a specific order in which oracle services must be turned on such as oracleServiceORCL first, then oracleOradb11g_home2_TNSLISTENER?

  • [Solved]PM: swap header not found attempting to suspend encrypted disk

    Hi all, I have my root partition set up as a dm-crypt encrypted volume, and I followed the instructions here to set up a swap file. I also followed these instructions to add the resume hook to my mkinitcpio.conf between encrypt and filesystems. I mod

  • Migrate/cone Apps to new h/w, same o/s

    We need to migrate/clone our production Apps 11.5.10 to a new server (different hardware but same OS Red Hat 3.0). Please let me know the following: What should we watch out for on the OS. Should we make sure to have exact same kernel & glibc version