XML Bursting
Bursting (Email report output) in XML Publisher reports
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
- 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,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
< 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 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 ]]> </ 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_name" /> < element name = "Email" dataType = "VARCHAR2" value = "email_address" /> < element name = "Position" dataType = "VARCHAR2" value = "name" /> </ group > </ dataStructure > </ dataTemplate > |
Create the concurrent program
Register the data definition
Register the data definition
Responsibility: XML Publisher Administrator
Navigation: Data Definition
Attach the concurrent program to the request group and execute the program to generate the XML output.
The output shows the following,
Create the 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.
Register the template
Navigation: Templates
Create a template
Check Preview to see if the template matches with the XML.
Execute the report to view the data
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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
< xapi:globalData location = "stream" > xapi:globalData > < xapi:request select = "/XXEMPDET/LIST_G_EMP/G_EMP" > < xapi:delivery > < xapi:email id = "123" server = "eymail.etihad.local" port = "25" from = "applprod@eyepdbe1.etihad.local" reply-to = "applprod@eyepdbe1.etihad.local" > < xapi:message id = "123" to = "${EMAIL}" attachment = "true" content-type = "html/text" subject = "Employee details for Empno ${EMPNO}" > Dear ${EMPLOYEE_NAME}, Please find your details attached. Regards,HR team xapi:message> xapi:email> xapi:delivery> < xapi:document key = "${EMPNO}" output = "${EMPNO}.pdf" output-type = "pdf" delivery = "123" > < xapi:template type = "rtf" location = "/tmp/XXEMPDET.rtf" > xapi:template> xapi:document> xapi:request> xapi:requestset> |
Explanation of the bursting template
XML tag | Explanation |
xapi:request select= | This tag in the control file indicates from which tag/node in the concurrent program output XML should separated for bursting |
xapi:delivery | This node contains all email related attributes |
xapi:email | This tag contains the email attributes like,
|
xapi:message | This tag contains the attributes about the email like,
|
xapi:document | This node contains the attachment document and XML template related tags and attributesThe attributes in this tag are related to the email attachment
|
xapi:template | This node contains the template information like,
|
The following attributes should contain the same values for bursting to function properly,
1. Id attribute in xapi:email tag
2. Id attribute in xapi:message tag
3. 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 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
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 Bursting execution process
Run the XX Employee detail report to generate the output.
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.
Select the request of the previously run report’s request id. We shall select the 2nd request from the top, i.e. Request ID: 19011719
Execute the bursting program
When the bursting program ends, the program name in the SRS form changes as shown below
Now check the output of the bursting program.
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.
Each mail body looks like the following,
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,
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.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
| FUNCTION afterreport RETURN BOOLEAN IS v_req_id NUMBER; BEGIN -- Call Bursting Program v_req_id := fnd_request.submit_request (application => 'XDO' , program => 'XDOBURSTREP' , description => '' , start_time => '' , sub_request => FALSE , argument1 => 'Y' , argument2 => :p_conc_request_id, argument3 => 'Y' --CHR(0), --'' ); IF v_req_id = 0 THEN srw.MESSAGE (123, 'Failed to call bursting program.' ); END IF; srw.USER_EXIT ( 'FND SRWEXIT' ); RETURN ( TRUE ); 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.
After checking the Output Post Processor logs we get the following,
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
| [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 19011756. [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 post-processing action. [3/22/12 2:33:10 PM] [320381:RT19011756] Template code: BURST_STATUS_REPORT Template app: XDO Language: en Territory: US Output type: RTF [3/22/12 2:33:10 PM] [UNEXPECTED] [320381:RT19011756] java.lang.reflect.InvocationTargetException at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:597) at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:566) at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:231) at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:182) at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:1044) at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:997) at oracle.apps.xdo.template.fo.util.FOUtility.generateFO(FOUtility.java:212) at oracle.apps.xdo.template.FOProcessor.createFO(FOProcessor.java:1665) at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:975) at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5926) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3458) at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3547) at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:290) at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157) Caused by: org.xml.sax.SAXParseException: at oracle.xdo.parser.v2.XMLError.flushErrorHandler(XMLError.java:441) at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:303) at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:343) at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:285) at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:289) ... 17 more [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 processor is unable to find the template. Check the setting in the bursting control file,
|
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.