Multiple Errors in the log file of 4402 WLC

Hello all, has anyone seen this error before? If so, what is it referring to?
*Jun 23 15:59:49.202: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:59:18.939: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:58:48.749: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:58:18.572: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:57:48.402: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:57:18.302: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:56:40.988: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:56:31.929: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.
*Jun 23 15:55:13.673: %USMDB-3-MSGTAG030: usmdb_apf.c:260 For information regarding Emergency image Version,Please refer Controller documents.

I think you are hitting bug CSCsz00770 and CSCsy62741

Similar Messages

  • Unable to debug the Data Template Error in the Log file

    Hi,
    I am unable to debug the log file error message Please can anybody explain me in detail where the error lies and how to solve the error.The log file shows the following message.
    XDO Data Engine ver 1.0
    Resp: 50554
    Org ID : 204
    Request ID: 2865643
    All Parameters: USER_ID=1318:REPORT_TYPE=Report Only:P_SET_OF_BOOKS_ID=1:TRNS_STATUS=Posted:P_APPROVED=Not Approved:PERIOD=Sep-05
    Data Template Code: ILDVAPDN
    Data Template Application Short Name: CLE
    Debug Flag: Y
    {TRNS_STATUS=Posted, REPORT_TYPE=Report Only, PERIOD=Sep-05, USER_ID=1318, P_SET_OF_BOOKS_ID=1, P_APPROVED=Not Approved}
    Calling XDO Data Engine...
    java.lang.NullPointerException
         at oracle.apps.xdo.dataengine.DataTemplateParser.getObjectVlaue(DataTemplateParser.java:1424)
         at oracle.apps.xdo.dataengine.DataTemplateParser.replaceSubstituteVariables(DataTemplateParser.java:1226)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeData(XMLPGEN.java:398)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeGroupStructure(XMLPGEN.java:281)
         at oracle.apps.xdo.dataengine.XMLPGEN.processData(XMLPGEN.java:251)
         at oracle.apps.xdo.dataengine.XMLPGEN.processXML(XMLPGEN.java:192)
         at oracle.apps.xdo.dataengine.XMLPGEN.writeXML(XMLPGEN.java:222)
         at oracle.apps.xdo.dataengine.DataProcessor.processData(DataProcessor.java:334)
         at oracle.apps.xdo.oa.util.DataTemplate.processData(DataTemplate.java:236)
         at oracle.apps.xdo.oa.cp.JCP4XDODataEngine.runProgram(JCP4XDODataEngine.java:272)
         at oracle.apps.fnd.cp.request.Run.main(Run.java:148)
    Start of log messages from FND_FILE
    Start of After parameter Report Trigger Execution..
    Gl Set of Books.....P
    Organization NameVision Operations
    Entering TRNS STATUS POSTED****** 648Posted
    end of the trns status..687 Posted
    currency_code 20USD
    P_PRECISION 272
    precision 332
    GL NAME 40Vision Operations (USA)
    Executing the procedure get format ..
    ExecutED the procedure get format and the Result..
    End of Before Report Execution..
    End of log messages from FND_FILE
    Executing request completion options...
    ------------- 1) PUBLISH -------------
    Beginning post-processing of request 2865643 on node AP615CMR at 28-SEP-2006 07:58:26.
    Post-processing of request 2865643 failed at 28-SEP-2006 07:58:38 with the error message:
    One or more post-processing actions failed. Consult the OPP service log for details.
    Finished executing request completion options.
    Concurrent request completed
    Current system time is 28-SEP-2006 07:58:38
    Thanks & Regards
    Suresh Singh

    Generally the DBAs are aware of the OPP service log. They can tell you the cause of the problem.
    Anyway, how did you resolve the issue?

  • Type of error in the log file while using using call transaction mode u2018Eu2019

    Hi Gurus,
    Please Answer for this qusetion urgently
    what type of error exactly  you will be seeing in the log file while using call transaction mode u2018Eu2019?
    Thanks/
    Radha.

    Hi,
    Can you be clear.
    In call transaction , no error logs  are created, you have to handle the errors explicitly using the structure BDCMSGCOLL.
    Whenever you use E mode then if the transaction encounters any of the errors i.e. data type mismatching or invalid values etc, it will stop at that screen.
    You can handle the errors in call transaction in the following method.
    create a table using the structure BDCMSGCOLL.
    then
    loop at ......
          CALL TRANSACTION 'XK01' USING I_BDCDATA MODE 'N' UPDATE 'S' MESSAGES INTO I_MESGTAB.
    endloop.
      SORT I_MESGTAB BY MSGID MSGV1 ASCENDING.
      DELETE ADJACENT DUPLICATES FROM I_MESGTAB.
      LOOP AT I_MESGTAB.
        CALL FUNCTION 'FORMAT_MESSAGE'
          EXPORTING
            ID   = I_MESGTAB-MSGID
            LANG = I_MESGTAB-MSGSPRA
            NO   = I_MESGTAB-MSGNR
            V1   = I_MESGTAB-MSGV1
            V2   = I_MESGTAB-MSGV2
            V3   = I_MESGTAB-MSGV3
            V4   = I_MESGTAB-MSGV4
          IMPORTING
            MSG  = MESG1.
        IF I_MESGTAB-MSGTYP = 'S' .
          WA_SUCCMESG-MESG = MESG1.
          APPEND WA_SUCCMESG TO I_SUCCMESG.
    else     IF I_MESGTAB-MSGTYP = 'E' .
          WA_ERRMESG-MESG = MESG1.
          APPEND WA_ERRMESG TO I_ERRMESG.
        ENDIF.
      ENDLOOP.
    Hope this is clear.
    Thanks and Regards.

  • OWB does not store errors in the log files?

    I've specified the log file on the mapping. When I execute the mapping, I see that it does create the log file i specified. However, there are no error logs in the file itself. Is there a step I'm missing. What do I need to do in order for OWB to generate the error codes into the log file?

    The description and instructions for all the different log files and audit records are in this document
    http://otn.oracle.com/products/warehouse/pdf/Cases/case10.pdf
    Nikolai Rochnik

  • Check Event Alert failed with error - No errors in the log file.

    Hi All,
    I am developing a simple event based alert on PO_HEADERS table. I want to send alerts when a PO is created.
    I did all the steps according to the metalink note How To Send An Email In A Simple Periodic Or Event Alert? [ID 1162153.1]
    When i create the PO, the alert is triggering, and Check Event Alert concurrent program is running. But the program completes with error.
    Checking the output file (empty) log file (no errors)
    What can i do here to find out what is the problem? There is nothing in the Alert Manager - History form also. I have kept 7 days as days to keep.
    Thanks!
    M

    Can you find any details about the error from the "View Detail" button (the same window where you check the log and output files)?
    I found the Workflow logs, I am not sure what I am looking for, but i am not seeing any errors reported.The event viewer is supposed to send an email, so do you see anything in the logs that could be related?
    Thanks,
    Hussein

  • Severe error in the log file of App Server 8.1 PE

    Hi,
    I have installed the JWSDP 1.6 with my App Server 8.1 PE and i found an error that i could not solve.
    The error message reads "EJB Webservice security configuration Failure com.sun.enterprise.security.jauth.AuthException at com.sun.enterprise.security.jauth.ConfigFile.createModule(ConfigFile.java 350)"
    and the stack trace is:
    at com.sun.enterprise.security.jauth.ConfigFile.getServerAuthContext(ConfigFile.java:115)
         at com.sun.enterprise.security.jauth.ServerAuthConfig.getAuthContext(ServerAuthConfig.java:98)
         at com.sun.enterprise.security.jauth.ServerAuthConfig.getConfig(ServerAuthConfig.java:64)
         at com.sun.enterprise.webservice.EjbRuntimeEndpointInfo.<init>(EjbRuntimeEndpointInfo.java:81)
         at com.sun.ejb.containers.StatelessSessionContainer.initializeHome(StatelessSessionContainer.java:233)
         at com.sun.ejb.containers.ContainerFactoryImpl.createContainer(ContainerFactoryImpl.java:287)
         at com.sun.enterprise.server.AbstractLoader.loadEjbs(AbstractLoader.java:477)
         at com.sun.enterprise.server.ApplicationLoader.load(ApplicationLoader.java:125)
         at com.sun.enterprise.server.TomcatApplicationLoader.load(TomcatApplicationLoader.java:95)
         at com.sun.enterprise.server.AbstractManager.load(AbstractManager.java:180)
         at com.sun.enterprise.server.ApplicationLifecycle.onStartup(ApplicationLifecycle.java:200)
         at com.sun.enterprise.server.ApplicationServer.onStartup(ApplicationServer.java:300)
         at com.sun.enterprise.server.PEMain.run(PEMain.java:294)
         at com.sun.enterprise.server.PEMain.main(PEMain.java:220)
    Caused by: java.lang.reflect.InvocationTargetException
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:585)
         at com.sun.enterprise.security.jauth.ConfigFile.createModule(ConfigFile.java:331)
         ... 14 more
    Caused by: java.lang.RuntimeException: org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xwss:KeyEncryptionMethod'. One of '{"http://java.sun.com/xml/ns/xwss/config":CanonicalizationMethod, "http://java.sun.com/xml/ns/xwss/config":SignatureMethod, "http://java.sun.com/xml/ns/xwss/config":Target, "http://java.sun.com/xml/ns/xwss/config":SignatureTarget}' is expected.
         at com.sun.xml.wss.provider.WssProviderAuthModule.initialize(WssProviderAuthModule.java:122)
         at com.sun.xml.wss.provider.ServerSecurityAuthModule.initialize(ServerSecurityAuthModule.java:45)
         ... 19 more
    Caused by: org.xml.sax.SAXParseException: cvc-complex-type.2.4.a: Invalid content was found starting with element 'xwss:KeyEncryptionMethod'. One of '{"http://java.sun.com/xml/ns/xwss/config":CanonicalizationMethod, "http://java.sun.com/xml/ns/xwss/config":SignatureMethod, "http://java.sun.com/xml/ns/xwss/config":Target, "http://java.sun.com/xml/ns/xwss/config":SignatureTarget}' is expected.
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.createSAXParseException(ErrorHandlerWrapper.java:236)
         at com.sun.org.apache.xerces.internal.util.ErrorHandlerWrapper.error(ErrorHandlerWrapper.java:172)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:382)
         at com.sun.org.apache.xerces.internal.impl.XMLErrorReporter.reportError(XMLErrorReporter.java:316)
         at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator$XSIErrorReporter.reportError(XMLSchemaValidator.java:429)
         at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.reportSchemaError(XMLSchemaValidator.java:3185)
         at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.handleStartElement(XMLSchemaValidator.java:1831)
         at com.sun.org.apache.xerces.internal.impl.xs.XMLSchemaValidator.emptyElement(XMLSchemaValidator.java:725)
         at com.sun.org.apache.xerces.internal.impl.XMLNSDocumentScannerImpl.scanStartElement(XMLNSDocumentScannerImpl.java:322)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl$FragmentContentDispatcher.dispatch(XMLDocumentFragmentScannerImpl.java:1693)
         at com.sun.org.apache.xerces.internal.impl.XMLDocumentFragmentScannerImpl.scanDocument(XMLDocumentFragmentScannerImpl.java:368)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:834)
         at com.sun.org.apache.xerces.internal.parsers.XML11Configuration.parse(XML11Configuration.java:764)
         at com.sun.org.apache.xerces.internal.parsers.XMLParser.parse(XMLParser.java:148)
         at com.sun.org.apache.xerces.internal.parsers.DOMParser.parse(DOMParser.java:250)
         at com.sun.org.apache.xerces.internal.jaxp.DocumentBuilderImpl.parse(DocumentBuilderImpl.java:292)
         at javax.xml.parsers.DocumentBuilder.parse(DocumentBuilder.java:98)
         at com.sun.xml.wss.impl.configuration.SecurityConfigurationXmlReader.parseXmlStream(SecurityConfigurationXmlReader.java:219)
         at com.sun.xml.wss.impl.configuration.SecurityConfigurationXmlReader.parseXmlStream(SecurityConfigurationXmlReader.java:194)
         at com.sun.xml.wss.impl.configuration.SecurityConfigurationXmlReader.createDeclarativeConfiguration(SecurityConfigurationXmlReader.java:252)
         at com.sun.xml.wss.provider.WssProviderAuthModule.initialize(WssProviderAuthModule.java:97)
         ... 20 more
    I did not do any configuration setting after JWSDP is installed and i found this error.
    Can someone help me please.
    Thanks a lot
    Lacon

    I just realise that there is an enterprise appplication deployed and the setting of configuration > security > message security > soap has the clientProvider and serverProvider activated.
    when i turn off the soap security setting, the problem goes away.
    sorry about that.
    Lacon

  • Import Fails, No Error in the Logs

    I am trying to do a full export and import, including SSO, SEC, CAs and Pages, but not all pages import, only the first few pages actually import.
    No error in the log files.
    Any guidance as to what I should be looking for to see where it fails?

    If you haven't already, try reading over ALL of the Portal Export/Import FAQ located on OTN's PortalCenter at:
    http://portalstudio.oracle.com/pls/ops/docs/FOLDER/COMMUNITY/OTN_CONTENT/MAINPAGE/DEPLOY_PERFORM/EXPORT_IMPORT_FAQ_1120.HTM
    In particular, the troubleshooting and error message sections in the above FAQ should help. If not, then let us know.
    Best Regards,
    Harry

  • Internal Error has occurred .  Check the log file for details 11g r2 on windows 8 64bit

    Hi Friends,
    I Have just installed on my laptop
    Database : oracle 11g 64bit , on windows 8 64bit
    I was successfully able to install the Database without any problem... I am able to connect from command prompt both as sys and hr user....
    But when I tried to connect through EM by sys credentials...
    https//localhost:1521/em
    I am getting Error Internal Error has occurred .  Check the log file for details....
    When I checked the emoms.trc this the last few lines...
    https://localhost:3938/emd/main:A००००००००३३.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 32 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:22:35,544 [MetadataLoad https://localhost:3938/emd/main:A००००००००३४.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 33 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:22:36,275 [MetadataLoad https://localhost:3938/emd/main:A००००००००३५.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 34 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:22:57,105 [MetadataLoad https://localhost:3938/emd/main:A००००००००३६.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 35 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:22:57,832 [MetadataLoad https://localhost:3938/emd/main:A००००००००३७.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 36 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:22:58,625 [MetadataLoad https://localhost:3938/emd/main:A००००००००३८.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 37 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:23:02,529 [MetadataLoad https://localhost:3938/emd/main:A००००००००३९.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 38 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:23:03,307 [MetadataLoad https://localhost:3938/emd/main:A००००००००४०.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 39 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    2013-09-02 22:23:04,107 [MetadataLoad https://localhost:3938/emd/main:A००००००००४१.xml] ERROR eml.XMLLoader markFileAsError.858 - Error repeated 40 times: ERROR-400|ORA-01841: (full) year must be between -4713 and +9999, and not be 0
    ORA-06512: at "SYSMAN.EMD_LOADER", line 1779
    ORA-06512: at line 1
    Thanks and Regards

    You could try reading what I said: change the port in the URL to 1158.
    My release of windows is this,
    c:\Users\John>ver
    Microsoft Windows [Version 6.2.9200]
    c:\Users\John>
    You can ignore that junk about editions.
    And by the way, there is a problem with your keyboard, it keeps inserting multiple "...." character strings.

  • History report error: | An Exceptional Error occurred. Application exiting. Check the log file for error 5022

    Hi all
    I've got a error msg when try to generate a report using Cisco history report tool:
    Error | An Exceptional Error occurred. Application exiting.  Check the log file for error 5022
    It only happens when choose report template: ICD_Contact_Service_Queue_Activity_by_CSQ_en_us.
    User tried samething on other PC, it working fine.
    only on user' own PC and only choose this report, error appears.
    user runing windows 7 and do not have crystal report installed
    tried reinstalled the software, doesn't work.
    also tried this: (https://cisco-support.hosted.jivesoftware.com/thread/2041254) - doesn't work
    then tried https://supportforums.cisco.com/docs/DOC-6209  - doesn't work
    attached the log file.
    thanks.

    wenqianyu wrote:From the log file:Looks like you get a Login Window.Error message showed up after username/password be enteredThere is an error in the log: Error happened in comparing UCCX version and HRC versionYou may need to do a clean uninstall, download the Historical report from the server, and install it again on the PC.Does this only happen to one PC or to every PC with this application?Wenqian 
    I have completely uninstalled the HRC, and download from server install again -- still doesn't work with exactly same error.
    this matter only happens on this PC, when user try same thing on other PC, it works.
    so i think it not relate to server or account.

  • Bursting Program Ends in Error with nothing in the Log file

    Hi All
    I have a RDF which calls a bursting program in After report trigger, the problem i'm facing is that the bursting program is completing successfully for a set of parameters and when again the program is run for the same set of parameters the bursting program is ending in error, i have checked the log file but nothing in the log file
    below is my log file
    +---------------------------------------------------------------------------+
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 30-SEP-2013 15:11:15
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    Request ID: 574533
    All Parameters: Dummy for Data Security=N:ReportRequestID=574532:DebugFlag=Y
    Report Req ID: 574532
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:T1DEVEBSAPP1
    Preparing parameters
    null output =/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574533.out
    inputfilename =/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574532.out
    Data XML File:/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574532.out
    Set Bursting parameters..
    Temp. Directory:/tmp
    [093013_031118656][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [093013_031118657][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=574532, user-variable:cp:language=en, user-variable:cp:responsibility=20678, user-variable.OA_MEDIA=http://t1devebsapp1.travelzoo.com:8001/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=574532, user-variable:cp:locale=en-US, user-variable:cp:user=SETUPUSER, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=574533, user-variable:cp:org_id=81, user-variable:cp:reportdescription=Travelzoo Invoice Print Selected Invoices-Child, user-variable:cp:Dummy for Data Security=N}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    602
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 30-SEP-2013 15:11:41
    +---------------------------------------------------------------------------+
    and the output says..
    "Error!! Could not deliver the output for Delivery channel:null "
    Wondering What might be the issue, any help on this is greatly appreciated.
    -Ragul

    Ram,
    Is this a custom or standard concurrent program?
    Was this working properly before? If yes, what changes have been done recently?
    Did you try to relink the concurrent program executable file and see if this helps? Also, you could enable trace/debug and submit the request again and see if more details are collected in the logs -- See (Note: 296559.1 - FAQ: Common Tracing Techniques within the Oracle Applications 11i/R12).
    Regards,
    Hussein

  • Bursting Program Errors Out with nothing in the Log file

    Hi All
    I have a RDF which calls a bursting program in After report trigger, the problem i'm facing is that the bursting program is completing successfully for a set of parameters and when again the program is run for the same set of parameters the bursting program is ending in error, i have checked the log file but nothing in the log file
    below is my log file
    +---------------------------------------------------------------------------+
    XML Publisher: Version : 12.0.0
    Copyright (c) 1979, 1999, Oracle Corporation. All rights reserved.
    XDOBURSTREP module: XML Publisher Report Bursting Program
    +---------------------------------------------------------------------------+
    Current system time is 30-SEP-2013 15:11:15
    +---------------------------------------------------------------------------+
    XML/BI Publisher Version : 5.6.3
    Request ID: 574533
    All Parameters: Dummy for Data Security=N:ReportRequestID=574532:DebugFlag=Y
    Report Req ID: 574532
    Debug Flag: Y
    Updating request description
    Updated description
    Retrieving XML request information
    Node Name:T1DEVEBSAPP1
    Preparing parameters
    null output =/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574533.out
    inputfilename =/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574532.out
    Data XML File:/u01/oracle/CRP2/inst/apps/CRP2_t1devebsapp1/logs/appl/conc/out/o574532.out
    Set Bursting parameters..
    Temp. Directory:/tmp
    [093013_031118656][][STATEMENT] Oracle XML Parser version ::: Oracle XML Developers Kit 10.1.3.130 - Production
    [093013_031118657][][STATEMENT] setOAProperties called..
    Bursting propertes.....
    {user-variable:cp:territory=US, user-variable:cp:ReportRequestID=574532, user-variable:cp:language=en, user-variable:cp:responsibility=20678, user-variable.OA_MEDIA=http://t1devebsapp1.travelzoo.com:8001/OA_MEDIA, burstng-source=EBS, user-variable:cp:DebugFlag=Y, user-variable:cp:parent_request_id=574532, user-variable:cp:locale=en-US, user-variable:cp:user=SETUPUSER, user-variable:cp:application_short_name=XDO, user-variable:cp:request_id=574533, user-variable:cp:org_id=81, user-variable:cp:reportdescription=Travelzoo Invoice Print Selected Invoices-Child, user-variable:cp:Dummy for Data Security=N}
    Start bursting process..
    Bursting process complete..
    Generating Bursting Status Report..
    +---------------------------------------------------------------------------+
    Start of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    End of log messages from FND_FILE
    +---------------------------------------------------------------------------+
    +---------------------------------------------------------------------------+
    Executing request completion options...
    Output file size:
    602
    Finished executing request completion options.
    +---------------------------------------------------------------------------+
    Concurrent request completed
    Current system time is 30-SEP-2013 15:11:41
    +---------------------------------------------------------------------------+
    and the output says..
    "Error!! Could not deliver the output for Delivery channel:null "
    Wondering What might be the issue, any help on this is greatly appreciated.
    -Ragul

    Can you find any details about the error from the "View Detail" button (the same window where you check the log and output files)?
    I found the Workflow logs, I am not sure what I am looking for, but i am not seeing any errors reported.The event viewer is supposed to send an email, so do you see anything in the logs that could be related?
    Thanks,
    Hussein

  • (Cisco Historical Reporting / HRC ) All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054

    Hi All,
    I am getting an error message "All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054"  when trying to log into HRC (This user has the reporting capabilities) . I checked the log files this is what i found out 
    The log file stated that there were ongoing connections of HRC with the CCX  (I am sure there isn't any active login to HRC)
    || When you tried to login the following error was being displayed because the maximum number of connections were reached for the server .  We can see that a total number of 5 connections have been configured . ||
    1: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Current number of connections (5) from historical Clients/Scheduler to 'CRA_DATABASE' database exceeded the maximum number of possible connections (5).Check with your administrator about changing this limit on server (wfengine.properties), however this might impact server performance.
    || Below we can see all 5 connections being used up . ||
    2: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:[DB Connections From Clients (count=5)]|[(#1) 'username'='uccxhrc','hostname'='3SK5FS1.ucsfmedicalcenter.org']|[(#2) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#3) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#4) 'username'='uccxhrc','hostname'='PFS-HHXDGX1.ucsfmedicalcenter.org']|[(#5) 'username'='uccxhrc','hostname'='47BMMM1.ucsfmedicalcenter.org']
    || Once the maximum number of connection was reached it threw an error . ||
    3: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Number of max connection to 'CRA_DATABASE' database was reached! Connection could not be established.
    4: 6/20/2014 9:13:49 AM %CHC-LOG_SUBFAC-3-UNK:Database connection to 'CRA_DATABASE' failed due to (All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054.)
    Current exact UCCX Version 9.0.2.11001-24
    Current CUCM Version 8.6.2.23900-10
    Business impact  Not Critical
    Exact error message  All available connections to database server are in use by other client machines. Please try again later and check the log file for error 5054
    What is the OS version of the PC you are running  and is it physical machine or virtual machine that is running the HRC client ..
    OS Version Windows 7 Home Premium  64 bit and it’s a physical machine.
    . The Max DB Connections for Report Client Sessions is set to 5 for each servers (There are two servers). The no of HR Sessions is set to 10.
    I wanted to know if there is a way to find the HRC sessions active now and terminate the one or more or all of that sessions from the server end ? 

    We have had this "PRX5" problem with Exchange 2013 since the RTM version.  We recently applied CU3, and it did not correct the problem.  We have seen this problem on every Exchange 2013 we manage.  They are all installations where all roles
    are installed on the same Windows server, and in our case, they are all Windows virtual machines using Windows 2012 Hyper-V.
    We have tried all the "this fixed it for me" solutions regarding DNS, network cards, host file entries and so forth.  None of those "solutions" made any difference whatsoever.  The occurrence of the temporary error PRX5 seems totally random. 
    About 2 out of 20 incoming mail test by Microsoft Connectivity Analyzer fail with this PRX5 error.
    Most people don't ever notice the issue because remote mail servers retry the connection later.  However, telephone voice mail systems that forward voice message files to email, or other such applications such as your scanner, often don't retry and
    simply fail.  Our phone system actually disables all further attempts to send voice mail to a particular user if the PRX5 error is returned when the email is sent by the phone system.
    Is Microsoft totally oblivious to this problem?
    PRX5 is a serious issue that needs an Exchange team resolution, or at least an acknowledgement that the problem actually does exist and has negative consequences for proper mail flow.
    JSB

  • Getting the error while transporting the log file

    Hi,
    I have the primary and physical standby setup on my pc. i want to transport the log file by using the command on primary database
    alter system archive current log;
    alter system swicth archive logfile;
    i am recieving error not able to find the log sequence 15 #.
    Thanks
    vj0011590

    OCI requires a native library.
    Native libraries must be in the shared library path of the application (this is a feature of the OS not java.)

  • Error:41453 in log file even when the account data is imported successfully

    Hi,
    As a beginner, I tried importing ‘Accounts’ record type with 2 records, by taking below 4 fields:
    Account Name, Account Type, City, Owner
    The email received for the account import request completion has below details:
    Total Records: 2
    Successfully Imported: 0
    Partially Imported: 0
    Duplicate Records Ignored: 0
    Failed: 2
    Against both the records, error : 41453 is mentioned in the log file, with error description as - An unexpected error occurred during the import of the following row: 'Account Name: <name of account>'
    However when I query for the records under Account tab, the records are all created properly (with all the values correctly present). I am not sure why am I getting this error if the records are successfully imported? Any help on this would be appreciated.
    In import wizard below selection was made-
    Select the method Import should use to uniquely identify matching records. You can use either the External Unique ID or On Demand Row ID or the following On Demand predefined fields: Account Name, Location
    * External Unique ID
    If the unique record identifier of the record being imported matches a record already in On Demand:
    * Don't Import Duplicate Records
    If the unique record identifier of the record being imported does not match a record already in On Demand:
    * Create New Record
    The import process may encounter field values that do not match the picklist values for fields in Oracle CRM On Demand. Please decide how to resolve these conflicts:
    * Don't Import Field Value
    This option allows you to decide if import should create a new record for missing associations (related records) in your data file.
    For the current import, this option will apply to the following associated record fields: Parent Account
    * Create Associated Record
    Thanks,
    Gunjan

    *'Create Associated Record’ & ‘Don't Create Associated Record’*
    If you are inserting Contacts. Account for that Contact is an Associated Record.
    And if you gave 'Create Associated Record’ it will create Accounts for that Contact if it didn't find a matching Account and insert the Contact.
    If you gave ‘Don't Create Associated Record’ it will not create Account and the Contact.
    Its better to give ‘Don't Create Associated Record’ since the Account you gave in contact is case sensitive.
    So if u give 'Create Associated Record’ then while inserting contact if the account is not exactly matching even though it exist in some other case(lower/upper)
    it wont map to that account which you meant and will create a new Account and map it to that contact.
    Hope you got some idea.
    Regards,
    Lemu

  • Can't open Flash Builder - "See the log file" error.

    I have been using Flash Builder 4.5 and for some reason it has stopped opening correctly - I get the following error then it just shuts down.... :
    "An error has occured. See the log file."
    and if i check the log file it refers to then i see the following text:
    !SESSION 2011-06-22 13:53:43.658 -----------------------------------------------
    eclipse.buildId=M20100909-0800
    java.version=1.6.0_16
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=en_US
    Command-line arguments:  -os win32 -ws win32 -arch x86
    !ENTRY org.eclipse.osgi 4 0 2011-06-22 13:53:59.598
    !MESSAGE Application error
    !STACK 1
    org.eclipse.swt.SWTError: No more handles
        at org.eclipse.swt.SWT.error(SWT.java:4109)
        at org.eclipse.swt.SWT.error(SWT.java:3998)
        at org.eclipse.swt.SWT.error(SWT.java:3969)
        at org.eclipse.swt.widgets.Widget.error(Widget.java:468)
        at org.eclipse.swt.widgets.Control.createHandle(Control.java:633)
        at org.eclipse.swt.widgets.Composite.createHandle(Composite.java:305)
        at org.eclipse.swt.widgets.Control.createWidget(Control.java:649)
        at org.eclipse.swt.widgets.Scrollable.createWidget(Scrollable.java:134)
        at org.eclipse.swt.widgets.Control.<init>(Control.java:110)
        at org.eclipse.swt.widgets.Scrollable.<init>(Scrollable.java:75)
        at org.eclipse.swt.widgets.Composite.<init>(Composite.java:95)
        at org.eclipse.ui.splash.BasicSplashHandler.getBundleProgressMonitor(BasicSplashHandler.java :159)
        at org.eclipse.ui.splash.BasicSplashHandler.getContent(BasicSplashHandler.java:265)
        at org.eclipse.ui.internal.splash.EclipseSplashHandler.init(EclipseSplashHandler.java:86)
        at org.eclipse.ui.internal.Workbench$8.run(Workbench.java:782)
        at org.eclipse.core.runtime.SafeRunner.run(SafeRunner.java:42)
        at org.eclipse.ui.internal.Workbench.createSplashWrapper(Workbench.java:798)
        at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2467)
        at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2438)
        at org.eclipse.ui.internal.Workbench$7.run(Workbench.java:671)
        at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:332)
        at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:664)
        at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
        at com.adobe.flexbuilder.standalone.FlashBuilderApplication.start(FlashBuilderApplication.ja va:108)
        at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:196)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLau ncher.java:110)
        at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.jav a:79)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:369)
        at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:179)
        at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
        at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
        at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
        at java.lang.reflect.Method.invoke(Unknown Source)
        at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:619)
        at org.eclipse.equinox.launcher.Main.basicRun(Main.java:574)
        at org.eclipse.equinox.launcher.Main.run(Main.java:1407)
    This is incredably frustrating as you can imagine as it effectively means i cant work anymore, it is clearly some kind of problem with eclipse but i have no idea what.
    I have tried re-installing Flash Builder twice and no luck.
    Can anyone help with this???
    Thanks !!!!
    Elliot.

    There is a similar thread with exact same stackstrace and problmes reported with earlier verison of FB. You can check it here http://forums.adobe.com/thread/832073. Thre is also representation of Adobe engineers on this thread. Aprarenlty there are certain updates(Eclipse / java) that FB doen't encourage, post FB is installed in stanadlone mode and workarounds are suggested on this thread to overcome this problem. If you are workign in plugin environment with FB, I guess updates are not affecting FB installtion. Please try out the solutions presented on this thread and let us know.

Maybe you are looking for

  • Field selection for mvt type 544/acct 423001differs

    Hi Guru's Scenario In Subcontracting while doing reverse of Goods receipt this error is occuring. Can anybody help me. Rgds Ana. Edited by: ana kamat on Dec 20, 2008 8:21 AM

  • Proxies not created for WMV files

    One of my FCSrv installs is having difficulty with .wmv files. The system has Flip4Mac Pro installed, and if you open the files directly, or even use the "view" popup in the FCS client on that system, the clips play fine. Also, in column view I see t

  • Passing parameters to web based oracle forms

    Hi, How can I pass parameters from web page to oracle form applet? OR is there anyway i can know (within a form) if that form is run from a client/server or from web. This is just to set some parameters depending on the condition: client/server or we

  • Change folders color labels

    Hi, I want to change the color label of folders which contain specified files, eg movs, jpegs. I don´t want to copy or remove files, because folder size is about 140 GB. The biggest group of files is about 50 GB. I mention this, because I think getti

  • ACR3 RAw processing vs. LIghtroom.

    Does anyone know if the raw processing engine to be released with LIghtroom is the same as ACR's current engine? I sure hope not because all versions of ACR have had issues with rendering the Red's with a slight orange tonality to them. The results I