You are on page 1of 16

http://oraclemaniac.

com/2012/03/29/bursting-email-report-output-in-xml-publisher-reports/

Bursting (Email report output) in XML Publisher reports


POSTED BY ABHIJIT RAY MARCH 29, 2012 10 COMMENTS FILED UNDER BURST, OPP, XAPI, XDOBURSTREP

XML Bursting is a feature available in Oracle by which a XML is exploded into different parts based on a defined logic and the individual parts are again converted into reports based on a layout and sent via email to designated mailboxes.

This is a very helpful feature especially if you are trying to send the output of a report to an email address or multiple email address

Benefits of XML bursting 1. 2. 3. 4. The feature is standard for XML Publisher version 5.6.3 No coding is required Output is sent via email. User does not need to login to Oracle to get the report The main report template and the bursting templates can be different from each other. Thus there can be one output from the concurrent program and a different layout to send as email.

Demonstration of XML bursting


We created a XML Publisher report with using a data template. The report has been developed to return 4 records. We shall use bursting to send the 4 records as 4 different reports to 4 email addresses. For our example we have used 1 email address across all 4.

XML Data Template The data template is given below,

01 <?<span class="hiddenSpellError">xml</span> version="1.0" encoding="ISO8859-1"?> <!-- $Header: XX-EMP_DET.xml 115.0 2012/03/15 08:04:42 <span 02 class="hiddenSpellError" pre="42 ">xdouser</span> noship $ --> 03 04 05 06 07 08 <!-- <span class="hiddenSpellError" pre="">dbdrv</span>: none --> <dataTemplate name="XXEMPDET" description="Employee Details" version="1.0"> <parameters></parameters> <lexicals></lexicals> <dataQuery> <sqlStatement name="Q1">

<![<span class="hiddenSpellError">CDATA</span>[select employee_number, full_name, 'eyaray@etihad.ae' email_address, pp.namefrom per_people_x 09 ppx, per_assignments_x pax, per_positions ppwhere pax.person_id = ppx.person_idand pax.position_id = pp.position_idand ppx.current_employee_flag = 'Y'and rownum < 5]]>

10 11 12 1 3 1 4 "/> 1 5 me"/> 16 17 18 19 20 />

</sqlStatement> </dataQuery> <dataStructure> <group name="G_EMP" dataType="VARCHAR2" source="Q1"> <element name="EmpNo" dataType="VARCHAR2" value="employee_number <element name="Employee_Name" dataType="VARCHAR2" value="full_na <element name="Email" dataType="VARCHAR2" value="email_address" <element name="Position" dataType="VARCHAR2" value="name"/> </group> </dataStructure> </dataTemplate>

Create the concurrent program

Concurrent program registration

Register the data definition Responsibility: XML Publisher Administrator

Navigation: Data Definition

Register data definition

Attach the concurrent program to the request group and execute the program to generate the XML output.

Concurrent request

The

output

shows

the

following,

Create the layout template

Report layout template

Attach the XML as Preview Data

Responsibility: XML Publisher Administrator

Navigation: Data Definition

Query for Code = XXEMPDET

Attach the XML generated from the program output to the Preview Data section of the data definition.

Attach XML as Preview data

Register the template Navigation: Templates

Create a template

Register layout template

Check Preview to see if the template matches with the XML.

Execute the report to view the data

XML report output

There are 4 records for 4 employees in the report. We are displaying 2 employees for ease.

Create the bursting template The most important aspect of XML bursting is the bursting control file. This is a XML file which contains specific tags for bursting the XML output generated earlier.

01 <?xml version="1.0" encoding="UTF-8"?> 02 <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting"> 03 <xapi:globalData location="stream">

04 xapi:globalData > 05 06 <xapi:request select="/XXEMPDET/LIST_G_EMP/G_EMP"> <xapi:delivery>

<xapi:email id="123" server="eymail.etihad.local" port="25" from="applpro 0 7 d@eyepdbe1.etihad.local" reply-to="applprod@eyepdbe1.etihad.local"> <xapi:message id="123" to="${EMAIL}" attachment="true" content0 8 type="html/text" subject="Employee details for Empno ${EMPNO}"> 09 10 11 12 13 Regards,HR team 14 xapi:message> 15 16 17 18 19 20 xapi:email> xapi:delivery> <xapi:document key="${EMPNO}" output="${EMPNO}.pdf" outputtype="pdf" delivery="123"> <xapi:template type="rtf" location="/tmp/XXEMPDET.rtf"> xapi:template> xapi:document> Please find your details attached. Dear ${EMPLOYEE_NAME},

21 xapi:request> 22 xapi:requestset>
Explanation of the bursting template XML tag xapi:request select= xapi:delivery Explanation

This tag in the control file indicates from which tag/node in the concurrent program output XML should separated for burs This node contains all email related attributes This tag contains the email attributes like, server or the email server IP or name port or the email server port from or the email address from which the server should send the email reply-to or the email address to which the replies should be sent This tag contains the attributes about the email like, To or the email address where the email should be sent Subject or the email subject attachment , i.e. if the email should contain an attachment content-type or type of email The mail body will be enclosed within thetags

xapi:email

xapi:message

xapi:document

This node contains the attachment document and XML template related tags and attributesThe attributes in this tag are rela the email attachment Key or unique identifier of each attachment Output or attachment file name Output-type or attachment file type This node contains the template information like, Type or the file type of the template Location or the directory of the template file along with the file name

xapi:template

The following attributes should contain the same values for bursting to function properly, 1. 2. 3. Id attribute in xapi:email tag Id attribute in xapi:message tag Delivery attribute in xapi:document tag

If the 3 values do not match then delivery will not take place as expected.

Attach the bursting file to the Data Definition of the XML Publisher Report Responsibility: XML Publisher Administrator

Navigation: Data Defintions

Upload the bursting control file

Upload the bursting file in Bursting Control File section.

Change the temporary directory location. A temporary directory has to be provided for XML Publisher engine to use for bursting.

Responsibility: XML Publisher Administrator

Navigation: Administration tab

Set temporary directory

In Unix, /tmp directory has write permissions for all users. Enter /tmp directory as the temporary directory. This directory can be any directory on which Oracle apps has write permissions.

FTP the template FTP the layout file, i.e. the XML layout template in the /tmp directory, as we have defined in the bursting control file that the template file location is /tmp

XML layout template in /tmp directory

XML Bursting execution process


Run the XX Employee detail report to generate the output.

Execute the report

After the report is generated, execute the program named, XML Publisher Report Bursting Program. This program is responsible for bursting the XML with the help of the bursting control file attached to the concurrent program whose output will be burst. Ensure that this program is attached to the request group of this responsibility.

XML Publisher Report Bursting Program

Select the request of the previously run reports request id. We shall select the 2 nd request from the top, i.e. Request ID: 19011719

Concurrent request selected

Execute the bursting program

Bursting program executed

When the bursting program ends, the program name in the SRS form changes as shown below

Bursting program name changed in SRS form

Now check the output of the bursting program.

Bursting program output

The bursting program output shows that 4 emails were delivered.

We shall check the mailbox now. Remember that we had set the email address of all the 4 employees to a single email address for this demonstration within the report query itself. You can check the data template for the query at the top.

Emails sent by bursting program

Each mail body looks like the following,

Email body

The email body, attachment name and attachment file type match with the bursting control file above. The attachment will contain the data from the XX Employee detail report,

Attachment

The bursting process is now complete.

Automatic execution of XML Publisher Report Bursting Program Since the bursting program, XML Publisher Report Bursting Program, has to be run manually this might not be feasible for all users to use. The bursting program can be executed automatically if we use a rdf report to generate the data for the XML publisher report. In a rdf report we can add the following piece of code in the After Report trigger in the report to execute the bursting program as soon as the output has been generated by the report.

01 FUNCTION afterreport 02 RETURN BOOLEAN NUMBER; 03 IS 04 v_req_id

05 BEGIN 06 -- Call Bursting Program 07 08 09 10 11 12 13 14 15 16 17 18 19 20 21 22 IF v_req_id = 0 THEN srw.MESSAGE (123, 'Failed to call bursting program.'); argument1 => 'Y', argument2 => :p_conc_request_id, argument3 => 'Y' --CHR(0), --'' ); v_req_id := fnd_request.submit_request (application => 'XDO', program => 'XDOBURSTREP', description start_time sub_request => '', => '', => FALSE,

23 24 25 26

END IF; srw.USER_EXIT ('FND SRWEXIT'); RETURN (TRUE);

27 END;

Bursting program error The XML Publisher Bursting program might error out. The log file will talk about checking the Output Post processor logs. I have described how to get the Output Post Processor logs in a previous article.

Bursting program log

After checking the Output Post Processor logs we get the following,

[3/22/12 2:19:05 PM] [320381:RT19011722] Completed post-processing actions for request 19011722. [3/22/12 2:33:10 PM] [OPPServiceThread0] Post-processing request 02 19011756. 01 [3/22/12 2:33:10 PM] [320381:RT19011756] Executing post-processing actions for request 19011756. [3/22/12 2:33:10 PM] [320381:RT19011756] Starting XML Publisher post04 processing action. 03 05 [3/22/12 2:33:10 PM] [320381:RT19011756] 06 Template code: BURST_STATUS_REPORT 07 Template app: XDO 08 Language: en 09 Territory: 10 Output type: 11 US RTF

[3/22/12 2:33:10 PM] [UNEXPECTED] [320381:RT19011756] java.lang.reflect.InvocationTargetException 12 at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at 13 sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.jav a:39) at 1 sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessor 4 Impl.java:25) 15 at java.lang.reflect.Method.invoke(Method.java:597) at 16 oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:566) at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:231) at 18 oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182) 17

at 1 oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:104 9 4) at 2 oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997 0 ) at 2 oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212 1 ) 2 at 2 oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665) 2 at 3 oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975) at 2 oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(Templa 4 teHelper.java:5926) at 2 oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateH 5 elper.java:3458) at 2 oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateH 6 elper.java:3547) at 2 oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcess 7 or.java:290) at 28 oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157) Caused by: org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected. at 30 oracle.xdo.parser.v2.XMLError.flushErrorHandler(XMLError.java:441) 29 3 1 at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:303)

at 3 oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingPa 2 rser.java:343) at 3 oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingPars 3 er.java:285) 34 at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:289) 35 36 [3/22/12 2:33:10 PM] [320381:RT19011756] Completed post-processing actions for request 19011756. This error relates to the template in the server. It means that XML 38 processor is unable to find the template. Check the setting in the bursting control file, 37 39 <xapi:template type="rtf" location="/tmp/XXEMPDET.rtf"> ... 17 more

The location specified as the XML layout template directory should be valid and all permissions must be available on this file as well as the directory. Related articles

Oracle Advanced Queue (AQ) demo (oraclemaniac.com) Email concurrent program output using Printer Styles (oraclemaniac.com) Inbound transaction using XML Gateway (oraclemaniac.com)

You might also like