DeliveryManager - SMTP_MESSAGE_BODY

I'm trying to use the delivery manager api's to deliver documents via email, has anyone tried putting text on the message body. Have tried the SMTP_MESSAGE_BODY but this is not working..

Hi,
The typical usage is like following. You can set the document file with the setDocument() method. You don't need to use SMTP_MESSAGE_BODY property.
// create delivery manager instance
DeliveryManager dm = new DeliveryManager();
// create a delivery request
DeliveryRequest req = dm.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
// set email subject
req.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT, "test mail");
// set SMTP server host
req.addProperty(
DeliveryPropertyDefinitions.SMTP_HOST, "mysmtphost");
// set the sender email address
req.addProperty(DeliveryPropertyDefinitions.SMTP_FROM, "[email protected]");
// set the destination email address
req.addProperty(
DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS, "[email protected], [email protected]" );
// set the content type of the email body
req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE, "application/pdf");
// set the document file name appeared in the email
req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME, "test.pdf");
// set the document to deliver
req.setDocument("/document/test.pdf");
// submit the request
req.submit();
// close the request
req.close();
If it still doesn't help, please let me know the following info.
- Did you receive the message itself or not?
- Do you know the XML Publisher version?
- Could I take a look at the part where you call the XML Publisher in your code?
Thanks for trying XML Publisher.
--Kei                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

Similar Messages

  • Could not find "Attachment" class (DeliveryManager)

    Hello,
    I was trying to send email using Delivery Manager (java program) but getting error compiling the source code when adding sample line "Attachment m = new Attachment();". Below is an excerpt of the source code. I could not add "Attachment" function.
    // create delivery manager instance
    DeliveryManager delMgr = new DeliveryManager();
    // create a delivery request
    DeliveryRequest delReq = delMgr.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
    // set email subject
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT, "test");
    // set SMTP server host
    delReq.addProperty(
    DeliveryPropertyDefinitions.SMTP_HOST, "xxxx.mail.com");
    // set the sender email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_FROM, "[email protected]");
    // set the destination TO email address (required)
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS, getReportNotify(repID,"TO") );
    // set the destination CC email address (optional)
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CC_RECIPIENTS, getReportNotify(repID,"CC") );
    // set the content type of the email body
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE, "text/plain");
    // set the document file name appeared in the email
    //delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME, getReportTitle(repID)+rRequestID+".pdf");
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME, repID+".txt");
    // set the document to deliver
    //delReq.setDocument(OutFileName);
    delReq.setDocument(msgDir+repID+".txt");
    //create Attachment instance
    Attachment m = new Attachment();
    // pdf
    m.addAttachment(OutFileName,getReportTitle(repID)+rRequestID+".pdf","application/pdf");
    // attaching step
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_ATTACHMENT, m);
    // submit the request
    delReq.submit();
    // close the request
    delReq.close();
    Here's the compilation error:
    EBSEmailDelivery.java:33: cannot resolve symbol
    symbol : class Attachment
    location: class oracle.apps.xdo.ebsdelivery.EBSEmailDelivery
    Attachment m = new Attachment();
    ^
    Thanks in advance.

    Also, here's the list of classes imported in my java code:
    import oracle.apps.xdo.delivery.DeliveryManager;
    import oracle.apps.xdo.delivery.DeliveryRequest;
    import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions;
    import oracle.apps.fnd.common.AppsContext;
    Not sure where to refer the "Attachment" class. Thanks.

  • DeliveryManager API issue

    Hi,
    I am trying to use the DeliveryManager API for printing from my customised application. The code what I am using is as follows:
    // create delivery manager instance
    DeliveryManager dm = new DeliveryManager();
    // create a delivery request
    DeliveryRequest req = dm.createRequest(DeliveryManager.TYPE_IPP_PRINTER);
    // set IPP printer host
    req.addProperty(DeliveryPropertyDefinitions.IPP_HOST, "10.80.4.35");
    // set IPP printer port
    req.addProperty(DeliveryPropertyDefinitions.IPP_PORT, "9100");
    // set IPP printer name
    req.addProperty(DeliveryPropertyDefinitions.IPP_PRINTER_NAME,"/printers/Kyocera Mita FS-9500DN KX");
    // set the document format
    req.addProperty(DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT,"application/postscript");
    // set the document
    req.setDocument("D:/XMLP_EXERCISES/xmlp_api/DEMO/test.html");
    // submit the request
    req.submit();
    // close the request
    req.close();
    But the output what I get is always the source code of the html page and not the content as I see in the browser.
    In the req.addProperty(DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT,"") I have tried all these options -- "text/html", "text/plain", "application/postscript" but the output is the same (the source of the html file :( )
    I would also want to know how to print a PDF document.
    Can someone please help me out.
    Thanks,
    Suresh

    I think your problem is related to pdf to PostScript.... you need to do that conversion before you print. Use a tool like pdftops
    error IPP printing - can someone help me out?

  • Can I use DeliveryManager just to send email with no document?

    Can I use "oracle.apps.xdo.delivery.DeliveryManager" to just send email without any document attached? or
    Is this only used to deliver the documents by email?
    I just want to use DeliveryManager just to send email with content in the body of the email. I am using BI Publisher API.
    Can any of you provide sample input for the above?

    Hi,
    You can use iMovie to record the message and save it as an email sized item and send the file as email like before.
    For those iChat AV users without a Cam and the AIM users without a cam you can do One-Way Viedo chats.
    Once you have a recorded Video file you can also drop the file on any Buddies name in you iChat Buddy list rather than using email.
    For those using other services you can set up a Jabber account and enable the required Transport/Gateways and send the files that way.
    http://www.jabber.org.au/ichat = Australian Page
    AllForces
    These are the two main information pages on how iChat can connect to the other IM services.
    Jabber Public Server list
    That would appear to be everybody.
    Ralph

  • DeliveryManager API to ipp printer returns Status of 11 ('Internal error')

    Here's my Java code, based on the sample:
    // create delivery manager instance
    DeliveryManager dm;
    // create a delivery request
    try {
    dm = new DeliveryManager();
    } catch (InvalidFactoryException e) {
    // TODO
    System.out.println("Unable to create delivery manager: Exception: " + e.getMessage());
    return;
    DeliveryRequest req;
    // set email subject
    try {
    req = dm.createRequest(DeliveryManager.TYPE_IPP_PRINTER);
    } catch (UndefinedRequestTypeException e) {
    // TODO
    System.out.println("Unable to create delivery request: Exception: " + e.getMessage());
    return;
    // set IPP host
    req.addProperty(DeliveryPropertyDefinitions.IPP_HOST, "dfw111ssun012");
    // default IPP port
    req.addProperty(DeliveryPropertyDefinitions.IPP_PORT, "631");
    req.addProperty(DeliveryPropertyDefinitions.IPP_USE_FULL_URL, "true");
    req.addProperty(DeliveryPropertyDefinitions.IPP_USE_CHUNKED_BODY, "true");
    // printer name
    req.addProperty(DeliveryPropertyDefinitions.IPP_PRINTER_NAME, "/printers/rightfax/.printer");
    // authentication
    req.addProperty(DeliveryPropertyDefinitions.IPP_AUTHTYPE, "IPP_AUTHTYPE_NONE");
    // req.addProperty(DeliveryPropertyDefinitions.IPP_AUTHTYPE, "IPP_AUTHTYPE_DIGEST");
    // req.addProperty(DeliveryPropertyDefinitions.IPP_USERNAME, "svc-rightfax.dfw");
    // req.addProperty(DeliveryPropertyDefinitions.IPP_PASSWORD, "Dresser.RF");
    req.addProperty(DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT, "IPP_DOCUMENT_FORMAT_PLAINTEXT");
    // set the document to deliver
    try {
    String filestr = "/tmp/instructions.txt";
    File filename = new File(filestr);
    if (filename.exists()) {
    filestr = filename.getAbsoluteFile().toString();
    } else {
    System.out.println("Unable to find file: " + filestr);
    return;
    req.setDocument(filestr);
    } catch (DeliveryException e) {
    // TODO
    System.out.println("Unable to set document: Exception: " + e.getMessage());
    // submit the request
    try {
    req.submit();
    } catch (DeliveryException e) {
    // TODO
    System.out.println("Unable to submit request: Exception: " + e.getMessage());
    int i = req.getStatus();
    String s12 = req.getStatusMessage();
    System.out.println("Status is " + i + " Status Message is "+ s12);
    // close the request
    req.close();
    i = req.getStatus();
    s12 = req.getStatusMessage();
    System.out.println("Status is " + i + " Status Message is "+ s12);
    The printer 'rightfax' works fine and is configured correctly - I'm able to print to it from the command line using the ipp interface.
    There are no firewall issues - I'm running this java code on the same box as the ipp implementation (which is Solaris IPP).
    Any help is greatly appreciated...

    Hi, I also tied th create a new admin user (via ovm_admin) which was successful but logging in with this new user brings the same error :-(
    Regards
    Axel D.

  • Bursting and DeliveryManager - How to identify wrong email address

    Hi,
    I have created a BI report (based on Data Template)
    Report generates the XML and then in the afterReport trigger, I am calling Bursting Program to send emails to the customers.
    Everything works fine.
    Problem is:
    If, there is any wrong email address, then we are NOT receiving any notification and undeliverable message.
    This happens for Bursting Request (program).
    I have also written a sample Java Code using "DeliveryManager" XDO class, to check whether it thorws the exception in case of wrong email ID or incorrect domain.
    But it also completes successfully and without any error. (no email .... obviuosly)
    import oracle.apps.xdo.delivery.*;
    public class EmailTest
    public static void main(String args[])
    try{
    DeliveryManager dm = new DeliveryManager();
    DeliveryRequest req = dm.createRequest(DeliveryManager.TYPE_SMTP_EMAIL);
    req.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT, "test mail");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_HOST, "appsrelay.xxx.com");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_FROM, "[email protected]");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS, "[email protected]"); //WRONG EMAIL ADDRESS HERE
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE, "application/pdf");
    req.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,"test.pdf");
    req.setDocument("/home/appldev2/WYSEINVPRINTN2_17402678_1.PDF");
    req.submit();
    req.close();
    catch(Exception e)
    System.out.println("Exception at: "+e);
    Then, I tried writing a send mail program using JAVAX EMAIL APIS.
    import java.util.*;
    import java.io.*;
    import javax.mail.*;
    import javax.mail.internet.*;
    import javax.activation.*;
    public class EmailTest2
    public static void main(String args[])
    String to = "[email protected]"; //WRONG EMAIL ADDRESS HERE
    String cc = "[email protected]";
    String bcc = "[email protected]";
    String from = "[email protected]";
    // SUBSTITUTE YOUR ISP'S MAIL SERVER HERE!!!
    String host = "appsrelay.xxx.com";
    String Subject="";
    Properties props = new Properties();
    // Get a session
    Session session = Session.getInstance(props);
    try{
    Transport bus = session.getTransport("smtp");
    bus.connect();
    Message msg = new MimeMessage(session);
    Address fromAddress = new InternetAddress(from);
    msg.setFrom(fromAddress);
    Address[] toAddresses = InternetAddress.parse(to);
    msg.setRecipients
    (Message.RecipientType.TO,toAddresses);
    Address[] ccAddresses = InternetAddress.parse(cc);
    msg.setRecipients
    (Message.RecipientType.CC,ccAddresses);
    Address[] bccAddresses = InternetAddress.parse(bcc);
    msg.setRecipients
    (Message.RecipientType.BCC,bccAddresses);
    Subject = "test emails";
    msg.setSubject(Subject);
    msg.setSentDate(new Date());
    MimeBodyPart p1 = new MimeBodyPart();
    p1.setText(" \n" + "Please find attached the SPQ approval letter \n\n" + "Regards, \n");
    Multipart mp = new MimeMultipart();
    mp.addBodyPart(p1);
    msg.setContent(mp);
    msg.saveChanges();
    bus.sendMessage(msg, toAddresses);
    bus.sendMessage(msg, ccAddresses);
    bus.close();
    catch(Exception e)
    System.out.println("Exception at: "+e);
    This, program throws Exception when there is any invalid character or wrong domain specified.
    "class javax.mail.SendFailedException: 553 5.1.2 <[email protected]>... Invalid host name"
    Please help me to get some clue about how we can track the invalid email address and also, undeliverable emails in Bursting or XDO DeliveryManager classes.
    Thanks a Lot,
    -- Ejaz
    Edited by: ESyd on Aug 9, 2010 1:14 AM

    Hi,
    Actually delivery failure notification is nothing to do with bursting or Delivery API, For me it deliver the notification if delivery address is incorrect (not exists), though the bursting engine does not through any error for invalid email format.
    If you really looking for the solution, as a workaround :
    I would use the file delivery
    Implement the Bursting Status Listener
    within Before Document Delivery, implement the customize delivery solution by using javax.mail logic to email the report.
    For most of us, It is too much and better to raise a SR, but you already implemented the other part, so just combine these two to get what you want.

  • DeliveryManager IPP Printing Attributes

    Hello. I am using the DeliveryManager API to print reports to our printers. We are using two types: HP Laserjet and Canon ImageRunner
    Everything works okay for the Laserjet but when I try to run the Canon, I have to physically go to the printer and select the printer tray and the no of copies I specified is being ignored (not to mention it prints on both sides of paper)
    I understand the following link has a disclaimer on setting printer properties and this could be where my problem is coming from:
    http://docs.oracle.com/cd/E21764_01/bi.1111/e18863/delmgrapis.htm#CHDCGDEB
    The following properties are supported. A string value is required for each property, unless otherwise noted. Note that printer-specific properties such as IPP_SIDES, IPP_COPIES and IPP_ORIENTATION depend on the printer capabilities. For example, if the target printer does not support duplex printing, the IPP_SIDES setting will have no effect.
    But my question is, where do I start looking on the printer side if this is the case? Is it a ghostscript? A driver setting? I looked into CUPS but it seems that it's only used for making sure that the files are being understood by the printer. Both printers can print PDF files, the Canon printer just happens to ignore the printing attributes I specified.
    I also initially used BI Publisher Web Service to send files to the Canon printer and it does take the number of copies and doesn't ask me for tray selection. So I am not sure if this is even a printer config case at this point either.
    Below is the excerpt of the code. I tried various media types as well in the input and with no luck. Thank you very much. Any help is appreciated.
    +// create delivery manager instance+
    DeliveryManager dm = new DeliveryManager();
    +// create a delivery request+
    DeliveryRequest req = dm.createRequest(DeliveryManager.TYPE_IPP_PRINTER);
    +// set IPP printer host+
    req.addProperty(DeliveryPropertyDefinitions.IPP_HOST, ipaddress);
    +// set IPP printer port+
    req.addProperty(DeliveryPropertyDefinitions.IPP_PORT, "631");
    req.addProperty(DeliveryPropertyDefinitions.IPP_PRINTER_NAME, "/ipp");
    +// set the document format+
    req.addProperty(DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT,
    DeliveryPropertyDefinitions.IPP_DOCUMENT_FORMAT_POSTSCRIPT);
    req.addProperty(DeliveryPropertyDefinitions.IPP_COPIES, noOfCopies);
    req.addProperty(DeliveryPropertyDefinitions.IPP_SIDES, DeliveryPropertyDefinitions.IPP_SIDES_ONE_SIDED);
    req.addProperty(DeliveryPropertyDefinitions.IPP_MEDIA, DeliveryPropertyDefinitions.IPP_MEDIA_A4);
    +// set the document+
    req.setDocument(file);
    +// submit the request+
    req.submit();
    +// close the request+
    req.close();
    Edited by: Rivana on May 9, 2013 10:52 AM
    Edited by: Rivana on May 9, 2013 10:53 AM
    Edited by: Rivana on May 9, 2013 10:54 AM

    Hi,
    It should have something to do with authentication setting on printer server.
    To get more effective help, please redirect to Windows server forum:
    http://social.technet.microsoft.com/Forums/en-US/home?forum=winserverprint&filter=alltypes&sort=lastpostdesc
    Thanks!
    Andy Altmann
    TechNet Community Support

  • SMTP_MESSAGE_BODY is not working

    Hi all,
    Here we have tried above SMTP property definition....it is not woking.....
    is there any solution .....for sending message to user using Xml Publisher Delivery Manager...

    Hi all,
    Here we have tried above SMTP property definition....it is not woking.....
    is there any solution .....for sending message to user using Xml Publisher Delivery Manager...

  • FTP bursting is not working for a particular server

    Hi All,
    I am using BIP 10.1.3.4
    I have a strange problem
    In my company there are 2 environment
    development and production
    I have configured a FTP location in both the environment.But the report ftp bursting is working but in Production it is not working.
    Is there any other way of checking settings.
    Please suggest.
    Thanks

    Hi All,
    I enabled the logging in BI publisher and found the following error in log file.
    Can you please suggest
    [120711_182041240][oracle.apps.xdo.common.font.FontFactory][STATEMENT] type1.Courier closed.
    [120711_182042353][oracle.apps.xdo.template.rtf.FOTemplate][STATEMENT] xsl1.0-compatibility is set to false in configuration ,xdk11g wrapper is off
    [120711_182043190][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [120711_182043190][][STATEMENT] Logger.init(): LogDir=/applic/oracle/product/10.1.3/OracleAS_BIP_1/xmldebug
    [120711_182043190][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [120711_182044031][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [120711_182044032][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-AU'.
    [120711_182044032][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(String) is called with '/applic/oracle/product/10.1.3/OracleAS_BI
    P_1/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//120711_182028372/xdo2.tmp'.
    [120711_182044034][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(String) is called with '/applic/oracle/product/10.1.3/OracleAS_BIP_1/
    j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//120711_182028372/xdo0.tmp'.
    [120711_182044056][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(String)is called with '/applic/oracle/product/10.1.3/OracleAS_BIP_1
    /j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//120711_182028372/xmlp17031tmp_85900001_1.xls'.
    [120711_182044057][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=4.
    [120711_182046652][oracle.apps.xdo.template.FOProcessor][STATEMENT] Start Memory: max=989MB, total=495MB, free=448MB
    [120711_182046652][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [120711_182046653][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_120711_182046653_fo_out_ab1f6.out' is created.
    [120711_182046654][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_120711_182046653_fo_data_1_.xml' is created.
    [120711_182046998][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_120711_182046653_fo_data_1_.xsl' is created.
    [120711_182047052][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [120711_182047156][][STATEMENT] WARNING: Found undetermined AttrKey: style-name
    [120711_182052743][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Oracle XML Developers Kit 10.1.0.5.0 - Production
    [120711_182052746][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] Scalable Feature Disabled
    [120711_182058312][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182058313][][ERROR] Invalid XSD string: 30-Nov-2031
    [120711_182058315][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182058316][][ERROR] Invalid XSD string: 30-Nov-2031
    [120711_182058318][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182058319][][ERROR] Invalid XSD string: 30-Nov-2031
    [120711_182058321][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182058321][][ERROR] Invalid XSD string: 30-Nov-2031
    [120711_182058323][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182058323][][ERROR] Invalid XSD string: 30-Nov-2031
    [120711_182058325][][ERROR] Invalid XSD string: 23-Jul-2011
    [120711_182221400][][ERROR] Invalid XSD string: 25-Sep-2011
    [120711_182221401][][ERROR] Invalid XSD string: 27-Nov-2011
    [120711_182221401][][ERROR] Invalid XSD string: 28-Aug-2011
    [120711_182221402][][ERROR] Invalid XSD string: 31-Jul-2011
    [120711_182221490][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_120711_182216594_fo_fo_1_.fo' is created.
    [120711_182221514][][PROCEDURE] XSL-T time used: 4730 msecs
    [120711_182221514][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [120711_182221514][][STATEMENT] Using optimized xslt
    [120711_182221518][][STATEMENT] Temporary file created: /var/tmp/xdo8wXFrbYzan17047.tmp
    [120711_182221518][][STATEMENT] [ HTML GENERATOR ]---------------------------------------------
    [120711_182221518][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.4.1
    [120711_182221518][][STATEMENT] java.home = /applic/oracle/product/10.1.3/OracleAS_BIP_1/jdk/jre
    [120711_182221519][][STATEMENT] XDO_TOP = null
    [120711_182221519][][STATEMENT] Config Path = null
    [120711_182221519][][STATEMENT] Debug Cfg Path= /applic/oracle/product/10.1.3/OracleAS_BIP_1/jdk/jre/lib/xdodebug.cfg
    [120711_182221519][][STATEMENT] Font dir = /applic/oracle/product/10.1.3/OracleAS_BIP_1/jdk/jre/lib/fonts/
    [120711_182221519][][STATEMENT] Locale = en-AU
    [120711_182221520][][STATEMENT] [ HTML GENERATOR PROPERTIES ]----------------------------------
    [120711_182221520][][STATEMENT] fo-image-handling-ver=5.5
    [120711_182221520][][STATEMENT] html-css-base-uri=
    [120711_182221521][][STATEMENT] html-css-dir=null(not set)
    [120711_182221521][][STATEMENT] html-css-embedding=embed-to-header
    [120711_182221521][][STATEMENT] html-image-base-uri=
    [120711_182221521][][STATEMENT] html-image-dir=/applic/oracle/product/10.1.3/OracleAS_BIP_1/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/120711_18202
    8372
    [120711_182221521][][STATEMENT] html-output-body-only=false
    [120711_182221522][][STATEMENT] html-output-charset=UTF-8
    [120711_182221522][][STATEMENT] html-output-width-in-percentage=false
    [120711_182221522][][STATEMENT] html-outputtype=pseudo-excel
    [120711_182221522][][STATEMENT] html-replace-smartquotes=true
    [120711_182221522][][STATEMENT] html-show-footer=true
    [120711_182221523][][STATEMENT] html-show-header=true
    [120711_182221523][][STATEMENT] html-suppressed-line-height=false
    [120711_182221523][][STATEMENT] make-accessible=false
    [120711_182221523][][STATEMENT] system-temp-dir=/var/tmp/
    [120711_182221523][][STATEMENT] ------------------------------------------------------
    [120711_182222050][][STATEMENT] Rendering page [1]
    [120711_182222117][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [120711_182226564][][STATEMENT] Phase2 time used: 4514ms
    [120711_182227573][][STATEMENT] Continue rendering page [1]
    [120711_182231893][][PROCEDURE] FO+Gen time used: 10378 msecs
    [120711_182231893][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [120711_182231894][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [120711_182231894][oracle.apps.xdo.template.FOProcessor][STATEMENT] End Memory: max=989MB, total=495MB, free=36MB
    [120711_182231927][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] initConfig(): loading default properties :{}
    [120711_182231928][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :ftp
    [120711_182231928][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [120711_182231930][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] java.lang.NullPointerException
    at oracle.apps.xdo.batch.DeliveryHelper.getFtpDeliveryRequest(Unknown Source)
    at oracle.apps.xdo.batch.DeliveryHelper.addRequest(Unknown Source)
    at oracle.apps.xdo.batch.bursting.DocumentDelivery.addDeliveryRequest(Unknown Source)
    at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2055)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:371)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [120711_182231930][oracle.apps.xdo.delivery.ftp.FTPDeliveryRequest][STATEMENT] submit(): Called
    [120711_182231931][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] oracle.apps.xdo.delivery.DeliveryException: Document file or input stream is not set.
    at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(Unknown Source)
    at oracle.apps.xdo.batch.DeliveryHelper.submitRequests(Unknown Source)
    at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
    at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
    at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
    at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
    at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2055)
    at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:371)
    at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
    at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    [120711_182231933][][STATEMENT] Default write connection pool max:20, min:10, total:10, available:8
    [120711_182232025][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [120711_182232027][][STATEMENT] /applic/oracle/product/10.1.3/OracleAS_BIP_1/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//120711_182028372 deleted s
    uccessfully...
    [120711_182232028][][STATEMENT] [ID:11401] Time elapsed for bursting : 136107, time from beggining : 136215
    [120711_182232028][][STATEMENT] [ID:11401] Time elapsed for notification : 0, time from beggining : 136215
    [120711_182232029][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:11401] Scheduler finished the job. Exiting...
    Thanks & Regards

  • Bursting and Delivery on BIP EE

    Hello all,
    I'm using the BIP EE (standalone) version 10.1.3.4.1 (build:1145).
    I'm trying to create the 2 pdf files and upload them to the FTP directory '/inbox/'.
    the Data model query:
    select 'SUPPLIER1' supplier from dual
    union
    select 'SUPPLIER2' supplier from dual
    the Bursting query:
    SELECT SUPPLIER KEY,
    'dev_bur' TEMPLATE,
    'RTF' TEMPLATE_FORMAT,
    'en-US' LOCALE,
    'PDF' OUTPUT_FORMAT,
    'FTP' DEL_CHANNEL,
    'ftp.my-server.com' PARAMETER1,
    'dev' PARAMETER2,
    '123' PARAMETER3,
    'inbox/' PARAMETER4,
    'tsflog_'|| SUPPLIER ||'.pdf' PARAMETER5
    FROM (select 'SUPPLIER1' supplier from dual
    union
    select 'SUPPLIER2' supplier from dual)
    I'm using the delivery and bursting from the "Schedule" button and the Run emmidiatelly option.
    Does any one have a successfully pdf file uploaded to the FTP?
    Can any one suggest me where is the problem?
    The delivery and Burst return with the following errors:
    LOG Part:
    [043010_141400782][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :ftp
    [043010_141400794][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    ERROR:
    [043010_141400795][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] java.lang.NullPointerException
         at oracle.apps.xdo.batch.DeliveryHelper.getFtpDeliveryRequest(Unknown Source)
         at oracle.apps.xdo.batch.DeliveryHelper.addRequest(Unknown Source)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.addDeliveryRequest(Unknown Source)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitEnterpriseDeliveryRequest(Unknown Source)
    In addition:
    I've tried to upload file using the "Send" button. The file have been successfully uploaded to the ftp. But the file is corrupted, i.e. can't be readable in the PDF reader. seems the the file was uploaded using the non-binary mode.
    Thanks in advance!
    Eldar.A.

    Hi all,
    within the delivery note specification the FTP Server name has been set the same to the IP address.
    For example:
    OLD
    FTP server name: Test
    IP: 1.1.1.1
    Port:21
    NEW
    FTP server name: 1.1.1.1
    IP: 1.1.1.1
    Port:21
    Then issue was resolved.
    Please, refer to the SR# 3-1488517361.
    with regards,
    Eldar A.

  • XML Publisher Patch 9501440 EBS 11i

    Hello
    Is there any body faced any problem when apply XML Publisher Patch 9501440?
    Bursting Program does not find File...
    Oracle XML Publisher Template Builder for Word
    Version 5.6 Build 45
    Oracle RDBMS : 10.2.0.4.0
    Oracle Applications : 11.5.10.2
    Concurrent Program: XML Publisher Report Bursting Program
    Concurrent Short Name:XDOBURSTREP
    Executable: XDOBURSTRPT
    *************LOG FILE Messages START ****************************
    XDOBURSTREP module: XML Publisher Report Bursting Program
    Current system time is 08-NOV-2010 17:02:08
    1.007: [GC 1.007: [DefNew: 1792K->191K(1984K), 0.0192655 secs] 1792K->243K(6080K), 0.0195205 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    1.787: [GC 1.788: [DefNew: 1983K->45K(1984K), 0.0277442 secs] 2035K->283K(6080K), 0.0279352 secs] [Times: user=0.03 sys=0.00, real=0.03 secs]
    2.562: [GC 2.562: [DefNew: 1837K->192K(1984K), 0.0253611 secs] 2075K->597K(6080K), 0.0255568 secs] [Times: user=0.02 sys=0.00, real=0.03 secs]
    3.462: [GC 3.462: [DefNew: 1984K->130K(1984K), 0.0209697 secs] 2389K->713K(6080K), 0.0211647 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
    4.266: [GC 4.266: [DefNew: 1922K->97K(1984K), 0.0168747 secs] 2505K->809K(6080K), 0.0170602 secs] [Times: user=0.02 sys=0.00, real=0.02 secs]
    5.123: [GC 5.123: [DefNew: 1889K->192K(1984K), 0.0284309 secs] 2601K->1253K(6080K), 0.0286286 secs] [Times: user=0.02 sys=0.00, real=0.03 secs]
    5.909: [GC 5.909: [DefNew: 1957K->192K(1984K), 0.0116465 secs] 3018K->1567K(6080K), 0.0118526 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
    5.943: [GC 5.944: [DefNew: 1973K->162K(1984K), 0.0029086 secs] 3349K->1664K(6080K), 0.0030941 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
    5.970: [GC 5.970: [DefNew: 1951K->1K(1984K), 0.0025240 secs] 3452K->1504K(6080K), 0.0027056 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
    5.993: [GC 5.993: [DefNew: 1781K->35K(1984K), 0.0020896 secs] 3284K->1537K(6080K), 0.0022733 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
    6.651: [GC 6.651: [DefNew: 1827K->119K(1984K), 0.0065788 secs] 3329K->1622K(6080K), 0.0067660 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
    6.843: [GC 6.843: [DefNew: 1911K->54K(1984K), 0.0077538 secs] 3414K->1670K(6080K), 0.0079373 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
    7.056: [GC 7.057: [DefNew: 1846K->99K(1984K), 0.0033575 secs] 3462K->1715K(6080K), 0.0035395 secs] [Times: user=0.00 sys=0.00, real=0.00 secs]
    7.228: [GC 7.229: [DefNew: 1891K->82K(1984K), 0.0054213 secs] 3507K->1750K(6080K), 0.0056144 secs] [Times: user=0.00 sys=0.00, real=0.01 secs]
    7.351: [GC 7.351: [DefNew: 1874K->137K(1984K), 0.0046116 secs] 3542K->1805K(6080K), 0.0047993 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
    7.469: [GC 7.470: [DefNew: 1929K->100K(1984K), 0.0043573 secs] 3597K->1843K(6080K), 0.0045445 secs] [Times: user=0.01 sys=0.00, real=0.00 secs]
    7.632: [GC 7.632: [DefNew: 1892K->192K(1984K), 0.0134389 secs] 3635K->2308K(6080K), 0.0136347 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
    XML/BI Publisher Version : 5.6.3
    Request ID: 17676203
    All Parameters: ReportRequestID=17674892:DebugFlag=Y
    Report Req ID: 17674892
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:ATFAPT02
    Preparing parameters
    null output =/oracle/appl/orad1at2/product/comn/admin/out/o17676203.out
    8.464: [GC 8.464: [DefNew: 1984K->192K(1984K), 0.0184990 secs] 4100K->2509K(6080K), 0.0186945 secs] [Times: user=0.01 sys=0.00, real=0.02 secs]
    inputfilename =/oracle/appl/orad1at2/product/comn/admin/out/o17674892.out
    Data XML File:/oracle/appl/orad1at2/product/comn/admin/out/o17674892.out
    Set Bursting parameters..
    Bursting propertes.....
    {user-variable:cp:territory=US, PRT00814.pdf-stream-divider-max-output-size=65536000, user-variable:cp:ReportRequestID=17674892, user-variable:cp:language=en, user-variable:cp:responsibility=20420, pdf-stream-divider-max-output-size=65536000, user-variable.OA_MEDIA=http://d1at2.abc.ca:8010/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=17674892, user-variable:cp:locale=en-US, user-variable:cp:user=URU4.ASHAFI, user-variable:cp:application_short_name=XDO, system-temp-dir=/oracle/appl/orad1at2/product/comn/temp, user-variable:cp:request_id=17676203, user-variable:cp:org_id=43, user-variable:cp:reportdescription=XXPAY Database Audit Series Change Register}
    Start bursting process..
    9.208: [GC 9.208: [DefNew: 1984K->142K(1984K), 0.0167699 secs] 4301K->2645K(6080K), 0.0169704 secs] [Times: user=0.01 sys=0.01, real=0.02 secs]
    [110810_050218008][][STATEMENT] /oracle/appl/orad1at2/product/comn/temp
    [110810_050218063][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:territory : value=>US
    [110810_050218063][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:ReportRequestID : value=>17674892
    [110810_050218064][][STATEMENT] BurstingProcessor:Property Key=>PRT00814.pdf-stream-divider-max-output-size : value=>65536000
    [110810_050218064][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:language : value=>en
    [110810_050218065][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:responsibility : value=>20420
    [110810_050218065][][STATEMENT] BurstingProcessor:Property Key=>user-variable.OA_MEDIA : value=>http://d1at2.abc.ca:8010/OA_MEDIA
    [110810_050218066][][STATEMENT] BurstingProcessor:Property Key=>burstng-source : value=>EBS
    [110810_050218066][][STATEMENT] BurstingProcessor:Property Key=>pdf-stream-divider-max-output-size : value=>65536000
    [110810_050218066][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:DebugFlag : value=>Y
    [110810_050218067][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:locale : value=>en-US
    [110810_050218067][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:parent_request_id : value=>17674892
    [110810_050218068][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:user : value=>URU4.ASHAFI
    [110810_050218068][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:application_short_name : value=>XDO
    [110810_050218068][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:request_id : value=>17676203
    [110810_050218069][][STATEMENT] BurstingProcessor:Property Key=>system-temp-dir : value=>/oracle/appl/orad1at2/product/comn/temp
    [110810_050218069][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:org_id : value=>43
    [110810_050218070][][STATEMENT] BurstingProcessor:Property Key=>user-variable:cp:reportdescription : value=>XXPAY Database Audit Series Change Register
    [110810_050218071][][STATEMENT] Inside burstingConfigParser
    [110810_050218073][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [110810_050218095][][STATEMENT] ATTR_TEMPLATE_FIELD_ALIAS:null
    9.325: [GC 9.325: [DefNew: 382K->38K(1984K), 0.0116621 secs]9.337: [Tenured[Unloading class sun.reflect.GeneratedSerializationConstructorAccessor2]
    [Unloading class sun.reflect.GeneratedSerializationConstructorAccessor1]
    : 2642K->2080K(4096K), 0.2945164 secs] 2885K->2080K(6080K), 0.3065072 secs] [Times: user=0.32 sys=0.02, real=0.31 secs]
    [110810_050218555][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [110810_050218572][][STATEMENT] Template Location:xdo://XX.XXPAY048RPT.en.00/?getSource = true
    [110810_050218605][][STATEMENT] url:xdo://XX.XXPAY048RPT.en.00/?getSource = true
    [110810_050218606][][STATEMENT] mUrl:xdo://XX.XXPAY048RPT.en.00/?getSource = true
    [110810_050218686][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): mProps is null
    [110810_050218689][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): xdo.TemplateValidation: null
    [110810_050218689][oracle.apps.xdo.oa.schema.server.TemplateInputStream][STATEMENT] initStream(): template validation is on
    [110810_050218880][][STATEMENT] initConfig(): config file used :null
    [110810_050218881][][STATEMENT] initCustomFactories(): loading custom delivery channels :{}
    [110810_050218881][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] initConfig(): loading default properties :{}
    [110810_050218882][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :smtp_email
    10.191: [GC 10.192: [DefNew: 1792K->157K(1984K), 0.0124028 secs] 5872K->4238K(6080K), 0.0125942 secs] [Times: user=0.01 sys=0.00, real=0.01 secs]
    [110810_050218994][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [110810_050219092][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] java.io.FileNotFoundException: /oracle/appl/orad1at2/product/comn/temp/110810_050218056/xdo1_2.pdf (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at oracle.apps.xdo.batch.DeliveryHelper.getEmailDeliveryRequest(DeliveryHelper.java:221)
         at oracle.apps.xdo.batch.DeliveryHelper.addRequest(DeliveryHelper.java:466)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.addDeliveryRequest(DocumentDelivery.java:204)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitCoreDeliveryRequests(DocumentDelivery.java:143)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(BurstingProcessorEngine.java:3326)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(BurstingProcessorEngine.java:2165)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(BurstingProcessorEngine.java:2102)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(BurstingProcessorEngine.java:2025)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1145)
         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:2206)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(BurstingProcessorEngine.java:1835)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1148)
         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:974)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(BurstingProcessorEngine.java:917)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    [110810_050219094][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Called
    [110810_050219095][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): No default server found for this request type: smtp_email
    [110810_050219096][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [TEMP_DIR:String] [oracle/appl/orad1at2/product/comn/temp/110810_050218056]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [HOST:String] [is053.abc.com]
    [SMTP_TO_RECIPIENTS:String] [[email protected]]
    [SMTP_ENCODING:String] **
    [SMTP_CONTENT_TYPE:String] [text/html;charset=UTF-8]
    [SMTP_SUBJECT:String] [- ]
    [BUFFERING_MODE:Boolean] [true]
    [SMTP_FROM:String] []
    [TEMP_FILE_PREFIX:String] [dlvr]
    [PORT:Integer] [(java.lang.Integer]
    [RETRY:Integer] [0]
    [SMTP_ATTACHMENT:Attachment] [(oracle.apps.xdo.delivery.smtp.Attachment]
    [RETRY_INTERVAL:Integer] [60000]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [SMTP_REPLY_TO:String] [[email protected]]
    [SMTP_CHARSET:String] [UTF-8]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [110810_050219097][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is ON.
    [110810_050219097][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): TEMP_DIR found, start document buffering : /oracle/appl/orad1at2/product/comn/temp/110810_050218056
    [110810_050219098][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Starting document buffering.
    [110810_050219133][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Creating temporary file for buffering : /oracle/appl/orad1at2/product/comn/temp/110810_050218056/dlvrt6raN7DEYH26913.tmp
    [110810_050219137][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): 1528 bytes have been written to the temporary file.
    [110810_050219137][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] filterDocument(): Starting document preprocessing.
    [110810_050219137][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] filterDocument(): No native command found for preprocessing, exiting.
    [110810_050219138][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] backupDocument(): Finished document buffering.
    [110810_050219138][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Start reading the buffered document file. : /oracle/appl/orad1at2/product/comn/temp/110810_050218056/dlvrt6raN7DEYH26913.tmp
    [110810_050219139][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [110810_050219139][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [110810_050219140][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): This request has never been submitted before.
    [110810_050219161][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] Start parsing HTML file...(filename:null)(current dir:null)
    [110810_050219163][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] 1th <img>/<embed> tag - Beginning of the tag.
    [110810_050219163][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] 1th <img>/<embed> tag - Reached the end of the tag.
    [110810_050219164][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] 1th <img>/<embed> tag - Original image src :
    [110810_050219164][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] 1th <img>/<embed> tag - source is NOT reachable. Value will be used as is.
    [110810_050219166][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] Reached the end of InputStream.
    [110810_050219171][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[null], [content-type]=[text/html], [index]=[-1], [disposition]=[null]
    [110810_050219173][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : UTF-8
    [110810_050219173][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : B
    [110810_050219174][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [110810_050219174][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT]
                        <html>
                             <head>
                                  <style type="text/css">
                                       body {font-family:Arial}
                                  </style>
                             </head>
                        <body>
    <!--                    <img src=""/>
    -->
    ---------------------------------------------------------- Oracle----------------------------------------------------------------
    System Administrator Action:
    Not applicable.
    Regards
    The information transmitted is intended only for the addressee and may contain confidential,
    proprietary and/or privileged material. Any unauthorized review, distribution or other use of
    or the taking of any action in reliance upon this information is prohibited. If you received
    this in error, please contact the sender and delete any copies.
    </body></html>
    [110810_050219267][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character set for MIME headers : UTF-8
    [110810_050219267][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character encoding for MIME headers : B
    [110810_050219282][oracle.apps.xdo.batch.DeliveryHelper][EXCEPTION] javax.mail.internet.AddressException: Illegal address in string ``''
         at javax.mail.internet.InternetAddress.<init>(InternetAddress.java:68)
         at oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler.submitRequest(SMTPDeliveryRequestHandler.java:747)
         at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(AbstractDeliveryRequest.java:1270)
         at oracle.apps.xdo.batch.DeliveryHelper.submitRequests(DeliveryHelper.java:627)
         at oracle.apps.xdo.batch.bursting.DocumentDelivery.submitCoreDeliveryRequests(DocumentDelivery.java:151)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(BurstingProcessorEngine.java:3326)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(BurstingProcessorEngine.java:2165)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(BurstingProcessorEngine.java:2102)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.globalDataEndElement(BurstingProcessorEngine.java:2025)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1145)
         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:2206)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingEndElement(BurstingProcessorEngine.java:1835)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endElement(BurstingProcessorEngine.java:1148)
         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:974)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(BurstingProcessorEngine.java:917)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:293)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    [110810_050219283][][EXCEPTION] Error!! Could not deliver the output for Delivery channel:null . Please check the Log for error details..
    10.512: [GC 10.512: [DefNew: 1204K->61K(1984K), 0.0072295 secs]10.520: [Tenured: 4232K->2292K(4352K), 0.2700526 secs] 5284K->2292K(6336K), 0.2776002 secs] [Times: user=0.28 sys=0.00, real=0.28 secs]
    [110810_050219578][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    [110810_050219580][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    /*oracle/appl/orad1at2/product/comn/temp/110810_050218056/xdo1_2.pdf (No such file or directory)*
    java.io.FileNotFoundException: /oracle/appl/orad1at2/product/comn/temp/110810_050218056/xdo1_2.pdf (No such file or directory)     at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:532)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:299)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    [110810_050219666][][STATEMENT] /oracle/appl/orad1at2/product/comn/temp/110810_050218056 deleted successfully...
    Heap
    def new generation total 1984K, used 199K [0xb1000000, 0xb1220000, 0xb4780000)
    eden space 1792K, 11% used [0xb1000000, 0xb1031d68, 0xb11c0000)
    from space 192K, 0% used [0xb11c0000, 0xb11c0000, 0xb11f0000)
    to space 192K, 0% used [0xb11f0000, 0xb11f0000, 0xb1220000)
    tenured generation total 6104K, used 4292K [0xb4780000, 0xb4d76000, 0xd0400000)
    the space 6104K, 70% used [0xb4780000, 0xb4bb10c0, 0xb4bb1200, 0xb4d76000)
    compacting perm gen total 12288K, used 7320K [0xd0400000, 0xd1000000, 0xd8400000)
    the space 12288K, 59% used [0xd0400000, 0xd0b26118, 0xd0b26200, 0xd1000000)
    ro space 8192K, 80% used [0xd8400000, 0xd8a73430, 0xd8a73600, 0xd8c00000)
    rw space 12288K, 59% used [0xd8c00000, 0xd9330510, 0xd9330600, 0xd9800000)
    *************LOG FILE Messages END****************************
    Thanks

    Hi Edmonton,
    Check the email address that you're trying to send to, from your log below:
    javax.mail.internet.AddressException: Illegal address in string ``''
    Regards,
    Gareth

  • The URL ( xdo://AR.XXINV_REPRINT.en.US/?getSource=true ) is invalid.

    Hi There,
    I am getting below error when bursting a report in Oracle eBusiness Suite(XML Publisher).
    This report works fine in DEV and TEST, but started giving below error when migrated to PROD:
    XML/BI Publisher Version : 5.6.3
    Request ID: 2338377
    All Parameters: ReportRequestID=2338376:DebugFlag=Y
    Report Req ID: 2338376
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:TL1RDB800
    Preparing parameters
    null output =/oraproduct/apps/EBIZD/ebizdcomn/admin/out/EBIZD_tl1rdb800/o2338377.out
    inputfilename =/oraproduct/apps/EBIZD/ebizdcomn/admin/out/EBIZD_tl1rdb800/o2338376.out
    Data XML File:/oraproduct/apps/EBIZD/ebizdcomn/admin/out/EBIZD_tl1rdb800/o2338376.out
    Set Bursting parameters..
    Temp. Directory:/oratemp/EBIZD/ConsolidatedBilling
    [030413_040224973][][STATEMENT] Oracle XML Parser version ::: Oracle XDK Java 9.0.4.0.0 Production
    Start bursting process..
    [030413_040224980][][STATEMENT] /oratemp/EBIZD/ConsolidatedBilling
    [030413_040225003][][STATEMENT] BurstingProcessor ::: Property Key ---> burstng-source
    [030413_040225003][][STATEMENT] Inside burstingConfigParser
    [030413_040225005][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030413_040225108][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030413_040225109][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    [030413_040225142][][EXCEPTION] The URL ( xdo://AR.XXINV_REPRINT.en.US/?getSource=true ) is invalid.
    [030413_040225143][oracle.apps.xdo.batch.BurstingProcessorEngine][EXCEPTION] java.lang.NullPointerException
         at com.sun.java.util.collections.Hashtable.put(Hashtable.java:381)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.validateTemplateLocation(BurstingProcessorEngine.java:3394)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(BurstingProcessorEngine.java:2084)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(BurstingProcessorEngine.java:2054)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(BurstingProcessorEngine.java:1214)
         at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:105)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:276)
         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)
    [030413_040225143][][ERROR] The template xdo://AR.XXINV_REPRINT.en.US/?getSource=true can't be fetched.
    [030413_040225143][][STATEMENT] template Filenull
    [030413_040225143][][EXCEPTION] Error while generating the Document...
    [030413_040225144][][EXCEPTION] java.lang.NullPointerException
         at com.sun.java.util.collections.Hashtable.containsKey(Hashtable.java:300)
         at oracle.apps.xdo.batch.bursting.ProcessDocument.getXSLFile(ProcessDocument.java:393)
         at oracle.apps.xdo.batch.bursting.ProcessDocument.processTemplate(ProcessDocument.java:255)
         at oracle.apps.xdo.batch.bursting.ProcessCoreDocument.processLayout(ProcessCoreDocument.java:112)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(BurstingProcessorEngine.java:3206)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(BurstingProcessorEngine.java:2112)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstDocument(BurstingProcessorEngine.java:2054)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(BurstingProcessorEngine.java:1214)
         at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:105)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:276)
         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)
    [030413_040225226][][STATEMENT] initConfig(): config file used :null
    [030413_040225227][][STATEMENT] initCustomFactories(): loading custom delivery channels :{}
    [030413_040225227][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] initConfig(): loading default properties :{}
    [030413_040225227][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    Bursting process complete..
    Generating Bursting Status Report..
    --Exception
    /oratemp/EBIZD/ConsolidatedBilling/030413_040224997/___.pdf (No such file or directory)
    java.io.FileNotFoundException: /oratemp/EBIZD/ConsolidatedBilling/030413_040224997/___.pdf (No such file or directory)
         at java.io.FileInputStream.open(Native Method)
         at java.io.FileInputStream.<init>(FileInputStream.java:106)
         at java.io.FileInputStream.<init>(FileInputStream.java:66)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.zipOutputFiles(JCP4XDOBurstingEngine.java:503)
         at oracle.apps.xdo.oa.cp.JCP4XDOBurstingEngine.runProgram(JCP4XDOBurstingEngine.java:275)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:161)
    [030413_040225249][oracle.apps.xdo.batch.bursting.FileHandler][STATEMENT] /oratemp/EBIZD/ConsolidatedBilling/030413_040224997/xdo0.tmp is deleted
    [030413_040225254][oracle.apps.xdo.batch.bursting.FileHandler][STATEMENT] /oratemp/EBIZD/ConsolidatedBilling/030413_040224997/xdo1.tmp is not deleted
    Below is the Bursting Control File:
    <?xml version="1.0" encoding="UTF-8"?>
    <xapi:requestset xmlns:xapi="http://xmlns.oracle.com/oxp/xapi" type="bursting">
    <xapi:request select="/XXINV/LIST_G_SETUP/G_SETUP/LIST_G_SITES/G_SITES">
    <xapi:delivery>
    <xapi:filesystem output="${RDF_CUSTOMER_NAME}_${RDF_CUTOFF_DATE}_${BILLING_NO}_${CUSTOMER_NUMBER}.pdf"/>
    </xapi:delivery>     
    <xapi:document output-type="pdf">
    <xapi:template type="rtf" location="xdo://AR.XXINV_REPRINT.en.US/?getSource=true">
    </xapi:template>
    </xapi:document>
    </xapi:request>
    </xapi:requestset>
    Thanks
    Yogi

    Hi,
    Found the cause of the error:
    When the Data Definition was migrated from DEV to PROD using the ldt files, somehow it dropped the default territory which is 'United States'.
    Hence the path of the template xdo://AR.XXINV_REPRINT.en.US is throwing an error.
    The below query can be used to determine the value that should go in the bursting control file in the path:
    SELECT APPLICATION_SHORT_NAME||'.'||
    TEMPLATE_CODE||'.'||
    DEFAULT_LANGUAGE ||'.'||
    DEFAULT_TERRITORY
    FROM XDO_TEMPLATES_VL
    WHERE TEMPLATE_CODE like '%XXINV%REPRINT%'
    REUSULT:
    AR.XXINV_REPRINT.en.00
    Hence AR.XXINV_REPRINT.en.US should be replaced with AR.XXINV_REPRINT.en.00 in the bursting control file which will fix the issue.
    Thanks
    Yogi

  • Can't Publish to oradav on Oracle Portal 9.0.4

    I've set up the <url portal>/dav_portal/portal so I'm able to publish to it by dragging and dropping files from Windows Explorer, and everything works fine.
    Then I set up BI Publisher version 10.1.3.3.2 and the scheduler works fine with e-mails and through ftp. However no WebDav publishing, it always fails with the following message:
         Status          Failed
         System Message          
    oracle.apps.xdo.service.delivery.DeliveryException: oracle.apps.xdo.delivery.DeliveryException: Connection timed out while waiting response from server. (timeout = 60000)
         at oracle.apps.xdo.service.delivery.impl.DeliveryServiceImpl.deliverToWebDAV(DeliveryServiceImpl.java:716)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.deliver(XDOJob.java:1433)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:436)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Caused by: oracle.apps.xdo.delivery.DeliveryException: Connection timed out while waiting response from server. (timeout = 60000)
         at oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequestHandler.submitRequest(Unknown Source)
         at oracle.apps.xdo.delivery.AbstractDeliveryRequest.submit(Unknown Source)
         at oracle.apps.xdo.service.delivery.impl.DeliveryServiceImpl.deliverToWebDAV(DeliveryServiceImpl.java:710)
         ... 4 more
    Caused by: oracle.apps.xdo.delivery.DeliveryException: Connection timed out while waiting response from server. (timeout = 60000)
         at oracle.apps.xdo.delivery.http.HTTPClient.submitRequest(Unknown Source)
         at oracle.apps.xdo.delivery.http.HTTPClient.openRequest(Unknown Source)
         ... 7 more
    The host name, user and password are the same I've used to publish via web folders with Windows Explorer, so these must be ok. I've tried the athentication types: none, basic and digest with the same results. SSL encryption yields a different error message (includes the message "plain text?" which I'm guessing is because either server or client hasn't SSL enabled). So as my last resort I'm asking the BI Publisher gurus here at the Oracle forums; my instance is running with the debug option on and here's the contents of xdo.log right after the error occurs:
    [031208_031519812][][STATEMENT] Preliminary security check passed. Start scheduling. [REPORT_URL]=[Business Intelligence/Teste/Teste.xdo], [USERNAME]=[administrator]
    [031208_031519812][][STATEMENT] Write connection pool max:10, min:5, total:5, available:5
    [031208_031519843][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031519843][][STATEMENT] Succeeded to insert the job info to the database : [ID]=[66]
    [031208_031519875][][EXCEPTION] Succeeded to schedule the job : [ID]=[66]
    [031208_031519890][][STATEMENT] ToplinkDataHandler.getJobs() : called.
    [031208_031519890][][STATEMENT] ToplinkDataHandler.getJobs() : obtaining client session.
    [031208_031519890][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031519890][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031519890][][STATEMENT] ToplinkDataHandler.queryJobs() : calling executeQuery().
    [031208_031519906][][STATEMENT] ToplinkDataHandler.queryJobs() : finished calling executeQuery().
    [031208_031519906][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031519921][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] Scheduler is starting the job.
    [031208_031519921][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] Inserting the output info into the database.
    [031208_031519921][][STATEMENT] Write connection pool max:10, min:5, total:5, available:5
    [031208_031519953][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031519953][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Done inserting the output info into the database.
    [031208_031519953][][STATEMENT] [ID:66] Time elapsed for history insertion : 1205345719953, time from beggining : 32
    [031208_031519953][][STATEMENT] initConfig(): config input stream was used.
    [031208_031519953][][STATEMENT] initCustomFactories(): loading custom delivery channels :{}
    [031208_031519953][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] initConfig(): loading default properties :{}
    [031208_031522921][][STATEMENT] The job passed the security check.
    [031208_031522921][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Tmp file for document : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\cache\xmlp43228663.tmp
    [031208_031522921][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Tmp file for data : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\cache\xmlp2530792.tmp
    [031208_031522937][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Start processing the document.
    [031208_031522937][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [031208_031522937][][STATEMENT] Logger.init(): LogDir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\xmldebug
    [031208_031523421][][STATEMENT] Template parsing started...
    [031208_031523421][][STATEMENT] Data Template ......
    [031208_031523421][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1e677c4
    [031208_031523421][][STATEMENT] Inside parameterParser...
    [031208_031523421][][STATEMENT] Inside dataQueryParser...
    [031208_031523421][][STATEMENT] Template parsing completed...
    [031208_031523421][][STATEMENT] include_parameters=false
    [031208_031523437][][STATEMENT] Start process Data
    [031208_031523437][][STATEMENT] Process Data ...
    [031208_031523437][][STATEMENT] Writing Data ...
    [031208_031523437][][STATEMENT] Sql Query : select     Tempo.Mês as Mês,
         "Fatos Gestão Origens"."Vl Contrato Pago" as "Vl Contrato Pago",
         Origem.Regional as Regional,
         "Tipo Produto"."Tipo Produto" as "Tipo Produto"
    from     DMGGER."Tipo Produto" "Tipo Produto",
         DMGGER.Origem Origem,
         DMGGER."Fatos Gestão Origens" "Fatos Gestão Origens",
         DMGGER.Tempo Tempo
    [031208_031526703][][EVENT] Data Generation Completed...
    [031208_031526703][][EVENT] Total Data Generation Time 3.0 seconds
    [031208_031527187][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [031208_031527187][][STATEMENT] Logger.init(): LogDir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\xmldebug
    [031208_031527187][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor constructor is called.
    [031208_031527187][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor has been initialized without default config.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setLocale is called with 'en-US'.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setTemplate(InputStream)is called.
    [031208_031527203][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [031208_031527203][][STATEMENT] Logger.init(): LogDir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\xmldebug
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_031208_031527203_fo_data_177.xsl' is created.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setData(InputStream) is called.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_031208_031527203_fo_data_178.xml' is created.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_031208_031527203_fo_out79.out' is created.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutput(OutputStream)is called.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.setOutputFormat(byte)is called with ID=3.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] FOProcessor.generate() called.
    [031208_031527203][oracle.apps.xdo.template.FOProcessor][STATEMENT] createFO(Object, Object) is called.
    [031208_031527234][oracle.apps.xdo.common.xml.XSLT10gR1][STATEMENT] oracle.xdo Developers Kit 10.1.0.5.0 - Production
    [031208_031527234][][STATEMENT] XSLT temporary file (D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\cxmlATrjlV6y3r9413.dat) is set.
    [031208_031527453][oracle.apps.xdo.template.FOProcessor][STATEMENT] Log file 'xdo_031208_031527203_fo_fo_180.fo' is created.
    [031208_031527453][][STATEMENT] XSL-T time used: 235
    [031208_031527453][oracle.apps.xdo.template.FOProcessor][STATEMENT] Calling FOProcessingEngine.process()
    [031208_031527453][][STATEMENT] Using optimized xslt
    [031208_031527453][][STATEMENT] Temporary file created: D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\xdoLoFPbh8dKw9414.tmp
    [031208_031527453][][STATEMENT] [ HTML GENERATOR ]---------------------------------------------
    [031208_031527453][][STATEMENT] XDO version = Oracle BI Publisher 10.1.3.3.2
    [031208_031527453][][STATEMENT] java.home = C:\java\jdk\jre
    [031208_031527453][][STATEMENT] XDO_TOP = null
    [031208_031527453][][STATEMENT] Config Path = null
    [031208_031527453][][STATEMENT] Debug Cfg Path= C:\java\jdk\jre\lib\xdodebug.cfg
    [031208_031527453][][STATEMENT] Font dir = C:\java\jdk\jre\lib\fonts\
    [031208_031527453][][STATEMENT] Locale = en-US
    [031208_031527453][][STATEMENT] [ HTML GENERATOR PROPERTIES ]----------------------------------
    [031208_031527468][][STATEMENT] fo-image-handling-ver=5.5
    [031208_031527468][][STATEMENT] html-css-base-uri=/xmlpserver/xdo/tmp/
    [031208_031527468][][STATEMENT] html-css-dir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo/tmp/
    [031208_031527468][][STATEMENT] html-css-embedding=embed-to-header
    [031208_031527468][][STATEMENT] html-image-base-uri=/xmlpserver/xdo/tmp/
    [031208_031527468][][STATEMENT] html-image-dir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo/tmp/
    [031208_031527468][][STATEMENT] html-output-body-only=false
    [031208_031527468][][STATEMENT] html-output-charset=UTF-8
    [031208_031527468][][STATEMENT] html-output-width-in-percentage=true
    [031208_031527468][][STATEMENT] html-outputtype=xhtml
    [031208_031527468][][STATEMENT] html-replace-smartquotes=true
    [031208_031527468][][STATEMENT] html-show-footer=true
    [031208_031527468][][STATEMENT] html-show-header=true
    [031208_031527468][][STATEMENT] make-accessible=false
    [031208_031527468][][STATEMENT] system-temp-dir=D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo/tmp/
    [031208_031527468][][STATEMENT] ------------------------------------------------------
    [031208_031527468][][STATEMENT] Rendering page [1]
    [031208_031527468][oracle.apps.xdo.common.font.FontFactory$FontDef][STATEMENT] Type1 font created: Helvetica
    [031208_031527500][][STATEMENT] Phase2 time used: 32ms
    [031208_031527500][][STATEMENT] Total time used: 47ms for processing XSL-FO
    [031208_031527500][][STATEMENT] FO+Gen time used: 47
    [031208_031527500][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) is called.
    [031208_031527500][oracle.apps.xdo.template.FOProcessor][STATEMENT] clearInputs(Object) done. All inputs are cleared.
    [031208_031527500][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Finished processing the document.
    [031208_031527500][][STATEMENT] [ID:66] Time elapsed for report processing : 7547, time from begining : 7579
    [031208_031527500][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Document content type : text/html
    [031208_031527500][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Delivery 0 : Start processing WebDAV delivery
    [031208_031527500][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :webdav
    [031208_031527500][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] submit(): Called
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] setDefaultServerProperties(): Default properties of server 'PANDW001' are loaded. {PROXY_AUTHTYPE:String=none, AUTHTYPE:String=digest, HOST:String=pandw001.panamericano.com.br, ENCTYPE:String=none, server-type=webdav}
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [TEMP_DIR:String] [D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo/tmp]
    [server-type] [webdav]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [HOST:String] [pandw001.panamericano.com.br]
    [PROXY_AUTHTYPE:String] [none]
    [USERNAME:String] [portal]
    [PASSWORD:String] [welcome1]
    [WEBDAV_REMOTE_FILENAME:String] [Teste_2.html]
    [BUFFERING_MODE:Boolean] [true]
    [WEBDAV_USE_FULL_URL:String] [true]
    [AUTHTYPE:String] [digest]
    [WEBDAV_REMOTE_DIRECTORY:String] [dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [WEBDAV_USE_CHUNKED_BODY:String] [false]
    [RETRY:Integer] [0]
    [ENCTYPE:String] [none]
    [RETRY_INTERVAL:Integer] [60000]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [CONTENT_TYPE:String] [text/html;charset=UTF-8]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is ON.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] submit(): TEMP_DIR found, start document buffering : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo/tmp
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] backupDocument(): Starting document buffering.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] backupDocument(): Creating temporary file for buffering : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\dlvrJx5cxXykOd9415.tmp
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] backupDocument(): 5256 bytes have been written to the temporary file.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] filterDocument(): Starting document preprocessing.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] filterDocument(): No native command found for preprocessing, exiting.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] backupDocument(): Finished document buffering.
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] submit(): Start reading the buffered document file. : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\tmp\dlvrJx5cxXykOd9415.tmp
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [031208_031527515][oracle.apps.xdo.delivery.webdav.WebDAVDeliveryRequestHandler][STATEMENT] submitRequest(): taget URL :http://pandw001.panamericano.com.br:80/dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] openRequest(request) called
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] openConnection() called - opening pandw001.panamericano.com.br:80
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] openConnection(): Start non-SSL connection.
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] start DIGEST auth handshake
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] generateRequestHeader() called.
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] generateRequestHeader(): generated request header
    PUT http://pandw001.panamericano.com.br:80/dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html HTTP/1.1
    Host: pandw001.panamericano.com.br
    User-Agent: Oracle BI Publisher 10.1.3.3.2
    Connection: Keep-Alive
    Content-Length: 5
    Content-Type: text/html;charset=UTF-8
    <<<
    [031208_031527515][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] submitRequest() called
    [031208_031537062][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537062][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537062][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537062][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537078][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537187][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537203][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537203][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537203][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537203][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537203][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537218][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537218][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537218][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537218][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537218][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537218][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537218][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537218][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537218][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537250][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537250][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537250][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537250][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537250][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537250][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537250][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537250][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537250][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537265][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537265][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537265][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537265][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537281][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537281][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537281][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537281][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537281][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537281][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537296][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537296][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537296][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537296][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537296][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537296][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537296][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537296][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537312][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537312][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537312][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537312][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537312][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537312][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537312][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537312][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537312][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537328][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537343][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537343][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537343][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537343][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537343][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537343][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537343][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537343][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537359][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537359][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537359][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537359][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537359][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537359][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537359][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537359][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537359][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537375][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537375][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537375][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537375][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537390][][STATEMENT] ToplinkDataHandler.getOutput() : called
    [031208_031537390][][STATEMENT] ToplinkDataHandler.getOutput() : obtaining client session.
    [031208_031537390][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537390][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537390][][STATEMENT] ToplinkDataHandler.queryOutput() : calling executeQuery().
    [031208_031537406][][STATEMENT] ToplinkDataHandler.queryOutput() : finished calling executeQuery().
    [031208_031537406][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031537406][][STATEMENT] Read connection pool max:20, min:5, total:5, available:5
    [031208_031537406][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031627531][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] closeConnection() called
    [031208_031627531][oracle.apps.xdo.delivery.http.HTTPClient][STATEMENT] closeConnection() exiting
    [031208_031642531][][STATEMENT] [ID:66] Time elapsed for delivery : 75031, time from beggining : 82610
    [031208_031642531][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] tmpFile1 for zipping up document : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\cache\xmlp46449166.tmp
    [031208_031642531][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] tmpFile2 for zipping up document : D:\oracle\product\10.1.3.3.0\BIEE\oc4j_bi\j2ee\home\applications\xmlpserver\xmlpserver\xdo\cache\xmlp65297508.tmp
    [031208_031642531][][STATEMENT] Reached the end of InputStream.
    [031208_031642531][][STATEMENT] Writing the parsed HTML file to the zip file : index.html
    [031208_031642531][][STATEMENT] Writing the original HTML file to the zip file : original.html
    [031208_031642531][][STATEMENT] [ID:66] Time elapsed for report archiving : 0, time from beggining : 82610
    [031208_031642531][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Updating the output info in the database.
    [031208_031642531][][STATEMENT] Write connection pool max:10, min:5, total:5, available:5
    [031208_031642562][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [031208_031642562][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Done updating the output info in the database.
    [031208_031642562][][STATEMENT] [ID:66] Time elapsed for updating history in db : 31, time from beggining : 82641
    [031208_031642562][][STATEMENT] [ID:66] Time elapsed for notification : 0, time from beggining : 82641
    [031208_031642562][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:66] Scheduler finished the job. Exiting...

    Update: Apparently the problem is related to authentication, here's the Apache's error log for the same request above:
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: DAV [Begin Request PUT][dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html]
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: Using dbcon (5412-0), usage count = 7
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: API [dav_ora_get_resource_for_put]
    BEGIN
    portal.wwdav_api_driver.GET_RESOURCE_FOR_PUT(
         (0):p_ctx,
         (1):p_path,
         (2):p_parentpath,
         (3):p_membername,
         (4):p_contenttype,
         (5):p_extension,
         (6):p_pathexists,
         (7):p_path_element_type,
         (8):p_docid,
         (9):p_lobhandle,
         (10):p_lockcount,
         (11):p_propcount,
         (12):p_is_locknull,
         (13):p_dbstatechanged,
         (14):p_status,
         (15):p_status_text );
    END;
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: API [dav_ora_get_resource_for_put][dbcon 5412-0][0 ms][PUT /dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html HTTP/1.1]
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] ORA-20504: User not authorized to perform the requested operation
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: Using dbcon (5412-0), usage count = 7
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: API [dav_ora_finalize_request]
    BEGIN
    portal.wwdav_api_driver.FINALIZE_REQUEST(
         (0):p_ctx,
         (1):p_dbstatechanged,
         (2):p_http_status,
         (3):p_rollback_suggested,
         (4):p_docid,
         (5):p_is_existing_resource,
         (6):p_lobhandle,
         (7):p_contentlength,
         (8):p_contenttype,
         (9):p_status,
         (10):p_status_text );
    END;
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: API [dav_ora_finalize_request][dbcon 5412-0][0 ms][PUT /dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html HTTP/1.1]
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1]
    Bind values for call:
         (0):{
         <ORADAV>
              <DAVPARAM>
                   <ORACONTAINERNAME>wwdav</ORACONTAINERNAME>
                   <ORACOOKIEMAXAGE>28800</ORACOOKIEMAXAGE>
                   <ORAPACKAGENAME>portal.wwdav_api_driver</ORAPACKAGENAME>
                   <ORAPASSWORD>welcome1</ORAPASSWORD>
                   <ORASERVICE>cn=iasdb,cn=oraclecontext</ORASERVICE>
                   <ORATRACEEVENTS>request</ORATRACEEVENTS>
                   <ORATRACELEVEL>4</ORATRACELEVEL>
                   <ORAUSER>portal</ORAUSER>
              </DAVPARAM>
              <INTERNAL>
                   <OraDAVAPICount>2</OraDAVAPICount>
                   <OraDAVModVersion>1.0.3.2.3-0132 (OraDAV enabled)</OraDAVModVersion>
              </INTERNAL>
              <REQUEST>
                   <Method>PUT</Method>
                   <URITrailingSlash>F</URITrailingSlash>
                   <Calypso-Control>H_Req,2886795869,80</Calypso-Control>
                   <Chronos>aggregate</Chronos>
                   <ClientIP>172.17.2.97</ClientIP>
                   <Connection>Keep-Alive, Calypso-Control</Connection>
                   <Content-Length>5</Content-Length>
                   <Content-Type>text/html;charset=UTF-8</Content-Type>
                   <Host>pandw001.panamericano.com.br</Host>
                   <Oracle-Cache-Version>9.0.4</Oracle-Cache-Version>
                   <Oracle-ECID>3214324639936,1</Oracle-ECID>
                   <SSL-Https>off</SSL-Https>
                   <Surrogate-Capability>orcl="webcache/1.0 Surrogate/1.0 ESI/1.0 ESI-Inline/1.0 ESI-INV/1.0 ORAESI/9.0.4"</Surrogate-Capability>
                   <User-Agent>Oracle BI Publisher 10.1.3.3.2</User-Agent>
                   <URI>/dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html</URI>
              </REQUEST>
         </ORADAV>
         (1):0
         (2):401
         (3):0
         (4):{}
         (5):-1
         (6):
         (7):0
         (8):{}
         (9):0
         (10):{}
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: Releasing connection [5412-0], usage count = 7
    [Thu Mar 13 10:26:02 2008] [notice] [client 172.17.2.93] [ecid: 3214324639936,1] OraDAV: DAV [Request total PUT][dav_portal/portal/PORTAL_PANAMERICANO/FILIAL_3/Teste_2.html][0 ms]

  • How to send an email to the customer after generating Invoice in Receivable

    Hi,
    package oracle.apps.xdo.ebsdelivery;
    import oracle.apps.xdo.delivery.DeliveryManager;
    import oracle.apps.xdo.delivery.DeliveryRequest;
    import oracle.apps.xdo.delivery.DeliveryPropertyDefinitions;
    import java.sql.Connection;
    import java.sql.DriverManager;
    import java.sql.PreparedStatement;
    import java.sql.ResultSet;
    import java.sql.SQLException;
    import java.sql.Statement;
    public class EBSEmailDelivery
    public EBSEmailDelivery(String rRequestID, String rFile, String rUser)
         int userid = Integer.parseInt(rUser);
         int requestid = Integer.parseInt(rRequestID);
    try {
              //get the report title
    String repTitle = getReportTitle(requestid);
    // create delivery manager instance
    DeliveryManager delMgr = new DeliveryManager();
    // create a delivery request
    DeliveryRequest delReq = delMgr.createRequest
                        (DeliveryManager.TYPE_SMTP_EMAIL);
         // set email subject
         delReq.addProperty(DeliveryPropertyDefinitions.SMTP_SUBJECT,
                        "EBS Report:"+repTitle +" for request: "+ rRequestID);
    // set SMTP server host
    delReq.addProperty(
    DeliveryPropertyDefinitions.SMTP_HOST, "smtp.bizmail.yahoo.com");
    // set the sender email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_FROM,
                   "[email protected]");
    // set the destination email address
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_TO_RECIPIENTS,
                   getEmail(userid) );
    // set the content type of the email body
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_TYPE,
                   "application/pdf");
    // set the document file name appeared in the email
    delReq.addProperty(DeliveryPropertyDefinitions.SMTP_CONTENT_FILENAME,
                   repTitle+rRequestID+".pdf");
    // set the document to deliver
    delReq.setDocument(rFile);
    // submit the request
    delReq.submit();
    // close the request
    delReq.close();
    catch (Exception e) {
    e.printStackTrace();
    static Connection getConnection() throws SQLException, Exception
    String fDriverName = "oracle.jdbc.driver.OracleDriver";
    String fDbName = "DEV";
    String fServer = "centipede.bluestar.cvg0";
    String fPort = "1521";
    String fUserName = "apps";
    String fPassword = "apps";
    Class.forName(fDriverName).newInstance();
    Connection dbconn = DriverManager.getConnection
    ("jdbc:oracle:thin:@"+fServer+":"+fPort+":"
                        +fDbName, fUserName, fPassword);
    return dbconn;
    private String getReportTitle(int requestID)
    String reportName = "";
    try
    // Try and geta connection to the db
    Connection conn = getConnection();
    // fetch the report name based on the request id
    PreparedStatement getTitle = conn.prepareStatement(
              "select user_concurrent_program_name \n" +
              "from fnd_concurrent_requests fcr,\n" +
              "fnd_concurrent_programs_vl fcpv\n" +
              "where fcr.concurrent_program_id = fcpv.concurrent_program_id\n" +
              "and request_id = ?");
         //get the title
    getTitle.setInt(1,requestID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet titleRslt = getTitle.executeQuery();
    titleRslt.next();
    reportName = titleRslt.getString(1);
    System.out.println(reportName);
    //Clean up
    titleRslt.close();
    getTitle.close();
    conn.close();
    catch (SQLException eSQL)
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    catch (Exception e)
    System.err.println("Exception thrown");
    e.printStackTrace();
    return reportName;
    private String getEmail(int userID)
    String eMailID = "";
    try
    // Try and geta connection to the db
    Connection conn = getConnection();
    PreparedStatement getEmail = conn.prepareStatement(
              "select email_address from fnd_user where user_id = ?");
    getEmail.setInt(1,userID);
    // get the query result in to a result set and then assign the
    // value to a variable we can pass back to the calling method
    ResultSet emailRslt = getEmail.executeQuery();
    emailRslt.next();
    eMailID = emailRslt.getString(1);
    System.out.println(eMailID);
    //Clean up
    emailRslt.close();
    getEmail.close();
    conn.close();
    catch (SQLException eSQL)
    System.err.println("Could not create connection");
    eSQL.printStackTrace();
    catch (Exception e)
    System.err.println("Exception thrown");
    e.printStackTrace();
    return eMailID;
    public static final void main(final String[] args)
    // Arguments passed
    //1.$PROFILES$.CONC_REQUEST_ID
    //2.$PROFILES$.FILENAME
    //3.$PROFILES$.USER_ID
    EBSEmailDelivery ebsMail = new EBSEmailDelivery(args[0], args[1], args[2]);
    By using the above code we created a java class file and moved to $JAVA_TOP.
    And also we were created Executable and concurrent program.
    How can we pass request id and user id to the above program.
    Regards,
    Venky.

    There is no way to do this for Webi (at least out-of-the-box). This is probably easy via the SDK.
    This is possible for Deski and Crystal via a Publication.

  • Jobs appearing in "Report Schedules" but remain at status 'Scheduled'

    Hello Folks
    We're running Business Intelligence Publisher 10.1.3.4.2 on Linux x86
    We are sending jobs to BIP using Oracle APEX communictaing over web service.
    Here are the symptoms
    1. Request document production from within APEX
    2. APEX communicates with BIP over web service
    3. Job appears as scheduled in BIP but never gets processed.
    Additional background
    1. This process has worked for years
    2. It stopped working this month
    3. If I log in to BIP I am able to run the report either in 'View' mode or 'Export' mode
    4. This would suggest that there is nothing wrong with the template, the queries or the ability of BIP to produce a PDF
    5. The issue seems to be when a job is scheduled to burst the PDF files to save in the directtory on the server.
    6. I get the same behaviour as described above whether the job appears in the schedule as a result from a webservice request from APEX or even if I 'Schedule' the job from within BIP itself.
    I have pasted some log information below just in case it makes sense to anyone on the forum.
    Any assitance gratefully received.
    [030612_024438223][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024438223][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024438225][][STATEMENT] Template parsing started...
    [030612_024438225][][STATEMENT] Template parsing started...
    [030612_024438246][][STATEMENT] Data Template ......
    [030612_024438246][][STATEMENT] Data Template ......
    [030612_024438247][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1f47f7a
    [030612_024438247][][STATEMENT] oracle.xml.parser.v2.XMLDocument@dd5d08
    [030612_024438251][][STATEMENT] Inside properties Parser...
    [030612_024438252][][STATEMENT] Inside properties Parser...
    [030612_024438252][][STATEMENT] include_null_Element=false
    [030612_024438252][][STATEMENT] include_null_Element=false
    [030612_024438253][][STATEMENT] Inside parameterParser...
    [030612_024438254][][STATEMENT] Inside parameterParser...
    [030612_024438255][][STATEMENT] Parameter:P_CONTACT_ID Default value:
    [030612_024438255][][STATEMENT] Parameter:P_CONTACT_ID Default value:
    [030612_024438256][][STATEMENT] Inside dataQueryParser...
    [030612_024438256][][STATEMENT] Inside dataQueryParser...
    [030612_024438259][][STATEMENT] Inside dataStructureParser...
    [030612_024438259][][STATEMENT] Inside dataStructureParser...
    [030612_024438268][][STATEMENT] Group ...report
    [030612_024438268][][STATEMENT] Group ...report
    [030612_024438269][][STATEMENT] Group ...ROWSET1_ROW
    [030612_024438269][][STATEMENT] Group ...ROWSET1_ROW
    [030612_024438276][][STATEMENT] Group ...ROWSET2_ROW
    [030612_024438277][][STATEMENT] Group ...ROWSET2_ROW
    [030612_024438277][][STATEMENT] Template parsing completed...
    [030612_024438278][][STATEMENT] Group ...ROWSET3_ROW
    [030612_024438279][][STATEMENT] Template parsing completed...
    [030612_024438316][][STATEMENT] Start process Data
    [030612_024438316][][STATEMENT] Process Data ...
    [030612_024438316][][STATEMENT] P_CONTACT_ID
    [030612_024438320][][STATEMENT] Writing Data ...
    [030612_024438324][][STATEMENT] Sql Query :Q1: select *
    from vw_invoice_summary_sms
    where invoice_summary_sms_id in (select invoice_summary_id
    from invoice_print_selection
    where contact_id = :P_CONTACT_ID)
    order by 4
    [030612_024438324][][STATEMENT] 1: P_CONTACT_ID:1
    [030612_024438331][][STATEMENT] Start process Data
    [030612_024438331][][STATEMENT] Process Data ...
    [030612_024438331][][STATEMENT] P_CONTACT_ID
    [030612_024438332][][STATEMENT] Writing Data ...
    [030612_024438333][][STATEMENT] Sql Query :Q1: select *
    from vw_invoice_summary_gsm
    where invoice_summary_gsm_id in (select invoice_summary_id
    from invoice_print_selection
    where contact_id = :P_CONTACT_ID)
    order by 4
    [030612_024438333][][STATEMENT] 1: P_CONTACT_ID:1
    [030612_024438481][][STATEMENT] Sql Query :Q2: Select o.main_reference cpmn,
    o2.main_reference ppmn,
    lpad(to_char(ilig.record_number), 5,'0')seq,
    ilig.dch_calc_curr ccur,
    ilig.dch_calc_curr_net ccnet,
    ilig.dch_calc_curr_gross ccgro,
    ilig.dch_pymt_curr pcur,
    ilig.dch_pymt_curr_net pcnet,
    ilig.dch_pymt_curr_gross pcgro
    from invoice_line_item_gsm ilig
    join invoice_summary_gsm isg on isg.invoice_summary_gsm_id = ilig.invoice_summary_gsm_id
    join operator o on o.operator_id = isg.client_operator_id
    join operator o2 on o2.operator_id = isg.home_operator_id
    where ilig.INVOICE_SUMMARY_GSM_ID = :INVOICE_SUMMARY_GSM_ID
    and ilig.record_type_id = 1
    order by ilig.RECORD_NUMBER
    [030612_024438482][][STATEMENT] 1: INVOICE_SUMMARY_GSM_ID:309070
    [030612_024438490][][STATEMENT] Sql Query :Q3: Select o.main_reference rcpmn,
    o2.main_reference rppmn,
    lpad(to_char(ilig.record_number), 5,'0')rseq,
    lpad(to_char(ilig.ASSOCIATED_RECORD_NUMBER), 5,'0')rtapseq,
    ilig.dch_calc_curr rccur,
    ilig.dch_calc_curr_net rccnet,
    ilig.dch_calc_curr_gross rccgro,
    ilig.dch_pymt_curr rpcur,
    ilig.dch_pymt_curr_net rpcnet,
    ilig.dch_pymt_curr_gross rpcgro
    from invoice_line_item_gsm ilig
    join invoice_summary_gsm isg on isg.invoice_summary_gsm_id = ilig.invoice_summary_gsm_id
    join operator o on o.operator_id = isg.client_operator_id
    join operator o2 on o2.operator_id = isg.home_operator_id
    where ilig.invoice_summary_gsm_id = :INVOICE_SUMMARY_GSM_ID
    and ilig.record_type_id = 2
    and ilig.PSS_ID = 63
    order by ilig.RECORD_NUMBER
    [030612_024438490][][STATEMENT] 1: INVOICE_SUMMARY_GSM_ID:309070
    [030612_024438531][][EVENT] Data Generation Completed...
    [030612_024438531][][EVENT] Total Data Generation Time 0.0 seconds
    [030612_024438567][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [030612_024438570][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024438570][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024438593][][STATEMENT] Template parsing started...
    [030612_024438595][][STATEMENT] Data Template ......
    [030612_024438595][][STATEMENT] oracle.xml.parser.v2.XMLDocument@1ea2b4a
    [030612_024438596][][STATEMENT] Inside parameterParser...
    [030612_024438596][][STATEMENT] Inside dataQueryParser...
    [030612_024438596][][STATEMENT] Template parsing completed...
    [030612_024438596][][STATEMENT] include_parameters=false
    [030612_024438597][][STATEMENT] Start process Data
    [030612_024438597][][STATEMENT] Process Data ...
    [030612_024438598][][STATEMENT] Writing Data ...
    [030612_024438598][][STATEMENT] Sql Query : select isg.invoice_summary_gsm_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,isg.invoice_summary_gsm_id||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_gsm isg
    join operator o on o.operator_id = isg.client_operator_id
    join traffic_period tp on tp.traffic_period_id = isg.traffic_period_id
    union
    select isg.invoice_summary_gsm_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,isg.invoice_reference||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_gsm isg
    join operator o on o.operator_id = isg.client_operator_id
    join traffic_period tp on tp.traffic_period_id = isg.traffic_period_id
    [030612_024446999][][EVENT] Data Generation Completed...
    [030612_024446999][][EVENT] Total Data Generation Time 8.0 seconds
    [030612_024450332][][EVENT] Data Generation Completed...
    [030612_024451123][][EVENT] Total Data Generation Time 13.0 seconds
    [030612_024451129][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [030612_024451130][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024451130][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log
    [030612_024451165][][STATEMENT] Template parsing started...
    [030612_024451166][][STATEMENT] Data Template ......
    [030612_024451166][][STATEMENT] oracle.xml.parser.v2.XMLDocument@6f205e
    [030612_024451167][][STATEMENT] Inside parameterParser...
    [030612_024451167][][STATEMENT] Inside dataQueryParser...
    [030612_024451167][][STATEMENT] Template parsing completed...
    [030612_024451167][][STATEMENT] include_parameters=false
    [030612_024451168][][STATEMENT] Start process Data
    [030612_024451169][][STATEMENT] Process Data ...
    [030612_024451169][][STATEMENT] Writing Data ...
    [030612_024451204][][STATEMENT] Sql Query : select iss.invoice_summary_sms_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,iss.invoice_summary_sms_id||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_sms iss
    join operator o on o.operator_id = iss.client_operator_id
    join traffic_period tp on tp.traffic_period_id = iss.traffic_period_id
    union
    select iss.invoice_summary_sms_id KEY
    , o.main_reference TEMPLATE
    ,'RTF' TEMPLATE_FORMAT
    ,'en-GB' LOCALE
    ,'PDF' OUTPUT_FORMAT
    ,'FILE' DEL_CHANNEL
    ,'/data/oradata/generic/invoices' PARAMETER1
    ,iss.invoice_reference||'.pdf' PARAMETER2
    ,null PARAMETER3
    ,null PARAMETER4
    ,null PARAMETER5
    ,null PARAMETER6
    ,null PARAMETER7
    from invoice_summary_sms iss
    join operator o on o.operator_id = iss.client_operator_id
    join traffic_period tp on tp.traffic_period_id = iss.traffic_period_id
    [030612_024452964][][EVENT] Data Generation Completed...
    [030612_024452964][][EVENT] Total Data Generation Time 2.0 seconds
    [030612_024455726][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Tmp dir for bursting : /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024455726][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] [Bursting node]=[SMSInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_SMS_ID], [Delivery node]=[SMSInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_SMS_ID]
    [030612_024455743][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ARMOR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp10256934.tmp]
    [030612_024455746][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[BELKO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp69466047.tmp]
    [030612_024455748][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[DNKHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp82585904.tmp]
    [030612_024455750][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[DNKTD], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp74339796.tmp]
    [030612_024455752][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[EGYAR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp4226652.tmp]
    [030612_024456776][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ESPRT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp45349479.tmp]
    [030612_024456779][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[GBRHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp14794567.tmp]
    [030612_024456783][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[HRVVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp49428610.tmp]
    [030612_024456786][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[IRLH3], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp40329386.tmp]
    [030612_024456790][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[ISLNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp24142953.tmp]
    [030612_024456793][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[MKDNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp55564008.tmp]
    [030612_024456798][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[SRBNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp3526336.tmp]
    [030612_024456801][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[SWEHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp77789765.tmp]
    [030612_024456805][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15074] Layout template : [name]=[UKRAS], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp82203944.tmp]
    [030612_024456805][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024456808][][STATEMENT] BurstingProcessor:Property Key=>xslt-scalable : value=>true
    [030612_024456808][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOTIMEZONE : value=>'Europe/London'
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xdk-secure-io-mode : value=>true
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOCALENDAR : value=>'GREGORIAN'
    [030612_024456809][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOLOCALE : value=>'en_US'
    [030612_024456818][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030612_024456819][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: endDocument is entered <========================
    [030612_024456828][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp//030612_024456808 deleted successfully...
    [030612_024456829][oracle.apps.xdo.servlet.scheduler.XDOJob][EXCEPTION] [ID:15074] Unexpected exception occurred while running the job.
    oracle.apps.xdo.servlet.scheduler.ProcessingException: java.lang.NullPointerException
         at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2116)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.execute(XDOJob.java:358)
         at org.quartz.core.JobRunShell.run(JobRunShell.java:195)
         at org.quartz.simpl.SimpleThreadPool$WorkerThread.run(SimpleThreadPool.java:520)
    Caused by: java.lang.NullPointerException
         at com.sun.java.util.collections.Hashtable.get(Hashtable.java:321)
         at oracle.apps.xdo.batch.bursting.ProcessEnterpriseDocument.processLayout(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.addDocument2Queue(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.createBurstingDocument(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.endDocument(Unknown Source)
         at oracle.xml.parser.v2.XMLContentHandler.endDocument(XMLContentHandler.java:119)
         at oracle.xml.parser.v2.NonValidatingParser.parseDocument(NonValidatingParser.java:311)
         at oracle.xml.parser.v2.XMLParser.parse(XMLParser.java:263)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.burstingRequest(Unknown Source)
         at oracle.apps.xdo.batch.BurstingProcessorEngine.process(Unknown Source)
         at oracle.apps.xdo.servlet.scheduler.XDOJob.runBurstingReport(XDOJob.java:2008)
         ... 3 more

    Additional Log....
    [030612_024456830][][STATEMENT] Default write connection pool max:0, min:0, total:0, available:0
    [030612_024456881][][STATEMENT] ToplinkDataHandler.terminateSession() : releasing the session.
    [030612_024456892][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): called with request type :smtp_email
    [030612_024456914][oracle.apps.xdo.delivery.DeliveryManager][STATEMENT] createRequest(): exiting
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Called
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): default server properties are loaded for this request type (smtp_email) : {HOST:String=smtp.itaction.net, server-name=MailServer, PORT:Integer=25}
    [030612_024456915][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] setDefaultServerProperties(): properties defined in this request.
    [PORT:Integer] [25]
    [SMTP_FROM:String] [[email protected]]
    [SMTP_CHARSET:String] [ISO-8859-1]
    [server-name] [MailServer]
    [SMTP_CONTENT_TYPE:String] [text/plain;charset=ISO-8859-1]
    [ASYNC_TIMEOUT:Integer] [86400000]
    [SMTP_ENCODING:String] [Q]
    [HOST:String] [smtp.itaction.net]
    [RETRY:Integer] [0]
    [ASYNC_CHECK_INTERVAL:Integer] [60000]
    [SMTP_TO_RECIPIENTS:String] [[email protected]]
    [TEMP_FILE_SUFFIX:String] [.tmp]
    [SMTP_ATTACHMENT_FIRST:Boolean] [(java.lang.Boolean]
    [SMTP_SUBJECT:String] [Report Delivery Failure]
    [TEMP_FILE_PREFIX:String] [dlvr]
    [RETRY_INTERVAL:Integer] [60000]
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): BUFFERING_MODE is OFF.
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Start reading given document InputStream.
    [030612_024456916][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Calling DeliveryRequestHandler.submitRequest()
    [030612_024456917][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): called
    [030612_024456938][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): This request has never been submitted before.
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Adding an attachment ...[filename]=[null], [content-type]=[text/plain;charset=ISO-8859-1], [index]=[0], [disposition]=[inline]
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character set for MIME headers : ISO-8859-1
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Character encoding for MIME headers : Q
    [030612_024456945][oracle.apps.xdo.delivery.smtp.Attachment][STATEMENT] addAttachment(): Exiting addAttachment()
    [030612_024456981][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character set for MIME headers : ISO-8859-1
    [030612_024456981][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): Character encoding for MIME headers : Q
    [030612_024457711][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequestHandler][STATEMENT] submitRequest(): exiting
    [030612_024457711][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Finished calling DeliveryRequestHandler.submitRequest()
    [030612_024457712][oracle.apps.xdo.delivery.smtp.SMTPDeliveryRequest][STATEMENT] submit(): Process done successfully. Exiting submit()
    [030612_024515815][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Tmp dir for bursting : /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024515816][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] [Bursting node]=[GSMInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_GSM_ID], [Delivery node]=[GSMInvoice/LIST_ROWSET1_ROW/ROWSET1_ROW/INVOICE_SUMMARY_GSM_ID]
    [030612_024515824][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ARMOR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp37365181.tmp]
    [030612_024515830][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[BELKO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp26570728.tmp]
    [030612_024515837][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[BMUNI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp4387822.tmp]
    [030612_024515842][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[DNKHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp2827844.tmp]
    [030612_024515846][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[DNKTD], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp63646593.tmp]
    [030612_024515855][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ECUAL], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp80840101.tmp]
    [030612_024515862][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ECUOT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp20694448.tmp]
    [030612_024515867][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[EGYAR], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp90062593.tmp]
    [030612_024515875][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ESPRT], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp90729074.tmp]
    [030612_024515881][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[FJIDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp49194851.tmp]
    [030612_024515884][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[GBRHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp68941910.tmp]
    [030612_024515892][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[HRVVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp64755985.tmp]
    [030612_024515896][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[IRLH3], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp6093376.tmp]
    [030612_024515901][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[ISLNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp95434455.tmp]
    [030612_024515904][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[MKDNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp16294940.tmp]
    [030612_024515914][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[SRBNO], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp8851271.tmp]
    [030612_024515917][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[SWEHU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp25326232.tmp]
    [030612_024515922][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[TONDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp15285568.tmp]
    [030612_024515928][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[UKRAS], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp27288147.tmp]
    [030612_024515932][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USACB], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp48946666.tmp]
    [030612_024515937][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USACP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp54990470.tmp]
    [030612_024515944][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USANW], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp81536864.tmp]
    [030612_024515949][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAPU], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp85195258.tmp]
    [030612_024515953][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAUN], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp95134410.tmp]
    [030612_024515963][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAVI], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp93684833.tmp]
    [030612_024515965][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[USAWC], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp11836207.tmp]
    [030612_024515969][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[VUTDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp47095917.tmp]
    [030612_024515973][oracle.apps.xdo.servlet.scheduler.XDOJob][STATEMENT] [ID:15073] Layout template : [name]=[WSMDP], [rtf], [location]=[apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp76134981.tmp]
    [030612_024515973][][STATEMENT] /apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/tmp/
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xslt-scalable : value=>true
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOTIMEZONE : value=>'Europe/London'
    [030612_024515973][][STATEMENT] BurstingProcessor:Property Key=>xdk-secure-io-mode : value=>true
    [030612_024515974][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOCALENDAR : value=>'GREGORIAN'
    [030612_024515974][][STATEMENT] BurstingProcessor:Property Key=>xslt._XDOLOCALE : value=>'en_US'
    [030612_024517080][oracle.apps.xdo.batch.BurstingProcessorEngine][STATEMENT] ========================> startElement() ::: startDocument is entered <========================
    [030612_024517093][][STATEMENT] template File/apps/oracle/product/10.1.3/bip/oc4j_bi/j2ee/home/applications/xmlpserver/xmlpserver/xdo/cache/xmlp60436649.tmp
    [030612_024517101][][STATEMENT] Logger.init(): *** DEBUG MODE IS ON. ***
    [030612_024517101][][STATEMENT] Logger.init(): LogDir=/apps/oracle/product/10.1.3/bip/log

Maybe you are looking for

  • 10.4.9 -ITunes problem

    Help! I installed 10.4.9 from a software update with a few other updates, and unlike many people in the forum had no issues with the install or reboot. I think I may also have installed a 7.1.1 update for itunes at the same time, which may be the cau

  • Database Question

    <p><a name="OLE_LINK1"><span>Hello,</span></a></p><p><span><span>I’m using your SSMA for Access software or MS SQL Server Migration Assistant for Access to convert an MS Access 2010 database into a SQL Server 2008 database.<span>  </span>The database

  • Z10 Not connecting to Link

    I really need help please. I am unable to Sync my Z10 device using link. Once connected to USB it reads the device fine. A couple of second in to the Sync process the device is gone and Link showing unable to connect to device. I am also unable to vi

  • Comment créer des sorties pour mes VIs.

    Bonjour, j'essaie d'ouvrir des VIs à partir d'un VI principal contenant une liste déroulante. Mes "sous-VIs" contiennent chacun une table, le problème est qu'ils ne semblent pas posséder de sortie(au vue de l'icone)alors que j'aimerai que ces tables

  • Paragraph Assembly Issues

    Hi All, I currently have a form utilizing a single MLT field using a paragraph assembly rule. There are about 20 or so paragraphs included so it spans past a single page. We are seeing some really strange results. The first issue involves a blank fir