Expand my Community achievements bar.

How to combine mutiple pdf file

Avatar

Level 1

Hello All,

I'm kind of new with the Workbench. Basically, i have 4 xdp forms creating 4 pdf reports with each xml according with them, separately and independently. But now the new requirement is combine all 4 or may be 3 into a portal report pdf. I don't want to create another xdp form which include all 4 exisitng xdp form. Is there a way in workbench or desinger that i can render the pdf report combine 1,2,3 or even 4 togther. Of course the new xml data file will combine data for 1,2,3 or 4 report into one already.

Please help or if anyone know where do i start, documentation....

Thanks a lot,

--KA

2 Replies

Avatar

Level 10

Learn DDX concepts from you Workbench's help manual.

Nith

Avatar

Former Community Member

You will end up with something like ...

<DDX xmlns="http://ns.adobe.com/DDX/1.0">

   <PDF result="final_doc.pdf" save="Full">

      <PDF source="doc1" pages="1-last" />

      <PDF source="doc2" pages="1-last" />

      <PDF source="doc3" pages="1-last" />

      <PDF source="doc4" pages="1-last" />

   </PDF>

</DDX>