Bursting error in 11.5.10

Dear Techies,
I am getting the following error when I am trying do a bursting
XML/BI Publisher Version : 5.6.3
--Exception
For input string: ""
java.lang.NumberFormatException: For input string: ""
     at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
     at java.lang.Integer.parseInt(Integer.java:470)
     at java.lang.Integer.parseInt(Integer.java:499)
     at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:142)
     at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
and this is the control file what i am using
<xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
<xapi:request select="/XX_EMAIL_TEST/LIST_G_EMPLOYEE_NUMBER/G_EMPLOYEE_NUMBER">
<xapi:delivery>
<xapi:email server="10.10.100.15" port="25" from="[email protected]" reply-to="[email protected]">
<xapi:message id="email" to="[email protected]" cc="[email protected]" attachment="true" content-type="html/text" subject="Testing Attachments Email"><h10>Dear Sirs;</h10>
<BR><p>${BODY1}</p></BR>
</xapi:message>
</xapi:email>
</xapi:delivery>
<xapi:document key="${EMPLOYEE_NUMBER}" output="/data/test/apps/ectestappl/per/11.5.0/out/${EMPLOYEE_NUMBER}_${EMPLOYEE_NAME}.pdf" output-type="pdf" delivery="email">
<xapi:template type="rtf" location="/data/test/apps/ectestappl/per/11.5.0/out/XX_PAYEMAIL_RTF.rtf" />
</xapi:document>
</xapi:request>
</xapi:requestset>
This is what i have written in after report trigger
function AfterReport return boolean is
req_id number;
begin
     if :CHECK_COUNT != 0 then
req_id:=FND_REQUEST.SUBMIT_REQUEST (
'XDO','XDOBURSTREP','XML Publisher Report Bursting Program',SYSDATE,FALSE,
'',:P_CONC_REQUEST_ID,'Y',chr(0), '', '', '', '', '', '',
end if;
     IF REQ_ID=0 THEN
     SRW.MESSAGE(100,'Failed to submit Bursting Program');
end if;     
SRW.USER_EXIT('FND SRWEXIT');
return (TRUE);
end;
the report is running successfully .... and i can see the pdf output also. But the sequence bursting program is failing with the above error. Please let me know what is my mistake. Thanks in advance.

the above post also posted by me only ... different id
I found this in opp log for that request id ... any idea David ?
"Caused by: org.xml.sax.SAXParseException: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected."
[7/25/12 2:18:24 PM] [OPPServiceThread0] Post-processing request 3959566.
[7/25/12 2:18:24 PM] [STATEMENT] [OPPServiceThread0] 1 threads running
[7/25/12 2:18:24 PM] [35307:RT3959566] Executing post-processing actions for request 3959566.
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Now running XMLPublisher
[7/25/12 2:18:24 PM] [35307:RT3959566] Starting XML Publisher post-processing action.
[7/25/12 2:18:24 PM] [35307:RT3959566]
Template code: BURST_STATUS_REPORT
Template app: XDO
Language: en
Territory: US
Output type: RTF
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Get Output Type
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] XML file name: /data/test/apps/ectestcomn/admin/out/ECTEST_ec-dev02/o3959566.out
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] XML file is on node: EC-DEV02
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Local node is: EC-DEV02
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Retrieving Template properties
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Adding Property : xslt.ReportRequestID Value : 3959538
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Adding Property : xslt.DebugFlag Value : Y
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Using local XML file
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] New output file is: /data/test/apps/ectestcomn/admin/out/ECTEST_ec-dev02/XDOBURSTREP_3959566_1.RTF
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] User that ran this request was: 2757
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] XDO: Calendar Type profile option was not set at ANY level - returning...
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] User that ran this request was: 2757
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Client Timezone ID profile option was not set - returning...
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] BEGIN XMLPublisher
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Failed to process the template
[7/25/12 2:18:24 PM] [UNEXPECTED] [35307:RT3959566] 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: <Line 1, Column 1>: XML-20108: (Fatal Error) Start of root element expected.
     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
[7/25/12 2:18:24 PM] [35307:RT3959566] Completed post-processing actions for request 3959566.
[7/25/12 2:18:24 PM] [STATEMENT] [35307:RT3959566] Thread 35307:RT3959566 finished.

Similar Messages

  • Bursting Error : ZIP file must have at least one entry

    Hai All,
    I am trying to Burst report in 11.5.10.2 instance. When tried bursting it the it got the following error.
    XML Publisher: Version : 11.5.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    Current system time is 04-JUN-2009 12:40:16
    XML/BI Publisher Version : 5.6.3
    Request ID: 387463
    All Parameters: ReportRequestID=387460:DebugFlag=Y
    Report Req ID: 387460
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:ERP
    Preparing parameters
    null output =/d02/appluat/uatcomn/admin/out/UAT_erp/o387463.out
    inputfilename =/d02/appluat/uatcomn/admin/out/UAT_erp/o387460.out
    Data XML File:/d02/appluat/uatcomn/admin/out/UAT_erp/o387460.out
    Set Bursting parameters..
    Temp. Directory:/tmp
    [060409_124018651][][STATEMENT] Oracle XML Parser version ::: Oracle XDK Java 9.0.4.0.0 Production
    [060409_124018653][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=387460, user-variable:cp:language=en, user-variable:cp:responsibility=50352, user-variable.OA_MEDIA=http://erp.adgs.ae:8030/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=387460, user-variable:cp:locale=en-US, user-variable:cp:user=GVU, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=387463, user-variable:cp:org_id=103, user-variable:cp:reportdescription=Pension Fund}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    ZIP file must have at least one entry
    java.util.zip.ZipException: ZIP file must have at least one entry
         at java.util.zip.ZipOutputStream.finish(ZipOutputStream.java:292)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:534)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:292)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Can anyone please help me on this..
    Regards

    Pl help me is there any way to overcome this error, when supplier email address is present then , bursting file works fine, if supplier address is null , then it is giving me error , please find the error also.........
    Bursting XML File ...........
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/XXDBD_POPRPOP_SA/LIST_G_INIT_INFO/G_INIT_INFO/LIST_G_HEADERS/G_HEADERS">
    <xapi:delivery>
    <xapi:email server="mailgate.XXX.com" port="25" from="[email protected]">
    <xapi:message id="emailpo" to="${CP_VENDOR_EMAIL}" cc="[email protected],[email protected]" attachment="true"
    subject="Purchase Order No: ${POH_PO_NUM}">
    Please find attached PO ${POH_PO_NUM}.
    Regards,
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="Purchase Order ${POH_PO_NUM}" output-type="pdf" delivery="emailpo">
    <xapi:template type="rtf" location="xdo://XXDBDPO.XXDBD_POXPRPOP_SA1.en.US/?getSource=true" filter=".//G_HEADERS[CP_VENDOR_EMAIL !='']"></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    ERROR Generated from bursting file ............Pl help me...........its urgent .............
    XML/BI Publisher Version : 5.6.3
    Updating request description
    Retrieving XML request information
    Preparing parameters
    Set Bursting parameters..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=529232, user-variable:cp:language=en, user-variable:cp:responsibility=20707, user-variable.OA_MEDIA=http://usncx054.XXX.com:8015/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=N, user-variable:cp:parent_request_id=529232, user-variable:cp:locale=en-US, user-variable:cp:user=RAJULAT, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=529233, user-variable:cp:org_id=84, user-variable:cp:reportdescription=DBD Printed Purchase Order Report English, user-variable:cp:Dummy for Data Security=Y}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    ZIP file must have at least one entry
    java.util.zip.ZipException: ZIP file must have at least one entry
    at java.util.zip.ZipOutputStream.finish(ZipOutputStream.java:304)
    at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:534)
    at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:292)
    at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    Thanks

  • XML Burst Error

    Great Walkthrough on Bursting found on the blogs, but I have a problem
    Ran Report - got a nice PDF (concurrent req# 1446723
    ran the XML Publisher Report Bursting Program
    put in the request ID 1446723
    I get an error
    the logs say that there was no output for 1446724
    When I look in the out dir, I see nothing with this concurrent req
    Any assistance would be great!
    [email protected]

    yes I loaded the burst control file in the Add burst control file of the original data definition.
    Back to square one - here is what I have done in case I missed something
    Oracle report - output XML
    created data definition
    created template
    added Report to correct responsibility
    ran Concurrent req for Oracle Report
    can view XML under diagnositcs
    can view PDF as output
    All good so far
    Added Bursting control file to data definition
    Ran Steps above again (just in case)
    still ok
    Ran concurrent request "XML Publisher Report Bursting Program"
    chose the above concurrent request
    Report fails with "One or more post-processing actions failed. Consult the OPP service log for details."
    Went in as sysadmin
    Concurrent - Manager - Administer
    chose Output post Process - Processes - Active - Manager Log
    log shows (for Oracle XML Report
    Post processing - Executing - Starting XML Publisher post-processing
    Shows Template of Oracle Report etc.
    Completed post processing of this request#
    Then starts the Post processing for the next request
    Executing
    Starting XML Publisher post process
    Shows template code "BURST_STATUS_REPORT"
    UNEXPECTED] [7895500:RT1447914] java.lang.reflect.InvocationTargetException
    later in the log
    Caused by: oracle.xdo.parser.v2.XMLParseException: Start of root element expected.
    later in the log
    ... 17 more
    then completed
    But no output ... files in the out directory are empty

  • Odd Bursting error i haven't seen before... maybe you have?

    Running into an odd error when trying to run the 'XML Publisher Report Bursting Program' on a request that contains XML data generated from a datatemplate... if their is an RTF template associated with the data definition get the output with no issues.
    My problem is when i try to burst the file using an email delivery type...
    If something was wrong w/ the XML data i would think it would the request generating the data would fail, or at least fail when their is an rtf template associated with it?
    Metalink isn't turning out to much info either... "shrug"
    *********** OPP process Error: ***************
    [10/19/08 7:45:09 PM] [OPPServiceThread0] Post-processing request 26821773.
    [10/19/08 7:45:10 PM] [218204:RT26821773] Executing post-processing actions for request 26821773.
    [10/19/08 7:45:10 PM] [218204:RT26821773] Starting XML Publisher post-processing action.
    [10/19/08 7:45:10 PM] [218204:RT26821773]
    Template code: BURST_STATUS_REPORT
    Template app: XDO
    Language: en
    Territory: US
    Output type: PDF
    [10/19/08 7:45:11 PM] [UNEXPECTED] [218204:RT26821773] 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:585)
         at oracle.apps.xdo.common.xml.XSLT10gR1.invokeParse(XSLT10gR1.java:517)
         at oracle.apps.xdo.common.xml.XSLT10gR1.transform(XSLT10gR1.java:224)
         at oracle.apps.xdo.common.xml.XSLTWrapper.transform(XSLTWrapper.java:177)
         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:1657)
         at oracle.apps.xdo.template.FOProcessor.generate(FOProcessor.java:967)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.runProcessTemplate(TemplateHelper.java:5888)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3438)
         at oracle.apps.xdo.oa.schema.server.TemplateHelper.processTemplate(TemplateHelper.java:3527)
         at oracle.apps.fnd.cp.opp.XMLPublisherProcessor.process(XMLPublisherProcessor.java:247)
         at oracle.apps.fnd.cp.opp.OPPRequestThread.run(OPPRequestThread.java:157)
    Caused by: oracle.xdo.parser.v2.XMLParseException: Start of root element expected.
         at oracle.xdo.parser.v2.XMLError.flushErrors1(XMLError.java:324)
         at oracle.xdo.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:319)
         at oracle.xdo.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:281)
         at oracle.xdo.parser.v2.XMLParser.parse(XMLParser.java:266)
         ... 17 more
    ************** Control File ****************
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:request select="/PROGRAMS/LIST_BACKLOG/BACKLOG">
    <xapi:delivery>
    <xapi:email id="123" server="server.xyx.com" port="25" from="[email protected]">
    <xapi:message id="123" to="[email protected]" attachment="true" subject="BackLog Report" reply-to="">backlog
    attached</xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="excel" delivery="123">
    <xapi:template type="rtf" location="/usr/tmp/Backlog.rtf"></xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    *************Request Log error: **************
    XML/BI Publisher Version : 5.6.3
    --Exception
    null
    java.lang.NullPointerException
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.getSystemTempDirectory(JCP4XDOBurstingEngine.java:413)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:106)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    *********** XML Structure Snipet **************
    <?xml version="1.0" encoding="windows-1252"?>
    <PROGRAMS>
    <org_code>MPK</org_code>
    <LIST_BACKLOG>
    <BACKLOG>
    <SCHEDULE_SHIP_DATE>2008-08-13T23:59:00.000-07:00</SCHEDULE_SHIP_DATE>
    <ORDER_NUMBER>639429</ORDER_NUMBER>
    <LINE_NUMBER>1</LINE_NUMBER>.....
    Edited by: jeremy21 on Oct 19, 2008 8:04 PM

    If you're still needing assistance on naming the email attachment (and you're bursting from EBS using XDOBURSTREP concurrent program); then here's a sample burst control file that names the email attachment baed on fields from the XML data:
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/APXCRRCR/LIST_G_PAY_GROUP/G_PAY_GROUP">
    <xapi:delivery>
    <xapi:email server="mailserv.domain.com" port="25" from="[email protected]" reply-to="[email protected]">
    <xapi:message id="EMAIL" to="${C_RECIPIENT}" attachment="true" content-type="text/html" subject="AP Cash Requirements Report for Business Unit: ${C_BUSINESS_UNIT}">
    </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output="AP_CashRequirementsReport_${C_BU_NO_PUNC}_${C_FNAME_ADDENDA}" output-type="excel" delivery="EMAIL">
    <xapi:template type="xsl-fo" location="xdo://XXAP.XAPXCRRCRD_EXCEL.en.US" filter=".//G_PAY_GROUP[C_RECIPIENT!='NONE']">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    This one bursts each page to a user(s) identified in the XML (C_RECIPIENT) and names the attached file AP_CashRequirementsReport_<business unite name>_<first receipient name> and sends it as an excel file.
    Jennifer

  • XML Publisher Bursting error....

    Hi,
    We are trying to burst an XML Publisher report via email in Oracle Applications R12(12.0.6).The XML Publisher Bursting Program is erroring out with yhe following error,
    XML/BI Publisher Version : 5.6.3
    --Exception
    For input string: "Y"
    java.lang.NumberFormatException: For input string: "Y"
         at java.lang.NumberFormatException.forInputString(NumberFormatException.java:48)
         at java.lang.Integer.parseInt(Integer.java:447)
         at java.lang.Integer.parseInt(Integer.java:497)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:142)
    Given, below is the call to bursting program,
    n_request_id := fnd_request.submit_request('XDO'
    ,'XDOBURSTREP'
    ,NULL
    ,NULL
    ,FALSE
    ,p_request_id
    ,'Y'
    Please suggest how to resolve this error.
    Regards,

    The following link may help
    BI Publisher Bursting Submission Error -URGENT
    Best Regards,
    Mahi

  • Bursting ERROR: java.util.NoSuchElementException in 1 level XML (i.e. FSG)

    Hello,
    We are encountering error with 1-level XML(non-RDF reports - i.e. FSG) on bursting. It is happening when the bursting control file ("select" attribute under "request" element) only has 1 level of distribution XML(i.e. /MasterReport).
    I have found similar issue in this forum but got no definite solution - Re: Bursting Fails with java.util.NoSuchElementException after 5.6.3 upgrade
    Start bursting process..
    [032309_032311003][][EXCEPTION] java.util.NoSuchElementException
         at java.util.Vector.lastElement(Vector.java:449)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.removeEndPath(BurstingProcessorEngine.java:1999)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(BurstingProcessorEngine.java:1944)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1124)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:201)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(BurstingProcessorEngine.java:2153)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(BurstingProcessorEngine.java:1802)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1127)
         at oracle.xml.parser.v2.XMLContentHandler.endElement(XMLContentHandler.java:196)
         at oracle.xml.parser.v2.NonValidatingParser.parseElement(NonValidatingParser.java:1212)
         at oracle.xml.parser.v2.NonValidatingParser.parseRootElement(NonValidatingParser.java:301)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:268)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:227)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingConfigParser(BurstingProcessorEngine.java:959)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(BurstingProcessorEngine.java:903)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:269)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    Thanks in advance for your help.
    regards,
    Rownald

    Hi Ike,
    Thanks for your reply.
    Although I already went thru a different path on bursting FSG(Financial Statement Generator) reports (creating Java program to fetch/send email - Delivery Manager), I am still very interested in the idea of bursting FSG using the seeded bursting program(XDOBURSTREP) - which I still cannot figure out.
    Anyway, I am stuck having a data definition from FSG with only 1-level to burst on (see in bold below). This kind of XML data is causing the previous error that I've posted above.
    Trying to add another level (i.e. /MasterReport/fsg:SOBName/) won't work either - namespace being not supported by Oracle??
    <?xml version="1.0" encoding="utf-8"?>
    <*MasterReport* xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xmlns:fsg="http://www.oracle.com/fsg/2002-03-20/"
    xsi:schemaLocation="http://www.oracle.com/2002-03-20/fsg.xsd">
    <fsg:SOBName>COMPANY NAME</fsg:SOBName>
    Any idea would be highly appreciated.
    Thanks!

  • Customer Statement Report in ebs 12 - bursting error prior to xml complete

    Hello There,
    We are using the standard non-modified (as far as i am aware) Statement Generation Program from the AR Print Documents/Statements menu in EBS 12.
    When the report runs for just a few statements it completes through to bursting with no issues.. However when we run the end of month statements (620 pages of them) the xml bursting appears to start before the xml has completed. The bursting program is called from the after report trigger as per Oracles specifications.
    It errors with the following:
    null output =/u01/oracle/PROD/inst/apps/PROD/logs/appl/conc/out/o1025630.out
    File /u01/oracle/PROD/inst/apps/PROD/logs/appl/conc/out/o1025627.out is not accessable from node/machine
    The error is quite correct as the xml file is still being written at the point the bursting starts. The statement generation concurrent job takes 7 mins to complete and the bursting concurrent job kicks off 2 mins after the statement generation has started about 5 minutes too early!!
    Has anyone else had this issue? Any help would be appreciated..
    Cheers
    Lisa

    interseting question??
    why I should not be able to convert a seeded form if I want??
    In this case I think it makes sense: in our site we use this report quite offten and users want the ability to search and filter the results on the fly instead of running the report over and over again.
    I am not trying to replace the seeded report but simply provide added functionality to our users.

  • XML email Bursting error in R12

    Hi,
    We are calling Bursting Concurrent program ‘XDOBURSTREP’ from our custom package in order to send emails separately to required customers.
    Bursting Conc.Prog is giving the following error.
    Log file is as follows:
    [070212_125055615][][EXCEPTION] java.lang.NullPointerException
         at java.util.Hashtable.put(Hashtable.java:394)
         at oracle.apps.xdo.oa.cp.CPUtil.setProperty(CPUtil.java:67)
         at oracle.apps.xdo.oa.cp.CPUtil.getSessionProperties(CPUtil.java:45)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:84)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:157)
    XML/BI Publisher Version : 5.6.3
    Request ID: 534793
    All Parameters: Dummy for Data Security=:ReportRequestID=534792:DebugFlag=Y
    Report Req ID: 534792
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:PURNA
    Preparing parameters
    null output =/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534793.out
    inputfilename =/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534792.out
    Data XML File:/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o534792.out
    Set Bursting parameters..
    Temp. Directory:/usr/tmp
    [070212_125057111][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.5.0 - Production
    [070212_125057333][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=534792, user-variable:cp:language=en, user-variable:cp:responsibility=50661, user-variable.OA_MEDIA=http://purna.ad.infosys.com:8004/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=534792, user-variable:cp:locale=en-US, user-variable:cp:user=SEETHALAKSHMI_R01, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=534793, user-variable:cp:reportdescription=BIBS Network Buyback Invoice Report, user-variable:cp:Dummy for Data Security=}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    Start of log messages from FND_FILE
    End of log messages from FND_FILE
    And the output for the burst conc.prog is as follows:
    <LOG>Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..</LOG>
    Can someone help me on this. It’s a bit urgent…..Please suggest!!!
    Thanks,
    Teja

    Control file I used:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    - <xapi:request select="/REPORT/CUSTOMER">
    - <xapi:delivery>
    - <xapi:email server="testexchange.testsmtp.com" port="25" from="[email protected]">
    <xapi:message id="123" to="[email protected]" attachment="true" content-type="html/text" subject="${SUBJECT_PART} ${EMAIL_ENTITY_NAME} INVOICE(s) for ${EMAIL_CUSTOMER_NAME}">This is a system generated message - any reply to the message is unmonitored and deleted. If you need further assistance- please send reply to mailto:XXX. Attached is a PDF file containing your ${EMAIL_ENTITY_NAME} invoices generated within the past 24 hours. If you believe you are missing any invoices or you are not able to open the file, please contact us at XXX. For questions relating to your account, please contact the Customer Account Manager noted on the invoice. Sincerely, Electronic Invoice Distribution Group ${EMAIL_ENTITY_NAME}</xapi:message>
    </xapi:email>
    </xapi:delivery>
    - <xapi:document output="${EMAIL_OU}INV_${EMAIL_FILEDATE}_${EMAIL_CUST_ACCTNO}.PDF" output-type="PDF" delivery="123">
    <xapi:template type="rtf" location="/BIBS1/bibs/FUT2/apps/apps_st/appl/XXBIBS/12.0.0/reports/US/Buyback_Template_temp.rtf" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Output of the bursting conc prog:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <BURS_REPORT>
    <REQUESTID>535438</REQUESTID>
    <PARENT_REQUESTID>535435</PARENT_REQUESTID>
    <REPORT_DESC>BIBS Network Buyback Invoice Report</REPORT_DESC>
    <OUTPUT_FILE>/BIBS1/bibs/FUT2/inst/apps/BIBSFUT2_purna/logs/appl/conc/out/o535438.zip</OUTPUT_FILE>
    - <DOCUMENT_STATUS>
    <KEY />
    <OUTPUT_TYPE>PDF</OUTPUT_TYPE>
    <DELIVERY>email</DELIVERY>
    <OUTPUT>/usr/tmp/070212_090212922/BOI SG IMMINV_20120702_1707.PDF</OUTPUT>
    <STATUS>fail</STATUS>
    <LOG>Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..</LOG>
    </DOCUMENT_STATUS>
    </BURS_REPORT>
    I could not find even the pdf output in the path specified as above.
    Please suggest...!!!

  • Bursting error: Could not deliver the output for Delivery channel:null'

    I am using R12 applications.
    I get this error 'Error!! Could not deliver the output for Delivery channel:null' in the output file of the bursting concurrent program.
    The smtp server name the ids the mail id and all other things are fine in the bursting file since i have hard coded them.
    I have also telnet <smtp server name> 25 frm command prompt and it worked fine.
    I don't know why i am facing this issue.
    Below is the bursting control file.
    <?xml version="1.0" encoding="ISO-8859-1" ?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/XXOTC_MER_ROLES_LIST/LIST_G_USER_ID_/G_USER_ID_">
    <xapi:delivery>
    <xapi:email server="smtp server name" port="25" from="[email protected]" reply-to="[email protected]">
    <xapi:message id="123" to="[email protected]" attachment="true" subject=" Dear Manager :">
    Please review the attached list of roles </xapi:message>
    </xapi:email>
    </xapi:delivery>
    <xapi:document output-type="Excel" delivery="123">
    <xapi:template type="rtf" location="/mlogs/BPTDEV1/conc/temp/XXOTC_MER_ROLES_LIST_3.rtf">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Any help would be greatly appreciated

    Hi user13319084,
    Is it that you've enabled SMTP authentication and the authentication is failing (not sure if user13319084 is person Kaushek commenting the same on my blog) here:
    http://garethroberts.blogspot.com/2008/03/bi-publisher-ebs-bursting-101.html
    Regards,
    Gareth

  • Report distribution/bursting error

    Hi All,
    Ive created a distribution.xml file and a report file test.rdf both of which were placed in the approp directory.
    The content of the xml file is as follows:
    <destinations>
    <!-- Generate a file for each warehouse -->
    <foreach>
    <file id="MyFiles" name="report_&amp;&lt;p_fleet_id&gt;.pdf" format="pdf" instance="this">
    <include src="report"/>
    </file>
    </foreach>
    <!-- Send a mail for each warehouse with the corresponding file attaceed-->
    <foreach>
    <mail id="ex2"
    <!--to="&amp;&lt;email&gt;" -->
         to="[email protected]"
    from="[email protected]"
    subject="This mail contains the files for &amp;&lt;p_fleet_id&gt;">
    <body srcType="text">
    This is the body of the message.
    </body>
    <attach format="pdf" name="report_&amp;&lt;p_fleet_id&gt;.pdf" srcType="report" instance="this">
    <include src="mainSection"/>
    </attach>
    </mail>
    </foreach>
    </destinations>
    =======================
    When I run the report from the browser using
    http://atdevaw07:7778/reports/rwservlet/?rs_rpt_key_pirps&REPORT=test.rdf&DISTRIBUTE=YES&DESTINATION=distribution.xml
    I get the follwing error message:
    REP-34304: Expected name instead of <.
    REP-0110: Unable to open file 'E:\Customsoft\Intranet\Temp\distribution004254332.xml'.
    REP-34304: Distribution failed to complete, please review the distribution lists
    Please help!
    Thanks

    Instead of ...
    subject="This mail contains the files for &&lt;p_fleet_id&gt;"&gt;
    try using ...
    subject="This mail contains the files for &am p; &l t; p_fleet_id &g t;."&gt; (escape characters for ampersand & less-than, greater-than symbols).

  • Bursting with JAVA APIs / MultiThreading / Errors Handling

    We are trying to use the bursting JAVA APIs 10.1.3.3.1 Standalone) to burst huge XML files and generate PDF Files from RTF templates. Here are a list of our issues with this feature:
    1. We have some problems catching the errors when bursting. We have tried to use the "oracle.apps.xdo.common.log.Logger" class, but it is not always reacting like we think it should. Could you please give us an exemple of a clean bursting error catching or a brief description of how we could do it. We have a lot of difficulties to find information about using the JAVA APIs of BIP.
    2. Is it a clean way of catching the bursting errors to use the "oracle.apps.xdo.common.log.Logger" class?
    3. When using the 10.1.3.3.1 DocumentProcessor JAVA API, the process gets killed when the RTF template is not where the control file specified it. Even when using a finally clause containing the document processor, we can't fetch the error from the "oracle.apps.xdo.common.log.Logger" class. We did not find a way to catch this error which make our program crash.
    4. How can we enable multi-threading that is included in the DocumentProcessor JAVA APIs so it can take advantage of the multi-processors environnements?

    1. Check tim d. blog, you can use the bursting listners to get the errors. It's also in the documentation.
    First, on every exception, the Bursting APIs are dumping the error in the Logger. So I can't see how we can use the listeners to catch these. We can check the hasExceptions on the Logger but still, we have some problems with this. When we deploy our application as a MDB (Message driven bean), it seems that once the hasException flag has been raised, if we call the MDB again, it is still up. Is there documentation about that Logger class? Also, I'm worried that we won't be able to call our MDB twice to run simultaneously 2 different bursting process since it seems the Logger is something static, keeping every exception in memory... That's bad.. And show me where you have found documentation about this. All I see in documentation is how to call the DocumentProcessor in a couple of lines. I don't see anything about a clean way to catch errors.
    2. Yes/No/Depends. I think it's fine. If your changing the logger options in your program that could come back to haunt you.
    I guess so, I'm not changing anything and its already haunting me...
    3. When using the 10.1.3.3.1 DocumentProcessor JAVA API, the process gets killed when the RTF template is not where the control file specified it. Even when using a finally clause containing the document processor, we can't fetch the error from the "oracle.apps.xdo.common.log.Logger" class. We did not find a way to catch this error which make our program crash.
    Even worst, when we deploy the component has an MDB, when the error happens, it kills the whole oc4j container... please correct this quick.
    4. How can we enable multi-threading that is included in the DocumentProcessor JAVA APIs so it can take advantage of the multi-processors environnements?
    We got an answer from the dev team which is to add two properties to the document processor, something like:
    enable-multithreading: true
    thread-count: >2
    We did that and what we got is that the process started and it got stuck in a dead lock at the first document processing. How nice! :)
    We got a milestone in March and I'm really worried about all those problems... Not enough documentation, a pretty bad error handling, errors making crash the whole oc4j container, Logger seems not to be handling simultaneous calls/ threads, not even handling two subsequent calls... etc.
    If anyone has the magic answer, it would be pretty welcomed!
    Thanks

  • Unable to get translation working with XML bursting

    Hi All,
    I am working on bursting an XML report using the DocumentProcessor API in an EBS environment. The XML publisher report has .xlf translation for Dutch Netherlands (nl-NL). The report works fine when printing through the EBS using the nl-NL locale. But however if I try to set the locale in the bursting and try to print the XML publisher report it is printing only in American English (Main translatable template's locale). Below is my bursting code
    try {
    DocumentProcessor dp = new DocumentProcessor("/usr/tmp/SampleControlFile2.xml", strDataSource, "/usr/tmp");
    dp.registerListener(this); //Set the listener
    System.out.println(strDataSource);
    System.out.println("xdo://"+strAppcode+"."+strTemplateCode+"."+strLang+"."+strLocale+"?getSource=true");
    Properties prop = new Properties(); //Add properties and variables//
    //updating these property as per environment//
    //prop.put("user-variable:TEMPLATE", "xdo://"+strAppcode+"."+strTemplateCode+"."+strLang+"."+strLocale+"?getSource=true");
    prop.put("user-variable:TEMPLATE", "xdo://"+strAppcode+"."+strTemplateCode+"."+"en"+"."+"US"+"?getSource=true");
    prop.put("user-variable:cp:territory", "NL");
    prop.put("user-variable:cp:language", "nl");
    prop.put("user-variable:cp:locale", "nl-NL");
    prop.put("burstng-source", "EBS");
    prop.put("user-variable.OA_MEDIA", "<MEDIA DIR>");
    dp.setConfig(prop);
    dp.process();
    //dp.deletTemporaryOutputFiles();
    } catch (Exception e) {
    e.printStackTrace();
    Control File:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi">
    <xapi:globalData location="stream">
    </xapi:globalData>
    <xapi:request select="/TMP001/LIST_G_ORDER_BY/G_ORDER_BY/LIST_G_INVOICE/G_INVOICE">
    <xapi:document key="${TRX_NUMBER}" output="${TRX_NUMBER}" output-type="pdf" delivery="file1">
    <xapi:template type="rtf" locale="" location="${TEMPLATE}" translation="" filter="" />
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Also I tried the following,
    For xdo://XXRS.XXRS_RAXINV_SEL_T.en.US?getSource=true location, the template prints always in American English.
    For xdo://XXRS.XXRS_RAXINV_SEL_T.nl.NL?getSource=true location, the bursting errors saying that could not find the template. (The template xdo://XXRS.XXRS_RAXINV_SEL_T.nl.NL?getSource=true can't be fetched)
    Thanks!

    Hi,
    Can you post your control file here...
    I am working on similar thing but not getting it working..getting error like
    [070110_022931827][][EXCEPTION] The URL ( xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true ) is invalid.
    My translation file name is "XXXPOXPRPOL_fr_CA.xlf"
    in my control file i have tried following codes but it didnt work
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL_fr_CA.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    <xapi:template type="xsl-fo" location="xdo://XXX.XXXPOXPRPOL_fr_CA.xlf.fr.CA/?getSource=true" filter=".//G_HEADERS[C_VENDOR_CONTACT_EMAIL !='' and POH_ORG_ID = 161]"></xapi:template>
    Please let me know where problem is.
    Thks & Rgds
    Rajesh

  • XML Publisher Bursting - FTP Status Check

    "XML Publisher Report Bursting Program" completes successfully even if EMAIL or FTP fails in the bursting process.
    See the output file below, last FTP fails but the program completed fine.
    Is there a way to check the Status and mark the program error so that we know it's not FTP'ed correctly.
    OUTPUT FILE_
    - <DOCUMENT_STATUS>
    <KEY />
    <OUTPUT_TYPE>excel</OUTPUT_TYPE>
    <DELIVERY>email</DELIVERY>
    <OUTPUT>/u01/autosys/MRP_20130322090315.xls</OUTPUT>
    <STATUS>success</STATUS>
    <LOG />
    </DOCUMENT_STATUS>
    - <DOCUMENT_STATUS>
    <KEY />
    <OUTPUT_TYPE>excel</OUTPUT_TYPE>
    <DELIVERY>ftp</DELIVERY>
    <OUTPUT>/p05/oracle/tmp/032213_095834975/XX_BURSTING_12.xls</OUTPUT>
    <STATUS>success</STATUS>
    <LOG />
    </DOCUMENT_STATUS>
    - <DOCUMENT_STATUS>
    <KEY />
    <OUTPUT_TYPE>excel</OUTPUT_TYPE>
    <DELIVERY>ftp</DELIVERY>
    <OUTPUT>/p05/oracle/tmp/032213_095834975/XX_BURSTING_19.xls</OUTPUT>
    *<STATUS>fail</STATUS>*
    *<LOG>Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..</LOG>*
    </DOCUMENT_STATUS>

    Hi Manu,
    Please check below MOS ids and your issue may be resolved.
    Bursting Programs Are Failing With Error "Could not deliver the output for Delivery channel:null" [ID 1241535.1]
    Email Bursting Error 'Could Not Deliver The Output ...' [ID 1354542.1]
    "Error!! Could not deliver the output for Delivery channel:null" - BI Publisher Bursting Error [ID 1272488.1]
    mark if this helps you.
    Regards,
    Kishore

  • How to count bit patterns in a file ?

    Think of the following:
    You have two files that you want to compare bit by bit.
    A file has been send the other one has been received.
    The two files can be of different size (Connection lost).
    But you not only want to know how many bits are different you want also to know the run length of the different bits.
    For example:
    File 1:                      1010101011101010111101011001
    File 2:                      1011101010001101010111010101
    What is the result ?
    Xor File1 and File2:   0001000001100111101010001100
    Run Length 1:           3
    Run Length 2:           2
    Run Length 3:           0
    Run Length 4:           1
    I hope I didn't make a mistake.
    Think also of using a blocksize for comparison.
    Maybe you don't want to compare the files as a whole but want to know the number of errors for every block that is maybe 256 bit or 1024 bit. So read the files block by block, xor the blocks and count the bit errors by their run length.
    So how can I get this result in LabView ?
    Which data types do I have to take for comparison ? Which VIs do I have to use ?
    Thanx for help and your time

    Hi Allen,
    thanks for your posting.
    I have now a working version.
    For my as LabView newbee this was really hard work.
    So how many bit patterns of "1" or "11" or "111" or "1111" are in the xor result of the two files ?
    Or you can also ask: How long is the error (Burst error) ? And how often does it occur ?
    Look for example for block error codes and this stuff.
    Attached is the VI and two small text files (Both 10 Bytes).
    I've tried a blocksize of 10 Bytes and also 5 Bytes.
    The result is:
    1     2     3      4
    16   5     1      1
    So there 16 errors of run length 1, 5 of run length 2 and so on.
    Would be also nice to count special bit patterns like '1001101010111" or something like that.
    But I think this is more easy.
    Not the pattern is searched. The first 1 and the following 0 is searched.
    The run length is used as index.
    Attachments:
    Filediff 4.vi ‏32 KB
    Kopie1 von REAMDE.txt ‏1 KB
    Kopie2 von REAMDE.txt ‏1 KB

  • Where is the Scheduler log file located?

    I'm trying to track down and diagnose this error in my scheduling/bursting:
    Error!! Could not deliver the output for Delivery channel: EMAIL.  Please check the Log for error details...
    But a search of my entire drive does not reveal any file with a .log extension that has been updated recently, nor do I see a reference to the location of said log file anywhere in the documentation.
    Where is the log file to which this error message is referring? Running the OBIEE Suite 10.1.3.4.1 under Windows.
    Thanks!

    Hi Mthompson,
    Look at this on how to create the log file.
    http://winrichman.blogspot.com/search/label/xdodebug
    am sure, you did not create the email/smtp configuration, thats why you see this error.

Maybe you are looking for

  • Animated .gif header help!

    I have been asked to create an animated header using a .gif because the client wants the animation viewable on iPhones.  How can I get a logo to "wipe" while using a transparent background?  I tried using a mask but you see the white box.  Is there a

  • Help needed with valueChangeListener problem

    I have the following code: <h:dataTable border="0" id="constituyentes" value="#{db_inserta.constituyentes}" var="vl" style="text-align: center;" bgcolor="#F5F5F5" cellpadding="8">      <h:column>           <f:facet name="header">                <h:ou

  • How to put Customised delimiter in file downloaded by FM gui_download

    hai friends!    how we can get customised delimiters ( like comma or # or / ) in the file download with FM gui_download. thanks ammu

  • Setting the custom master page through powershell is NOT working

    Hi,  I am writing the below code to set the  custom master page through powershell. But its not working .when i went to site settings-->master page --> in the drodown , the  maste page set is seattle.master ONLY, though my current master page is avai

  • Help required in Streams Commit

    Hi, Can anyone please help on the scenario below? * Our system has basically 2 databases. * One staging database - Source * Target - Has 2 db instances - One similar to the Staging (lets call it Duplicate Staging) and another Target database. * LCRs