Embedding BI Publisher output in OAF Page

Hi All,
I want to embed the BI Publisher output in one of the regions on OAF page.
I was getting error
Error invoking 'set_xslt_locale':'java.lang.IllegalAccessError: tried to access class oracle.apps.fnd.i18n.common.text.DigitList from class oracle.apps.fnd.i18n.common.text.ExcelNumberFormat'
Then i followed the same steps as described by Tom in the forum thread "http://kr.forums.oracle.com/forums/thread.jspa?threadID=485021"
Now i dont get the error messages.
But whenever i click on submit button, its doing nothing, the page is just refreshed and it shows neither any error nor the report.
But when I try the traditional approach of exporting the document using "DocumentHelper.exportDocument", its giving me the report output in new pop up. But i want the report output to be embedded in a Page itself.
Does it mean, document Viewer region is not set properly or there is any other problem?
Do we need to do some specific setting for document viewer? I have just pasted the value "/oracle/apps/xdo/oa/common/webui/DocumentViewerRn.MainRegion" in the extends property and did nothig else.
I am working on 11.5.10.2 and jDev is 9.0.3.5(Build 1312)
I am sorry if you find this thread as duplicate. But i am helpless and finding no way to achieve this.
Can anyone please help?
Thanks,
S

Hi,
Did you ever get a response for this issue?
Regards,
LC

Similar Messages

  • Can we archive specific Embedded BI Publisher outputs?

    Is there a possibility to archive specific Embedded BI Publisher outputs? Currently we have an option to do ALL or NONE.
    Please help me.

    At this time the option is all or none. An enhancement bug has been created requesting the functionality you are looking for: [bug 11038359|https://supporthtml.oracle.com/epmos/faces/ui/km/BugDisplay.jspx?id=11038359].
    -James

  • XML Publisher Report Output from OAF Page

    Hi,
    I created a button in a OAF page, and called the XML publisher Report program on click of this button. The concurrent request was ran when check from View Requests. When I click on viewout, the pdf document was open with the option, open, save, cancel. But this is not coming up in the OAF page. when debugged the code, the url is null.
    Please see the below code.
    OADBTransactionImpl oadbtransactionimpl = (OADBTransactionImpl)paramOAPageContext.getRootApplicationModule().getOADBTransaction();
    String s1 = oadbtransactionimpl.getAppsContext().getEnvStore().getEnv("TWO_TASK");
    System.out.println("s1 = " + s1);
    String s2 = oadbtransactionimpl.getAppsContext().getEnvStore().getEnv("GWYUID");
    System.out.println("s2 = " + s2);
    String s3 = "BEGIN :1 := fnd_webfile.get_url(fnd_webfile.request_out, :2, :3, :4, 2); end;";
    CallableStatement callablestatement = paramOAPageContext.getApplicationModule(paramOAWebBean).getOADBTransaction().createCallableStatement(s3, 1);
    System.out.println("s3 = " + s3);
    if(requestId != 0)
    try
    Number number = new Number(requestId);
    callablestatement.registerOutParameter(1, 12);
    callablestatement.setInt(2, number.intValue());
    callablestatement.setString(3, s2);
    callablestatement.setString(4, s1);
    callablestatement.execute();
    String s4 = callablestatement.getString(1);
    System.out.println("Before S4 if statement");
    if(s4 == null || s4.equals(""))
    // throw new RuntimeException();
    System.out.println("URL is null");
    System.out.println(" print ouput url - " + s4 );
    // throw OAException.wrapperException(exception);
    oadbtransactionimpl.putValue("OutputURL", s4);
    System.out.println(" print ouput url - " + s4 );
    }

    Look at the links AJ gave.
    Basically what you will do is create a Data Definition and assign a Data Template to it. Create a (document) Template and assign it to your data definition. You will use the XML Publisher Java API classes to pass parameters to your data template and extract the XML data. Then you will use this in conjunction with your document template and the OAF integration region to present the final output to the user.
    All of these things are in the XML Publisher documentation and Javadocs.

  • Printing BI Publisher report from OAF Page WITHOUT Preview or Save Option

    I have a requirement to print a BI Publisher Report on the invoke of a Button from a OAF Page. I have followed the method suggested in the below link to integrate OAF and BI Publisher.-
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    In this scenario, I already developed Data Definition (XML) and Template (RTF) for the report and a self service page with 'Generate PDF' button. When the button is clicked the template is getting filled with the data from the database and displaying the PDF output. A dialog box with 'Open/Save/Cancel' appears before the PDF document is shown.
    But my requirement is to avoid this dialog box and Save option so when the button is clicked the document has to be directly sent to the printer.
    Is there anyway to achieve this? Please help as this is very urgent..
    Thanks,
    Naren

    Naveen,
    You need to read the documentation here:
    http://www.oracle.com/technetwork/middleware/bi-publisher/documentation/xmlpdocs-084437.html
    All of the information you need is in these:
    Administration and Developer's Guide
    Report Designer's Guide
    JavaDocs
    With the BI publisher (XML publisher) Java APIs, you can call a data template with parameters and get the XML from that.
    For an example that should be very close to what you need to do, see the comments section of this page:
    http://apps2fusion.com/at/ps/294-bi-publisher-document-viewer-common-region-embeded-report-output-in-oa-framework-page-part-2
    Find the comment titled: "Alternative: BlobDomain from data template"
    The great thing about using a Data Template is that, while you are NOT concurrent program dependent, you can still set up a concurrent program to run it for other purposes if you wish. Data Templates offer a lot more flexibility.
    Kurz

  • Printing BI Publisher report from OAF Page

    We have a requirement to display a BI Publisher Report on the invoke of a Button/Link from a OAF Page. One way to achieve this without invoking a concurrent program is by following the method described in the link below :-
    http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    In the current scenario, we already have developed Data Definition (XML) and Template (RTF) for the report and is used too. We want to use the same Data Definition and Template but invoke from a OAF Page. Is there a way to achieve this?
    In the method mentioned in the above link, we would have to create many VO's to generate the XML, since the XML needed in our case is a detailed one, we would need to create many VO's to achieve this. Hence looking out for a way in which we can invoke the Data Definition (XML) already registered in the BI Publisher.
    Any inputs to achieve this would be helpful.
    Regards
    Naveen

    Naveen,
    You need to read the documentation here:
    http://www.oracle.com/technetwork/middleware/bi-publisher/documentation/xmlpdocs-084437.html
    All of the information you need is in these:
    Administration and Developer's Guide
    Report Designer's Guide
    JavaDocs
    With the BI publisher (XML publisher) Java APIs, you can call a data template with parameters and get the XML from that.
    For an example that should be very close to what you need to do, see the comments section of this page:
    http://apps2fusion.com/at/ps/294-bi-publisher-document-viewer-common-region-embeded-report-output-in-oa-framework-page-part-2
    Find the comment titled: "Alternative: BlobDomain from data template"
    The great thing about using a Data Template is that, while you are NOT concurrent program dependent, you can still set up a concurrent program to run it for other purposes if you wish. Data Templates offer a lot more flexibility.
    Kurz

  • Integrating XML Publisher into an OAF page

    Hello,
    I'm pretty to new to both OAF and XML Publisher...hoping someone can help me out. I created an OAF page that uses oracle.apps.xdo.oa.common.DocumentHelper to display a PDF. I created my Data Definition and Template, and tested that using concurrent manger.
    When I display my OAF page and click a button to view the PDF, the page does not show the PDF. However, when I click on the export button it opens a new window and I can view the PDF no problem.
    So I know the XML Publisher document is working, but why doesn't it display in the page?
    We are on 11.10.2 applications and 5.6.3 XML Publisher.
    Thanks,
    Johnnie
    CO:
    private static final String APP_NAME = "PTC";
    private static final String TEMPLATE_CODE = "PTC_HR_TOTAL_COMP";
    * Layout and page setup logic for a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    System.out.println( "============processRequest 10" );
    pageContext.putParameter("p_DataSource",DocumentHelper.DATA_SOURCE_TYPE_BLOB);
    pageContext.putParameter("p_DataSourceCode",TEMPLATE_CODE);
    pageContext.putParameter("p_DataSourceAppsShortName",APP_NAME);
    pageContext.putParameter("p_TemplateCode",TEMPLATE_CODE);
    pageContext.putParameter("p_TemplateAppsShortName",APP_NAME);
    pageContext.putParameter("p_Locale","English:United States");
    //pageContext.putParameter("p_XDORegionHeight","95%");
    pageContext.putParameter("p_OutputType","PDF");
    System.out.println( "============processRequest 20" );
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    Serializable[] parameters = { new Integer(pageContext.getEmployeeId()).toString() };
    System.out.println( "============processRequest 30" );
    * Procedure to handle form submissions for form elements in
    * a region.
    * @param pageContext the current OA page context
    * @param webBean the web bean corresponding to the region
    public void processFormRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processFormRequest(pageContext, webBean);
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    System.out.println( "============processFormRequest 10" );
    if (pageContext.getParameter("ViewStatement") != null)
    Serializable[] parameters = { new Integer(pageContext.getEmployeeId()).toString() };
    BlobDomain result = (BlobDomain) am.invokeMethod("getXMLData", parameters );
    System.out.println( "============processFormRequest 20" );
    pageContext.putSessionValueDirect("XML_DATA_BLOB", result );
    System.out.println( "============processFormRequest 30" );
    AM:
    public BlobDomain getXMLData( String personId )
    BlobDomain blobDomain = new BlobDomain();
    OADBTransaction oadbtransaction = getOADBTransaction();
    System.out.println( "============getXMLData 10" );
    try
    String dataDefCode = "PTC_HR_TOTAL_COMP";
    String dataDefApp = "PTC";
    // Create the new data template
    DataTemplate datatemplate = new DataTemplate(((OADBTransactionImpl)getOADBTransaction()).getAppsContext(), dataDefApp,dataDefCode );
    // Set the parameters
    Hashtable parameters = new Hashtable();
    parameters.put("p_person_id", personId );
    datatemplate.setParameters(parameters);
    // Process the template
    datatemplate.setOutput(blobDomain.getBinaryOutputStream());
    datatemplate.processData();
    catch(SQLException e)
    throw new OAException("SQL Error=" + e.getMessage(),OAException.ERROR);
    catch (XDOException e)
    throw new OAException("XDOException" + e.getMessage(),OAException.ERROR);
    catch(Exception e)
    throw new OAException("Exception" + e.getMessage(),OAException.ERROR);
    return blobDomain;
    }

    Hi Steve,
    I tried the approach you mentioned using IFRAME and found that,i am able to get the region in the end of the page, but its displaying the error message "Page not Found".
    Can you please let me know, what could be the reason.
    Here is my code
    In Controller( Process Request):
    OAApplicationModule am = pageContext.getApplicationModule(webBean);
    BlobDomain result = (BlobDomain)am.invokeMethod("getXMLData");
    pageContext.putSessionValueDirect("XML_DATA_BLOB", result);
    // Outputs letter in PDF format inline.
    String redirectURL = DocumentHelper.getOutputURL(pageContext,"XXJSDATA","XXJS_SAC_CPD",result.getInputStream(),"RTF",null,"en","US");
    OAHTMLWebBean outRegion = (OAHTMLWebBean)createWebBean(pageContext, HTML_WEB_BEAN, null, "IFRAME");
    outRegion.setHTMLAttributeValue("src",redirectURL);
    outRegion.setHTMLAttributeValue("width", "50%");
    outRegion.setHTMLAttributeValue("height", "50%");
    outRegion.setHTMLAttributeValue("title ","XXJS_SAC_CPD");
    outRegion.setHTMLAttributeValue("name ","XXJS_SAC_CPD");
    pageContext.getPageLayoutBean().addIndexedChild(outRegion);
    In AM:
    /**Get XML Data*/
    public BlobDomain getXMLData()
    BlobDomain blobDomain = new BlobDomain();
    OADBTransaction oadbtransaction = getOADBTransaction();
    try
    System.out.println("Now Calling Template to get XML Data>>>");
    String dataDefCode = "XXJS_SAC_CPD" ;
    String dataDefApp = "XXJSDATA";
    DataTemplate datatemplate = new DataTemplate(((OADBTransactionImpl)getOADBTransaction()).getAppsContext(), dataDefApp,dataDefCode );
    datatemplate.setOutput(blobDomain.getBinaryOutputStream());
    datatemplate.processData();
    System.out.println("Got XML Data>>>");
    catch(SQLException e)
    throw new OAException("SQL Error=" + e.getMessage(),OAException.ERROR);
    catch (XDOException e)
    throw new OAException("XDOException" + e.getMessage(),OAException.ERROR);
    catch(Exception e)
    throw new OAException("Exception" + e.getMessage(),OAException.ERROR);
    return blobDomain;
    Kindly help.
    Thanks,
    S

  • How to publish report output (pdf via XML publisher) on public OAF page

    hi,
    I need publish pdf file (report created with XML Publisher) over link on OA page on external web, but without accessing people from public web into my output directory for concurent requests (only this one to be allowed to access from external web) ....

    sorry, i am late, i couldn't reply on forum ...
    first i submit concurent request to create xml output from report (rdf):
    ConcurrentRequest cr = new ConcurrentRequest(pConncection);
    requestId = cr.submitRequest(applnName, Sablona, Description, null, false, cpArgs);
    i am wait for end:
    while (FileName == "") {
    FileName = getOutputFileName(pageContext,requestId);
    getOutputFileName make select to get status of request from database,
    and on finish i delive pdf document to customer with oracle.apps.xdo.oa.common.DocumentHelper:
    String redirectURL = DocumentHelper.getOutputURL(pageContext,
    "XXCS", //appShortName,
    Sablona, //templateCode,
    (InputStream)dis,
    "PDF", //outputType,
    properties,
    "CS", //language,
    "CS" //territory );
    pageContext.forwardImmediately(redirectURL, null, (byte)0, null, null, true, "N");
    i hope it help you ;o)

  • Integrating XML publisher & OAF Page, Generating output in PDF format

    Query:SELECT empno,ename,job,mgr,hiredate,comm,deptno FROM emp
    Step 3 : Generating the XML for Template Design
    Design a OAF Page EmpPG with the Following Code in the Controller EmpCO.
    EmpCO :
    public void processRequest(OAPageContext pageContext, OAWebBean webBean)
    super.processRequest(pageContext, webBean);
    OAApplicationModuleImpl am= (OAApplicationModuleImpl)pageContext.getApplicationModule(webBean);
    am.invokeMethod("initEmpVO");
    am.invokeMethod("getEmpDataXML");
    EmpAMImpl :
    public void initEmpVO()
    EmpVOImpl vo = getEmpVO1();
    if(vo == null)
    MessageToken errTokens[] = {
    new MessageToken("OBJECT_NAME", "EmpVO1")
    throw new OAException("AK", "FWK_TBX_OBJECT_NOT_FOUND", errTokens);
    } else
    vo.executeQuery();
    public void getEmpDataXML()
    try {
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    OAViewObject vo = (OAViewObject)findViewObject("EmpVO1");
    ((XMLNode) vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    System.out.println(outputStream.toString());
    catch(Exception e)
    throw new OAException (e.getMessage());
    I used the same code & strictly followed all the instructions.
    I am able to see only few column names in .xml
    http://apps2fusion.com/at/ps/51-ps/260-integrating-xml-publisher-and-oa-framework
    Please go thru the above link.
    Could anyone help me where I am doing mistake.
    Correct me If I am missing anything.
    Thanks in Advance.
    Thanks
    Sruthi

    The approach is too problematic...
    why dont you follow http://apps2fusion.com/at/51-ps/260-integrating-xml-publisher-and-oa-framework
    Hrishikesh

  • Problem in XML Publisher Report submission from OAF Pages

    Hi,
    I am trying to submit Concurrent Program from OAF Page which is an XML Publisher Report.
    The request is Submitting and Completing successfully but when we open to view the out put we are able to view the HTML tags.
    We checked the same Concurrent program by submitting from the SRS window After completing if we click on view output the rtf file is getting opened correctly.
    I tested with normal rdf report it is working fine with standard Concurrent program used in OAF
    So my doubt is
    Does the Standard Concurrent program used in OAF supports the rtf reports.
    Please suggest if any modifications to be done in the Concurrent program
    Krishna

    Krishna
    Modified your code a little bit.Use this
        public int submitCPRequest(String shipmentId) {
        System.out.println("into submitCPRequest");
            OAPageContext pageContext;
            OAWebBean webBean;
        try {
    OAApplicationModule am =pageContext.getApplicationModule(webBean);
        OADBTransaction tx = (OADBTransaction)am.getOADBTransaction();
        java.sql.Connection pConncection = tx.getJdbcConnection();
        ConcurrentRequest cr = new ConcurrentRequest(pConncection);
        String applnName = new String("XXAPL"); //Application that contains the concurrent program
        System.out.println("ApplName"+ applnName);
        String cpName = new String("XXAPLPOSMPRD"); //Concurrent program name
        System.out.println("Concc Name"+ cpName);
        String cpDesc = new String(" APL PO Shipping Material Pickup Request"); // concurrent Program description
        // Pass the Arguments using vector
        // Here i have added my parameter headerId to the vector and passed the
        //vector to the concurrent program
        Vector cpArgs = new Vector();
        cpArgs.addElement(shipmentId);
        System.out.println("Args"+ cpArgs);
        // Calling the Concurrent Program
        int requestId = cr.submitRequest(applnName, cpName,cpDesc, null, false, cpArgs);
        cr.addLayout("XXAPL", "XXAPLPOSMPRT", "ENG", "US" , "RTF");
        System.out.println("Req Id"+ requestId);
        tx.commit();
        return requestId;
            catch (RequestSubmissionException e) {
            System.out.println("Into Exception");
            OAException oe = new OAException(e.getMessage());
            oe.setApplicationModule(this);
            throw oe;
            catch(Exception exception)
            throw OAException.wrapperException(exception);
        }Thanks
    AJ

  • OAF page with XML Publisher report

    Hi All,
    I am trying to create a OAF page with an XML Publisher report. I am not able to create a 'defaultSingleColumn' region which extends '/oracle/apps/xdo/oa/common/webui/DocumentViewerRn.MainRegion', getting a Confirm message and Validation error and they are:
    Confirm message:
    Component "/oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion" cannot be referenced from
    "/xx/oracle/apps/xxbsk/payslip/webui/PaySlipViewPG.region1" because it violates scope restrictions.
    Are you sure you want to use component "/oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion"?
    Validation Error:
    The value "oracle/apps/xdo/12.0.0/mds/oa/common/webui/DocumentViewerRn.MainRegion"
    set on the "Extends" property for component
    "/xx/oracle/apps/xxbsk/payslip/webui/PaySlipViewPG" contains multiple naming separators.
    I am trying to develop this page for R12.1.3 and using correct version of JDev (Patch 9879989).
    I am following the below link for embedding the XML PO into my page:
    http://oracle-hack.blogspot.co.uk/2012/04/launching-xml-publisher-from-oa.html
    Could you please help why I am getting error while extending region.
    Thank you,
    Ramu

    Hi. Could you please tell me how did you make it work. I read and try the same document at ttp://oracle-hack.blogspot.co.uk/2012/04/launching-xml-publisher-from-oa.html
    But I got null point exception at one of xdo package which is Oracles own class. I think something is wrong or forgotten in this document.
    Berkay

  • OAF Personalization : print output of a query on a OAF page

    I have a requirement in OAF form.
    Wanted to check if it is possible
    I needed to print a value on the form which would be a query output.
    Basically in my requisiiton workflow i have changed teh approver.
    Based on that the OAF page doesnt reflect the change. I need to change the OAF page but just by personlization. Want to check if this is possible.
    In short, I want to write a query and get an output and print that on the screen of a OAF page.

    user8655468 wrote:
    I would like to display a label on my report but has to appear only on the last page of the report in the margin areaCreate a fixed frame at the bottom of margin area and inside the frame put your label.
    set the frame print object on: Last page
    Hope this works..

  • OAF: passing parameters to report from OAF page and running concurrent prog

    Hi Everyone,
    i have an OAF page with 10 fields after filling those fields i need to press "Submit" button.
    On pressing Submit button 5 parameters i have to pass to the xml publisher report to run the concurrent program and display the output in pdf format.(Out of 10 fields on the page the first 5 fields will be passed as parameters)
    How can i pass parameters from OAF page to the report(concurrent program)?
    and how can i call concurrent program?
    and how can display the output of the report in pdf format after calling the concurrent program?
    Any answers will be really useful...
    Thanks in advance.
    Thanks.

    Hi kumar ,
    XML report will generate output in PDF format , first you need to try generating report separately , manually submit
    the concurrent program and make sure every thing goes well .
    Once the above step is done you can try to submit the concurrent from controller class . The submitRequest method
    will return the request ID of the concurrent program .
    Now with the help of this request ID you can redirect the page to Oracle standards Request Page( you can monitor
    the status of concurrent program and view output ) this can be done with the following piece of code
    String url = "OA.jsp";
    parameters.put("akRegionApplicationId", "0");
    parameters.put("akRegionCode","FNDCPREQUESTVIEWPAGE");
    String id = "" + return_reqId + "";
    parameters.put("requestMode","DEFERRED");
    parameters.put("requestId", id);
    pageContext.setForwardURL(url,null,OAWebBeanConstants.KEEP_MENU_CONTEXT,null,parameters,true,OAWebBeanConstants.ADD_BREAD_CRUMB_NO ,OAWebBeanConstants.IGNORE_MESSAGES);
    Keerthi

  • Creating an XML Report from OAF page

    Hi All,
    I have a requirement to create a PDF report from an OAF page. From the below code , I was able to print the XML with the values.
    I know i should map this XML to RTF by creating the Data defiition through XML publisher responsibility.
    My understanding :
    1. Generate the XML from Conttroller
    2. Load the XML to RTF and map the fields
    3. Register as Data Definition and RTF
    4. Output seen
    MY QUESTION IS : If i load the values from the below XML to the RTF and register in the data definition , i will get the same values every time it is right . From my understanding, if the data has to change in the report, ,there should be a way which will directly send the generated xml from the controller to the RTF (Without step2)
    I DEFINITELY BELIEVE, THAT I AM MISSING SOME THING HERE . PLEASE HELP ME
    public void processRequest(OAPageContext pageContext,
    OAWebBean webBean) {
    super.processRequest(pageContext, webBean);
    OAApplicationModule am =
    (OAApplicationModule)pageContext.getApplicationModule(webBean);
    OAViewObject vo = (OAViewObject)am.findViewObject("colorVO1");
    ByteArrayOutputStream outputStream = new ByteArrayOutputStream();
    //(XMLNode)vo.writeXML(4,"")
    try {
    ((XMLNode)vo.writeXML(4, XMLInterface.XML_OPT_ALL_ROWS)).print(outputStream);
    } catch (IOException e) {
    // TODO
    throw new OAException("The value of VO is " + vo,
    OAException.CONFIRMATION);
    System.out.println(outputStream.toString());
    Generated XML :
    <colorVOEx3Row>
    <UserName>abc</UserName>
    <UserId>33102</UserId>
    <CreatedBy>27241</CreatedBy>
    <Clr1>0</Clr1>
    </colorVOEx3Row>
    <colorVOEx3Row>
    <UserName>deg</UserName>
    <UserId>33604</UserId>
    <CreatedBy>1135</CreatedBy>
    <Clr1>0</Clr1>
    </colorVOEx3Row>
    <colorVOEx3Row>
    <UserName>****mno</UserName>
    <UserId>33643</UserId>
    <CreatedBy>24587</CreatedBy>
    <Clr1>2</Clr1>
    </colorVOEx3Row>
    </colorVOEx3
    Please let me know what should me my next steps to generate the report. if i load the XML above to the RTF , irresepscive of my data from teh page, i will always get the 3 rows.i..e..(abc,def,*** mno).
    Hope i am clear.

    Hi Anand,
    Thanks for your reply. I have gone through the link you provided . It gave me excellent information. But just one clarification , when we create the data definition, dont we have to add any of the files like 'XML Schema','Data Template','Preview Data','Bursting Control File'.
    The reason, i am asking this question is, when i proviously worked with XML reports in 11.10.2, we used to attach a .xml file to the Data Template of the data definition ,which would populate the RTF.
    Now here, if i dont attach that file in the data definition, will the XML data direclty mapped from contrlloer ?. I assume ,The only thing i need to do is to MAP the XML tags to RTF before registering ..
    Please let me know if i am missing some thing
    Thanks
    Sunny

  • Error while calling xml report from oaf page

    hi all
    i am calling xml(pdf) report from oaf page the back end jdeveloper console this error message is coming
    when i am caling report empty out put is coming
    any one help me regarding this issue
    123109_073025194][][EXCEPTION] [DEBUG] ------- Preferences defined PreferenceStore -------
    [123109_073025194][][EXCEPTION] [DEBUG] ------- Environment variables stored in EnvironmentStore -------
    [123109_073025194][][EXCEPTION] [DEBUG] [ICX_COOKIE_NAME]:[DEV]
    [123109_073025194][][EXCEPTION] [DEBUG] [JDBC:processEscapes]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.LOW]:[-1]
    [123109_073025194][][EXCEPTION] [DEBUG] [APPL_SERVER_ID]:[07910A4CBEF04DE395C782218C44D60710897045366671209174079915214149]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[100]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_DATE_LANGUAGE]:[AMERICAN]
    [123109_073025194][][EXCEPTION] [DEBUG] [ICX_SESSION_COOKIE_VALUE]:[iDQBc8141owULp9woYLCe7wm:S]
    [123109_073025194][][EXCEPTION] [DEBUG] [ICX_TRANSACTION_ID]:[-1]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_DATE_FORMAT]:[DD-MON-RRRR]
    [123109_073025194][][EXCEPTION] [DEBUG] [RESP_APPL_ID]:[20023]
    [123109_073025194][][EXCEPTION] [DEBUG] [LOGIN_ID]:[113493]
    [123109_073025194][][EXCEPTION] [DEBUG] [DB_PORT]:[1521]
    [123109_073025194][][EXCEPTION] [DEBUG] [USER_ID]:[1251]
    [123109_073025194][][EXCEPTION] [DEBUG] [DISPLAY_LANGUAGE]:[US]
    [123109_073025194][][EXCEPTION] [DEBUG] [APPLICATION_ID]:[crm.oracle.apps.xxcrm.crmmgmt.quotationmgmt.server.xxcrmquotationmgmtAM]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_NUMERIC_CHARACTERS]:[.,]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_LANGUAGE]:[AMERICAN]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MIN]:[1]
    [123109_073025194][][EXCEPTION] [DEBUG] [GUEST_USER_PWD]:[GUEST/ORACLE]
    [123109_073025194][][EXCEPTION] [DEBUG] [RESP_ID]:[50722]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_SORT]:[BINARY]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_PLSQL_RESET]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_PROFILE_VALIDATION_ENABLED]:[null]
    [123109_073025194][][EXCEPTION] [DEBUG] [FUNCTION_ID]:[-1]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_SIZE]:[5]
    [123109_073025194][][EXCEPTION] [DEBUG] [ICX_PV_SESSION_MODE]:[115P]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_CONTEXT_CHECK]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_USABLE_CHECK]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_LANG]:[null]
    [123109_073025194][][EXCEPTION] [DEBUG] [APPS_JDBC_URL]:[jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS_LIST=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS=(PROTOCOL=tcp)(HOST=data02.utsco.com)(PORT=1521)))(CONNECT_DATA=(SERVICE_NAME=DEV)))]
    [123109_073025194][][EXCEPTION] [DEBUG] [FNDNAM]:[APPS]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_PROXY_USER]:[null]
    [123109_073025194][][EXCEPTION] [DEBUG] [TWO_TASK]:[DEV]
    [123109_073025194][][EXCEPTION] [DEBUG] [APPS_JDBC_DRIVER_TYPE]:[THIN]
    [123109_073025194][][EXCEPTION] [DEBUG] [DB_HOST]:[data02.utsco.com]
    [123109_073025194][][EXCEPTION] [DEBUG] [DBC_FILE_PATH]:[C:\OAF\jdevhome\jdev\dbc_files\secure\DEV.dbc]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_IDLE_THRESHOLD.HIGH]:[-1]
    [123109_073025194][][EXCEPTION] [DEBUG] [SECURITY_GROUP_ID]:[0]
    [123109_073025194][][EXCEPTION] [DEBUG] [LANG_CODE]:[US]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_MAX_JDBC_CONNECTIONS]:[500]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_DECAY_INTERVAL]:[300]
    [123109_073025194][][EXCEPTION] [DEBUG] [USER_NAME]:[CRMUSER]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_BUFFER_MAX]:[5]
    [123109_073025194][][EXCEPTION] [DEBUG] [DB_NAME]:[DEV]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_CHARACTERSET]:[AL32UTF8]
    [123109_073025194][][EXCEPTION] [DEBUG] [ORG_ID]:[82]
    [123109_073025194][][EXCEPTION] [DEBUG] [DB_ID]:[DEV]
    [123109_073025194][][EXCEPTION] [DEBUG] [GWYUID]:[APPLSYSPUB/PUB]
    [123109_073025194][][EXCEPTION] [DEBUG] [NLS_TERRITORY]:[UNITED ARAB EMIRATES]
    [123109_073025194][][EXCEPTION] [DEBUG] [ICX_SESSION_ID]:[848565270]
    [123109_073025194][][EXCEPTION] [DEBUG] [JDBC:oracle.jdbc.maxCachedBufferSize]:[358400]
    [123109_073025194][][EXCEPTION] [DEBUG] ------- Properties stored in Java System Properties -------
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vendor]:[Sun Microsystems Inc.]
    [123109_073025194][][EXCEPTION] [DEBUG] [ajp.connection.listener.state]:[down]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.management.compiler]:[HotSpot Client Compiler]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.j2ee.container.version]:[10.1.3.3.0]
    [123109_073025194][][EXCEPTION] [DEBUG] [os.name]:[Windows XP]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.boot.class.path]:[C:\OAF\jdevbin\jdk\jre\lib\rt.jar;C:\OAF\jdevbin\jdk\jre\lib\i18n.jar;C:\OAF\jdevbin\jdk\jre\lib\sunrsasign.jar;C:\OAF\jdevbin\jdk\jre\lib\jsse.jar;C:\OAF\jdevbin\jdk\jre\lib\jce.jar;C:\OAF\jdevbin\jdk\jre\lib\charsets.jar;C:\OAF\jdevbin\jdk\jre\classes]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.desktop]:[windows]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.specification.vendor]:[Sun Microsystems Inc.]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.runtime.version]:[1.5.0_05-b05]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.trusted.clients]:[*]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.security.jazn.config]:[C:\OAF\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\jazn.xml]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.name]:[utsguest]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.language]:[en]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.naming.factory.initial]:[com.evermind.server.ApplicationInitialContextFactory]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.boot.library.path]:[C:\OAF\jdevbin\jdk\jre\bin]
    [123109_073025194][][EXCEPTION] [DEBUG] [oc4j.jms.usePersistenceLockFiles]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.version]:[1.5.0_05]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.util.logging.manager]:[oracle.classloader.util.ApplicationLogManager]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.timezone]:[GMT+04:00]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.net.preferIPv4Stack]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.arch.data.model]:[32]
    [123109_073025194][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.UtilClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.Util]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.endorsed.dirs]:[C:\OAF\jdevbin\jdk\jre\lib\endorsed]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.cpu.isalist]:[pentium_pro+mmx pentium_pro pentium+mmx pentium i486 i386 i86]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.jnu.encoding]:[Cp1252]
    [123109_073025194][][EXCEPTION] [DEBUG] [file.encoding.pkg]:[sun.io]
    [123109_073025194][][EXCEPTION] [DEBUG] [DBCFILE]:[C:\OAF\jdevhome\jdev\dbc_files\secure\DEV.dbc]
    [123109_073025194][][EXCEPTION] [DEBUG] [file.separator]:[\]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.specification.name]:[Java Platform API Specification]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.class.version]:[49.0]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.country]:[US]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.home]:[C:\OAF\jdevbin\jdk\jre]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.info]:[mixed mode]
    [123109_073025194][][EXCEPTION] [DEBUG] [os.version]:[5.1]
    [123109_073025194][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBSingletonClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [123109_073025194][][EXCEPTION] [DEBUG] [path.separator]:[;]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.version]:[1.5.0_05-b05]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.variant]:[]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.protocol.handler.pkgs]:[oracle.apps.xdo.common.net.protocol|com.evermind.protocol]
    [123109_073025194][][EXCEPTION] [DEBUG] [checkForUpdates]:[adminClientOnly]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.awt.printerjob]:[sun.awt.windows.WPrinterJob]
    [123109_073025194][][EXCEPTION] [DEBUG] [RUN_FROM_JDEV]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.io.unicode.encoding]:[UnicodeLittle]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.sun.jts.pi.INTEROP_MODE]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [awt.toolkit]:[sun.awt.windows.WToolkit]
    [123109_073025194][][EXCEPTION] [DEBUG] [MetaObjectContext]:[oracle.adf.mds.jbo.JBODefManager]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_TOP]:[C:\OAF\jdevhome\jdev\dbc_files\]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.j2ee.http.socket.timeout]:[500]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.port]:[5656]
    [123109_073025194][][EXCEPTION] [DEBUG] [JRAD_ELEMENT_LIST_PATH]:[C:\OAF\jdevhome\jdev\myhtml\OA_HTML\jrad\]
    [123109_073025194][][EXCEPTION] [DEBUG] [JTFDBCFILE]:[C:\OAF\jdevhome\jdev\dbc_files\secure\DEV.dbc]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.sun.CORBA.POA.ORBServerId]:[1000000]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.naming.factory.url.pkgs]:[oracle.oc4j.naming.url]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.home]:[C:\Documents and Settings\utsguest]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.specification.vendor]:[Sun Microsystems Inc.]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.home]:[C:\OAF\jdevbin]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.dms.sensors]:[5]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.library.path]:[C:\OAF\jdevbin\jdk\bin;.;C:\WINDOWS\system32;C:\WINDOWS;C:\DevSuiteHome_1\jdk\jre\bin\classic;C:\DevSuiteHome_1\jdk\jre\bin;C:\DevSuiteHome_1\jdk\jre\bin\client;C:\DevSuiteHome_1\jlib;C:\DevSuiteHome_1\bin;C:\DevSuiteHome_1\jre\1.4.2\bin\client;C:\DevSuiteHome_1\jre\1.4.2\bin;C:\apps\product\11.1.0\client_1\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\Program Files\Intel\DMIX;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\WINDOWS\system32\WindowsPowerShell\v1.0]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vendor.url]:[http://java.sun.com/]
    [123109_073025194][][EXCEPTION] [DEBUG] [XDO_TOP]:[E:\oracle\apps\apps_st\appl\xdo\12.0.0]
    [123109_073025194][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.StubClass]:[com.sun.corba.ee.impl.javax.rmi.CORBA.StubDelegateImpl]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.j2ee.dont.use.memory.archive]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.vendor]:[Sun Microsystems Inc.]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.runtime.name]:[Java(TM) 2 Runtime Environment, Standard Edition]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.class.path]:[C:\OAF\jdevbin\jdk\jre\lib\rt.jar;C:\OAF\jdevbin\jdk\jre\lib\jsse.jar;C:\OAF\jdevbin\jdk\jre\lib\jce.jar;C:\OAF\jdevbin\jdk\jre\lib\charsets.jar;C:\OAF\jdevbin\jdk\jre\lib\ext\dnsns.jar;C:\OAF\jdevbin\jdk\jre\lib\ext\localedata.jar;C:\OAF\jdevbin\jdk\jre\lib\ext\sunjce_provider.jar;C:\OAF\jdevbin\jdk\jre\lib\ext\sunpkcs11.jar;C:\OAF\jdevbin\j2ee\home\oc4j-api.jar;C:\OAF\jdevbin\j2ee\home\lib\oc4j-unsupported-api.jar;C:\OAF\jdevbin\j2ee\home\lib\activation.jar;C:\OAF\jdevbin\j2ee\home\lib\mail.jar;C:\OAF\jdevbin\j2ee\home\lib\persistence.jar;C:\OAF\jdevbin\j2ee\home\lib\ejb30.jar;C:\OAF\jdevbin\j2ee\home\lib\ejb.jar;C:\OAF\jdevbin\j2ee\home\lib\javax77.jar;C:\OAF\jdevbin\j2ee\home\lib\javax88.jar;C:\OAF\jdevbin\j2ee\home\lib\servlet.jar;C:\OAF\jdevbin\j2ee\home\lib\jms.jar;C:\OAF\jdevbin\j2ee\home\lib\jta.jar;C:\OAF\jdevbin\j2ee\home\lib\jacc-api.jar;C:\OAF\jdevbin\j2ee\home\lib\connector.jar;C:\OAF\jdevbin\j2ee\home\lib\jmx_remote_api.jar;C:\OAF\jdevbin\j2ee\home\lib\jax-qname-namespace.jar;C:\OAF\jdevbin\webservices\lib\jaxr-api.jar;C:\OAF\jdevbin\webservices\lib\jaxrpc-api.jar;C:\OAF\jdevbin\webservices\lib\saaj-api.jar;C:\OAF\jdevbin\webservices\lib\jws-api.jar;C:\OAF\jdevbin\j2ee\home\lib\oc4j-internal.jar;C:\OAF\jdevbin\j2ee\home\lib\oems-jms-oc4j.jar;C:\OAF\jdevbin\j2ee\home\lib\oems-jms-client.jar;C:\OAF\jdevbin\j2ee\home\lib\oems-jms-server.jar;C:\OAF\jdevbin\j2ee\home\lib\oc4j-schemas.jar;C:\OAF\jdevbin\j2ee\home\lib\ojsp.jar;C:\OAF\jdevbin\j2ee\home\lib\oc4j_orb.jar;C:\OAF\jdevbin\j2ee\home\lib\iiop_support.jar;C:\OAF\jdevbin\j2ee\home\lib\orbbase.jar;C:\OAF\jdevbin\j2ee\home\iiop_gen_bin.jar;C:\OAF\jdevbin\j2ee\home\lib\jmxcluster.jar;C:\OAF\jdevbin\j2ee\home\jaccprovider.jar;C:\OAF\jdevbin\javavm\lib\jasper.zip;C:\OAF\jdevbin\j2ee\home\lib\adminclient.jar;C:\OAF\jdevbin\opmn\lib\optic.jar;C:\OAF\jdevbin\j2ee\home\jacc-spi.jar;C:\OAF\jdevbin\j2ee\home\jazncore.jar;C:\OAF\jdevbin\j2ee\home\jazn.jar;C:\OAF\jdevbin\jlib\ospnego.jar;C:\OAF\jdevbin\jlib\ldapjclnt10.jar;C:\OAF\jdevbin\webservices\lib\wsserver.jar;C:\OAF\jdevbin\webservices\lib\wsif.jar;C:\OAF\jdevbin\webservices\lib\orawsmetadata.jar;C:\OAF\jdevbin\webservices\lib\orajaxr.jar;C:\OAF\jdevbin\jlib\jssl-1_1.jar;C:\OAF\jdevbin\jlib\ojmisc.jar;C:\OAF\jdevbin\toplink\jlib\toplink-oc4j.jar;C:\OAF\jdevbin\diagnostics\lib\ojdl2.jar;C:\OAF\jdevbin\xqs\lib\xqs-api.jar;C:\OAF\jdevbin\xqs\lib\xds.jar;C:\OAF\jdevbin\jdev\lib\jdev-oc4j-embedded.jar;C:\OAF\jdevbin\j2ee\home\lib\pcl.jar;C:\OAF\jdevbin\j2ee\home\lib\ext;C:\OAF\jdevbin\lib\dmsapp.jar;C:\OAF\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\admin_ejb.jar;C:\OAF\jdevbin\BC4J\lib\bc4jdomorcl.jar;C:\OAF\jdevbin\jlib\jsp-el-api.jar;C:\OAF\jdevbin\jlib\commons-el.jar;C:\OAF\jdevbin\jlib\oracle-el.jar;C:\OAF\jdevbin\jlib\jewt4.jar;C:\OAF\jdevbin\jdev\appslibrt\regexp.jar;C:\OAF\jdevbin\jdev\appslibrt\share.jar;C:\OAF\jdevbin\jdev\appslibrt\uix2.jar;C:\OAF\jdevbin\oaext\mds\lib\mdsrt.jar;C:\OAF\jdevbin\oaext\lib\mdsdt.jar;C:\OAF\jdevbin\oaext\lib\oamdsdt.jar;C:\OAF\jdevbin\javacache\lib\cache.jar;C:\OAF\jdevbin\lib\xschema.jar;C:\OAF\jdevbin\BC4J\lib;C:\OAF\jdevbin\BC4J\lib\adfbinding.jar;C:\OAF\jdevbin\BC4J\lib\adfcm.jar;C:\OAF\jdevbin\BC4J\lib\adfm.jar;C:\OAF\jdevbin\BC4J\lib\adfmweb.jar;C:\OAF\jdevbin\BC4J\lib\adfs-jazn.jar;C:\OAF\jdevbin\BC4J\lib\adfs.jar;C:\OAF\jdevbin\BC4J\lib\adfshare.jar;C:\OAF\jdevbin\BC4J\lib\bc4jct.jar;C:\OAF\jdevbin\BC4J\lib\bc4jctejb.jar;C:\OAF\jdevbin\BC4J\lib\bc4jimdomains.jar;C:\OAF\jdevbin\BC4J\lib\bc4jmt.jar;C:\OAF\jdevbin\BC4J\lib\bc4jmtejb.jar;C:\OAF\jdevbin\BC4J\lib\bc4jsyscat.jar;C:\OAF\jdevbin\BC4J\lib\collections.jar;C:\OAF\jdevbin\jdev\appslibrt\fwkjbo.zip;C:\OAF\jdevbin\jdev\appslibrt\fwk.zip;C:\OAF\jdevbin\jdev\appslibrt\atg.zip;C:\OAF\jdevbin\jdev\appslibrt\collections.zip;C:\OAF\jdevbin\jdev\appslibrt\iasjoc.zip;C:\OAF\jdevbin\jdev\appslibrt\rosettaRt.zip;C:\OAF\jdevbin\jdev\appslibrt\portalFlexComps.jar;C:\OAF\jdevbin\jdev\appslibrt\svc.zip;C:\OAF\jdevbin\jdev\appslibrt\pat.zip;C:\OAF\jdevbin\jdev\appslibrt\concurrent.zip;C:\OAF\jdevbin\jdev\appslibrt\oamMaintMode.zip;C:\OAF\jdevbin\jdev\appslibrt\fwkCabo.zip;C:\OAF\jdevbin\jdev\appslibrt\wsrp-container.jar;C:\OAF\jdevbin\jdev\appslibrt\pdkjava.jar;C:\OAF\jdevbin\jdev\appslibrt\ptlshare.jar;C:\OAF\jdevbin\jdev\appslibrt\xml.jar;C:\OAF\jdevbin\jdev\appslibrt\wsrp-container-types.jar;C:\OAF\jdevbin\jdev\appslibrt\jaxb-impl.jar;C:\OAF\jdevbin\jdev\appslibrt\jaxb-libs.jar;C:\OAF\jdevbin\jdev\appslibrt\jazn.jar;C:\OAF\jdevbin\jdev\appslibrt\jazncore.jar;C:\OAF\jdevbin\bibeans\lib\biamlocal.jar;C:\OAF\jdevbin\bibeans\lib\bipres.jar;C:\OAF\jdevbin\bibeans\lib\bicmn.jar;C:\OAF\jdevbin\bibeans\lib\bidatasvr.jar;C:\OAF\jdevbin\bibeans\lib\bidataclt.jar;C:\OAF\jdevbin\bibeans\lib\bidatacmn.jar;C:\OAF\jdevbin\bibeans\lib\biext.jar;C:\OAF\jdevbin\bibeans\lib\bicmn-nls.zip;C:\OAF\jdevbin\bibeans\lib\bipres-nls.zip;C:\OAF\jdevbin\bibeans\lib\bidata-nls.zip;C:\OAF\jdevbin\oaext\config\oac\oacfilter.jar;C:\OAF\jdevbin\j2ee\home\lib\scheduler.jar;C:\OAF\jdevbin\jdev\lib\jdev-rt.jar;C:\OAF\jdevbin\jdev\lib\ojc.jar;C:\OAF\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\connectors\datasources\datasources\datasources.jar;C:\OAF\jdevbin\diagnostics\lib\ojdl.jar;C:\OAF\jdevbin\lib\dms.jar;C:\OAF\jdevbin\jdbc\lib\ojdbc14dms.jar;C:\OAF\jdevbin\opmn\lib\ons.jar;C:\OAF\jdevbin\jdbc\lib\ocrs12.jar;C:\OAF\jdevbin\rdbms\jlib\aqapi.jar;C:\OAF\jdevbin\j2ee\home\lib\ojms-provider.jar;C:\OAF\jdevbin\jdbc\lib\orai18n.jar;C:\OAF\jdevbin\lib\xmlparserv2.jar;C:\OAF\jdevbin\lib\xml.jar;C:\OAF\jdevbin\lib\xmlmesg.jar;C:\OAF\jdevbin\lib\xsu12.jar;C:\OAF\jdevbin\lib\xquery.jar;C:\OAF\jdevbin\jlib\osdt_core.jar;C:\OAF\jdevbin\jlib\osdt_cert.jar;C:\OAF\jdevbin\jlib\osdt_xmlsec.jar;C:\OAF\jdevbin\jlib\osdt_wss.jar;C:\OAF\jdevbin\jlib\osdt_saml.jar;C:\OAF\jdevbin\jlib\ojpse.jar;C:\OAF\jdevbin\jlib\oraclepki.jar;C:\OAF\jdevbin\toplink\jlib\toplink.jar;C:\OAF\jdevbin\toplink\jlib\antlr.jar;C:\OAF\jdevbin\toplink\jlib\toplink-essentials.jar;C:\OAF\jdevbin\webservices\lib\wsclient.jar;C:\OAF\jdevbin\webservices\lib\orasaaj.jar;C:\OAF\jdevbin\webservices\lib\xsdlib.jar;C:\OAF\jdevbin\webservices\lib\mdds.jar;C:\OAF\jdevbin\webservices\lib\relaxngDatatype.jar;C:\OAF\jdevbin\webservices\lib\soap.jar;C:\OAF\jdevbin\sqlj\lib\runtime12.jar;C:\OAF\jdevbin\sqlj\lib\translator.jar;C:\OAF\jdevbin\webservices\lib\orawsdl.jar;C:\OAF\jdevbin\j2ee\home\applib;C:\OAF\jdevbin\j2ee\home\jsp\lib\taglib;C:\OAF\jdevbin\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\OAF\jdevbin\lib\dsv2.jar;C:\OAF\jdevbin\j2ee\home\lib\http_client.jar;C:\OAF\jdevbin\j2ee\home\lib\jgroups-core.jar;C:\OAF\jdevhome\jdev\myhtml\OA_HTML;C:\OAF\jdevhome\jdev\myclasses;C:\OAF\jdevbin\jlib\jdev-cm.jar;C:\OAF\jdevbin\BC4J\jlib\bc4jhtml.jar;C:\OAF\jdevbin\BC4J\jlib\datatags.jar;C:\OAF\jdevbin\BC4J\jlib\bc4juixtags.jar;C:\OAF\jdevbin\BC4J\jlib\graphtags.jar;C:\OAF\jdevbin\jdev\appslibrt\wsp.zip;C:\OAF\jdevbin\jdev\appslibrt\diagnostics.jar;C:\OAF\jdevbin\jdev\appslibrt\svctester.jar]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.j2ee.home]:[C:\OAF\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.application.environment]:[development]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.specification.name]:[Java Virtual Machine Specification]
    [123109_073025194][][EXCEPTION] [DEBUG] [JRAD_XML_PATH]:[C:\OAF\jdevhome\jdev\myclasses\JRADXML;C:\OAF\jdevhome\jdev\myprojects;C:\OAF\jdevbin\jdev\oamdsxml\fwk]
    [123109_073025194][][EXCEPTION] [DEBUG] [javax.rmi.CORBA.PortableRemoteObjectClass]:[com.sun.corba.ee.impl.javax.rmi.PortableRemoteObject]
    [123109_073025194][][EXCEPTION] [DEBUG] [org.omg.PortableInterceptor.ORBInitializerClass.oracle.oc4j.corba.iiop.server.IIOPInitializer]:[NO_VALUE]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.specification.version]:[1.0]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.cpu.endian]:[little]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.j2ee.container.name]:[Oracle Containers for J2EE 10g (10.1.3.3.0) ]
    [123109_073025194][][EXCEPTION] [DEBUG] [sun.os.patch.level]:[Service Pack 3]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.io.tmpdir]:[C:\DOCUME~1\utsguest\LOCALS~1\Temp\]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.sun.jts.pi.CLIENT_POLICY_CHECKING]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vendor.url.bug]:[http://java.sun.com/cgi-bin/bugreport.cgi]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.ssl.mutual.auth.port]:[5657]
    [123109_073025194][][EXCEPTION] [DEBUG] [FND_JDBC_STMT_CACHE_SIZE]:[200]
    [123109_073025194][][EXCEPTION] [DEBUG] [os.arch]:[x86]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.awt.graphicsenv]:[sun.awt.Win32GraphicsEnvironment]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.ext.dirs]:[C:\OAF\jdevbin\jdk\jre\lib\ext]
    [123109_073025194][][EXCEPTION] [DEBUG] [user.dir]:[C:\OAF\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config]
    [123109_073025194][][EXCEPTION] [DEBUG] [CACHENODBINIT]:[true]
    [123109_073025194][][EXCEPTION] [DEBUG] [line.separator]:[
    [123109_073025194][][EXCEPTION] [DEBUG] [java.vm.name]:[Java HotSpot(TM) Client VM]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.sun.CORBA.connection.ORBSocketFactoryClass]:[oracle.oc4j.corba.iiop.IIOPSSLSocketFactory]
    [123109_073025194][][EXCEPTION] [DEBUG] [javax.management.builder.initial]:[oracle.oc4j.admin.jmx.server.Oc4jMBeanServerBuilder]
    [123109_073025194][][EXCEPTION] [DEBUG] [com.oracle.corba.ee.security.use.ssl]:[false]
    [123109_073025194][][EXCEPTION] [DEBUG] [org.omg.CORBA.ORBClass]:[com.sun.corba.ee.impl.orb.ORBImpl]
    [123109_073025194][][EXCEPTION] [DEBUG] [file.encoding]:[Cp1252]
    [123109_073025194][][EXCEPTION] [DEBUG] [oracle.oc4j.http.socket.sendbuffersize]:[16384]
    [123109_073025194][][EXCEPTION] [DEBUG] [java.specification.version]:[1.5]
    regard
    sreekanth

    Hi Sreekanth;
    Change your output type from PDF to HTML. Then it will give you clear error message in HTML page after fixing it if you able to see/run report fine in HTML then change your output type back to PDF.
    GsrC

  • Error in OAF Page Running

    Hi All,
         I created one sample and starting OAF page which displays only the brand logo.
         But when I am trying to Run the page it is creating an error as
         An error was encountered when running
         "JDeveloper\jedevhome\jdev\myclasses\JRADXML":
         No response received in 30 secs.
         Please try the following
         1) Increase the timeout limit by setting the JRAD.RUNREG_TIMEOUT parameter in the ide.properties file located in system directory.
         2) Check the Host Name in the Preferences, under Embedded OC4J.
         3) See the log window for any error message.
    I am using Oracle JDeveloper 10.1.3.3.0 version.
    I am not ware where this ide.properties file is present. I have totally 4 files in the paths:
         1. \jdevhome\jdev\system\oracle.jdeveloper.10.1.3.41.57
         2. \jdevhome\jdev\system11.1.1.6.38.62.29\o.jdeveloper
         3. \jdevhome\jdev\system11.1.1.6.38.62.29\o.sqldeveloper.11.2.0.10.4
         4. \jdevbin\jdev\system\oracle.jdeveloper.10.1.3.41.57
    But, in any of this files there is no such thing as timeout parameter.
    I am very new to the Oracle and this OAF part. Please let me know how this issue can be resolved.
    Please let me know if anyone has solution for this. Its very high importance.
    Thanks in advance,
    Srivathsava

    Hi Dilip,
         Thanks for your reply
         But it is also not working
         For your reference...the Log-Message is
    Compiling...
      validating OA Extension XML "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\oracle\apps\xxcfi\thirteendec\OAFreshPRJ\webui\OAFreshPG.xml" file.
    C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\bin\java.exe -jar C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\ojc.jar -source 1.5 -target 1.5 -noquiet -warn -nowarn:320 -deprecation:self -nowarn:560 -nowarn:704 -nowarn:489 -nowarn:415 -nowarn:909 -nowarn:412 -nowarn:414 -nowarn:561 -nowarn:376 -nowarn:371 -nowarn:558 -nowarn:375 -nowarn:413 -nowarn:377 -nowarn:372 -nowarn:557 -nowarn:556 -nowarn:559 -encoding Cp1252 -g -d "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses" -make "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses\OAFreshPRJ.cdi" -classpath  "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\rt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\i18n.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\sunrsasign.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\jsse.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\jce.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\lib\charsets.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\jre\classes;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myclasses;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\jdev-rt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\ojdbc14dms.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\orai18n.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdbc\lib\ocrs12.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\diagnostics\lib\ojdl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\dms.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jdev-cm.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\adfshare.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jmt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\collections.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jct.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\xmlparserv2.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\ojmisc.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\commons-el.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jsp-el-api.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\oracle-el.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jctejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\ejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jmtejb.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4jhtml.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\datatags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4juixtags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\graphtags.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\ojsp.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\jsp\lib\taglib\ojsputil.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\oc4j-internal.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\lib\servlet.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\ojc.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jlib\jewt4.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\regexp.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\share.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\uix2.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\mds\lib\mdsrt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\lib\mdsdt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\lib\oamdsdt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwkjbo.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwk.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\atg.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\collections.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\concurrent.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\oamMaintMode.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsp.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\fwkCabo.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\diagnostics.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsrp-container.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\pdkjava.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\ptlshare.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\xml.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\wsrp-container-types.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jaxb-impl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jaxb-libs.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazncore.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\biamlocal.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bipres.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bicmn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidatasvr.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidataclt.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidatacmn.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\biext.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bicmn-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bipres-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\bidata-nls.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\lib\olap_api.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\lib\bc4jdomorcl.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\jlib\bc4jdatum.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\rosettaRt.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\iasjoc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\pat.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\patch_jars;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\portalFlexComps.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\svc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\svctester.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\lib\xml.jar" -sourcepath  "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\adfmsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jaddinsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jhtmlsrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\uix2-src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\mds\src\mdsrtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\oaext\src\oamdsdtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkjboSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\atgSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\oamMaintModeSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\wspSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\fwkCaboSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bicmn.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidataclt.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidatacmn.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bidatasvr.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\biext.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\bibeans\src\bipres.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\BC4J\src\bc4jdomorcl-src.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\rosettaRtSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\patSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\patch_srcs;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\oamdsxml\*;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appsmdsxml\*;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\portalFlexCompsSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\svcSrc.zip;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\src\svctesterSrc.zip" "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\oracle\apps\xxcfi\thirteendec\OAFreshPRJ\server\OAFreshAMImpl.java"
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
      copying OAFresh-data-sources.xml to output directory
      copying OAFresh-jazn-data.xml to output directory
      copying OAFresh-oc4j-app.xml to output directory
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
    Validating Business Component: OAFreshPRJ
    [6:26:59 AM] Compilation complete: 0 errors, 5 warnings.
    The Compiler - Log is
    Warning: OAFreshPRJ: The Business Component Project does not contain a valid connection.
    Project: C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\OAFreshPRJ.jpr
         C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\myprojects\OAFreshPRJ.jpx
              Warning: OAFreshPRJ: The Business Component Project does not contain a valid connection.
    Embedded OC4J Server - Log is
    [Starting OC4J using the following ports: HTTP=8988, RMI=23891, JMS=9227.]
    C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config>
    "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdk\bin\javaw.exe" -hotspot "-Doracle.home=C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin" -classpath "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar;C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\lib\jdev-oc4j-embedded.jar" -DFND_JDBC_STMT_CACHE_SIZE=200 -DCACHENODBINIT=true -DRUN_FROM_JDEV=true -mx256m -XX:MaxPermSize=256M -Xverify:none -DcheckForUpdates=adminClientOnly -Doracle.application.environment=development -Doracle.j2ee.dont.use.memory.archive=true -Doracle.j2ee.http.socket.timeout=500 -Doc4j.jms.usePersistenceLockFiles=false oracle.oc4j.loader.boot.BootStrap -config "C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\config\server.xml"
    [waiting for the server to complete its initialization...]
    Dec 18, 2013 6:27:03 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering transactions (commit 0) (rollback 0) (prepared 0).
    Dec 18, 2013 6:27:03 AM com.evermind.server.jms.JMSMessages log
    INFO: JMSServer[]: OC4J JMS server recovering local transactions Queue[jms/Oc4jJmsExceptionQueue].
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\xml.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/lib/xml.jar (from <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazn.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/j2ee/home/jazn.jar (from <code-source> in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\jdev\appslibrt\jazncore.jar (from manifest of /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/jdev/appslibrt/jazn.jar) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/j2ee/home/jazncore.jar (from <code-source> in META-INF/boot.xml in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevbin\j2ee\home\oc4j.jar). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader default.root:0.0.0.
    WARNING: Code-source C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib\uix2.jar (from WEB-INF/lib/ directory in C:\Users\sbommise\Srivathsava\Softwares\OAF Patch p9879989_R12_GENERIC\jdevhome\jdev\system\oracle.j2ee.10.1.3.41.57\embedded-oc4j\applications\datatags\webapp\WEB-INF\lib) has the same filename but is not identical to /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevbin/jdev/appslibrt/uix2.jar (from <library> in /C:/Users/sbommise/Srivathsava/Softwares/OAF Patch p9879989_R12_GENERIC/jdevhome/jdev/system/oracle.j2ee.10.1.3.41.57/embedded-oc4j/config/application.xml). If it contains different versions of the same classes, it will be masked as the latter is already visible in the search path of loader datatags.web.webapp:0.0.0.
    13/12/18 06:27:26 java.net.ConnectException: Connection timed out: connect
    13/12/18 06:27:26  at java.net.PlainSocketImpl.socketConnect(Native Method)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.doConnect(PlainSocketImpl.java:333)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.connectToAddress(PlainSocketImpl.java:195)
    13/12/18 06:27:26  at java.net.PlainSocketImpl.connect(PlainSocketImpl.java:182)
    13/12/18 06:27:26  at java.net.SocksSocketImpl.connect(SocksSocketImpl.java:364)
    13/12/18 06:27:26  at java.net.Socket.connect(Socket.java:507)
    13/12/18 06:27:26  at java.net.Socket.connect(Socket.java:457)
    13/12/18 06:27:26  at java.net.Socket.<init>(Socket.java:365)
    13/12/18 06:27:26  at java.net.Socket.<init>(Socket.java:207)
    13/12/18 06:27:26  at oracle.jdevimpl.runner.oc4j.Oc4jNotifier.sendMessage(Oc4jNotifier.java:98)
    13/12/18 06:27:26  at oracle.jdevimpl.runner.oc4j.Oc4jNotifier.postInitApplicationServer(Oc4jNotifier.java:55)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServer.serverExtensionPostInit(ApplicationServer.java:1202)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServer.setConfig(ApplicationServer.java:1049)
    13/12/18 06:27:26  at com.evermind.server.ApplicationServerLauncher.run(ApplicationServerLauncher.java:131)
    13/12/18 06:27:26  at java.lang.Thread.run(Thread.java:595)
    13/12/18 06:27:26 Oracle Containers for J2EE 10g (10.1.3.3.0)  initialized

Maybe you are looking for

  • Parsing escape characters

    I have a query: //query String query_one = "UPDATE homepage SET section1='" + section1 + "' "; //execute query section1SQL.executeUpdate(query_one); Here's the problem: if the var + section1 + contains a single quote or an apostrophe - the SQL query

  • RUN form FMX from the client side

    Hii I have installed oracle forms developer 10g, i have designed simple form and i run it from the local mechine it worked, and i want to try to connect it from the client side, it didn't work Can you help on this please

  • How do you turn on pano in the camera

    How do you turn on Pano in the camera? At the bottom of the screen I can see a partial pano word, but nothing happens when I tap it. On the bottom I have slo-mo on one side and pano on the other, but they are partially faded out.

  • Input just changes on it own

    The input on the tv just changes on it`s own.At 1st was just once in awhile,now it is about every 2-5 mins. We have reset tv and and directtv source and the direct tv remote.Still having problem.How can I fix this?

  • Why am I seeing blank song tracks?

    This issue is a bit hard to explain; I'll try to keep it succinct. I see this only when I play music in my car. I have an iPod shuffle (latest version) and plug it into a USB port in my car. The iPod works fine, but in a few places as I scroll throug