Popular Posts

Sunday, April 7, 2024

 How to direct the outputfile of the concurrent request to unix server path using XMLP Bursting  ORACLE APPS.


Step 1: In the DATA XML definition you need to define an element which contains the unix server path where you want to redirect the outputfile of the BI Publisher concurrent program output to .
Example: Define an element CF_PATH='/usr/tmp/kalyani'

Step 2: Define the Bursing control file as follows which contains the element CF_PATH.
In the below TESTFINV is the module name of the report or the main group, you need to find out the group from the data xml output from  Diagnostics->View XML of the BIP concurrent program.

<?xml version="1.0" encoding="ISO-8859-1" ?> 
<xapi:requestset type="bursting" xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
<xapi:request select="/TESTFINV/LIST_G_ORDER_BY/G_ORDER_BY">
<xapi:delivery>
<xapi:filesystem id="FILE_DELIVERY" output="${CF_PATH}"/>
</xapi:delivery>
<xapi:document output="${CF_PATH}" delivery="FILE_DELIVERY" output-type="pdf">
<xapi:template type="rtf" filter="" location="xdo://CAR.TESTFINV_NEW.en.US?getSource=true"/>
</xapi:document>
</xapi:request>
</xapi:requestset>

 How to direct the outputfile of the concurrent request to unix server path using XMLP Bursting  ORACLE APPS. Step 1: In the DATA XML defini...