Summary
create multiple PDF files based on the flag for one parameter using Bursting in EBS
Content
Hi All,
I have below Burst control file creating PDF files in the custom folder.
<xapi:request select="/XXCARINVXML/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
<xapi:delivery>
<xapi:filesystem id="pdftofolder" output="/mnt/oracle_xmlp/Invoices/DE Sample${INVOICE_NUMBER}.pdf" />
</xapi:delivery>
<xapi:document output-type="pdf" delivery="pdftofolder">
<xapi:template type="rtf" locale="en-US" location="xdo://XBOL.XXC_TEST.en.US/?getSource=true"
filter=".//G_INVOICE[CF_BURST='Y' and CF_ORG='DE']"/>
</xapi:document>
</xapi:request>
output="/mnt/oracle_xmlp/Invoices/DE Sample${INVOICE_NUMBER}.pdf" />
filter=".//G_INVOICE[CF_BURST='Y' and CF_ORG='DE']"/>
output="/mnt/oracle_xmlp/Invoices/DE_En Sample${INVOICE_NUMBER}.pdf" />
filter=".//G_INVOICE[CF_BURST='Y' and CF_ORG='DE']"/>
Now we have new requirement to create multiple PDF files based on the flag for one parameter.
Let say i am running program for one Invoice# , need to be created 2 PDF files in the folder with DE Sample 1234.pdf & DE_En Sample 1234.pdf
Can you please help me?
Thanks