if I have2 pdfs x and y with the media link x ...
# suitescript
r
if I have2 pdfs x and y with the media link x - /core/media/media.nl?id=42263622&c=111111_SB1&h=Q5PL9DPzqaStmQ1eAuLz66LM7Tz4z_zfmJwPy_mXFiXymfrw&_xt=.pdf y- /core/media/media.nl?id=42263631&c=11111_SB1&h=BR4o4mKeqgOdKTlEY99KSX2MBqTgRyHoy0fPn8CxAaHv5MNu&_xt=.pdf And I want to render both the pdfs as a single pdf through aa suitelet, how can I go about doing that?
a
Copy code
<?xml version="1.0"?><!DOCTYPE pdf PUBLIC "-//big.faceless.org//report" "report-1.1.dtd">
<pdfset>
<pdf src="yourPDFUrl1"></pdf>
<pdf src="yourPDFUrl2"></pdf>
<pdf src="yourPDFUrl3"></pdf>
</pdfset>

The PDF files must be available without login and you must use the XML module to clean the URLs.
r
I got it thank you. Was doing the same in the existing script, someone updated the pdf available without login as false. And couldn't figure it out fast enough..