Categories
- All Categories
- 13 Oracle Analytics Sharing Center
- 14 Oracle Analytics Lounge
- 209 Oracle Analytics News
- 41 Oracle Analytics Videos
- 15.6K Oracle Analytics Forums
- 6.1K Oracle Analytics Idea Labs
- Oracle Analytics User Groups
- 76 Oracle Analytics Trainings
- 14 Oracle Analytics Data Visualizations Challenge
- Find Partners
- For Partners
create multiple PDF files based on the flag for one parameter using Bursting in EBS

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
Answers
-
-
Rajesh - Please see some good samples from XMLP Blog
https://blogs.oracle.com/xmlpublisher/e-business-suite-bursting
Hope this helps
--Yugandhar
0 -
Hi Thanks for your reply.
It has code only creating 1 PDF file, i need to create 2 PDF file for one Invoice#
0 -
Rajesh - I assume this is for multi language looking at the control file you have provided ? if yes the use it in the filter condition .. refer to the link provided below
http://garethroberts.blogspot.com/2010/08/ebs-bursting-filter-on-xml-elements.html
0