About ADF log

hello every one ,how can I configure the ADF logging.xml to reach daily log ,and the log's name like xxx20131113.log?
<log_handler name='mylog-handler' class='oracle.core.ojdl.logging.ODLHandlerFactory' level='TRACE:32'> 
   <property name='logreader:' value='off'/> 
   <property name='path' value='D:\log\'/>
    <property name='rotationFrequency' value='daily'/>
   <property name='retentionPeriod' value='day'/>
   <property name='format' value='ODL-Text'/> 
   <property name='useThreadName' value='true'/> 
   <property name='locale' value='zh'/> 
   <property name='maxFileSize' value='5242880'/> 
   <property name='maxLogSize' value='52428800'/> 
   <property name='encoding' value='UTF-8'/> 
  </log_handler>

Hi,  I am able to create log file with date format.  I did not have windows envt set up and  I had to create envt in windows  and tested the log.  You will have to pass it as  system variable  using -D tag.   Ex :  -Ddate.var=%datevar%  where datevar is the one  you are assigning date format. but ensure that you will not have space and special character in the extracted format.
thanks

Similar Messages

  • About ADF logging.xml

    hello everyone, configure a loghandler in logging.xml like this:
    <property name='path' value='${domain.home}/servers/${weblogic.Name}/logs/owsm/msglogging/diagnostic.log'/>
    where the ${domain.home} and ${weblogic.Name} set up, then can I set up other variable and how?

    hello my jdev is 12c,
    please look this url about ADF log 
    thanks

  • Strange ADF Log: ACT COMP (QRY)!!!

    Hi,
    I have activated the ADF log in an ADF Faces application in order to analyse some performance problems it has. I have added the following options to the Java command line:
    -Djbo.debugoutput=adflogger -Djbo.adflogger.level=FINE
    Then I have seen messages like this one in the log output:
    FacturasView3>#q computed SQLStmtBufLen: 2281, actual=2607, storing=2637 ACT > COMP (QRY)!!!
    The phrase "ACT > COMP (QRY)!!!" in capital letters and with exclamation signs make me think that it's a warning to alert developers that something bad is happening. I have also seen messages like these one:
    MovimientosCtbView4>#q old SQLStmtBufLen: 1170, actual=1079, storing=1109
    similar to the first one but without the warning. What does the "ACT > COMP (QRY)!!!" phrase mean?
    The performance problems that the we are experiencing with this application consist of high memory and CPU consumption when the application has been running about two hours in a production environment. Sometimes it happens when it has been running less than one hour.
    The application was developed by other people, so I don't know if they used bad ADF practices.
    Thanks,
    Marc

    So, the update from development on this is that in order to avoid creating a StringBuffer that we then need to resize numerous times while building up the various parts of a SQL statement, we estimate what the size of the stringbuffer will be and initially allocate it to be that size. If the actual SQL statement created ends up being bigger, then this diagnostic just tells us that our guestimate was under the actual number of characters required to store the whole statement, so in other words, the StringBuffer needed to be grown to accommodate the larger size.
    It's not really something to worry about, but if you're interested in helping us improve our estimating algorithm, you can open a service request on Metalink with a simple testcase and ask for the support rep to file a bug for it so we can track down the situation where we've guessed too small for the size of the SQL string.

  • Error Stack in Expert Routine, Infos about Object Log

    Hi all,
    currently I try to find some information about using the error stack in combination with an expert routine. So far I know that I have to use the Object Log, which is already in place in my code for monitor messages.
    LOOP AT itab_input INTO wa_input.
    IF sy-subrc <> 0.
            CLEAR msg.
            msg-msgid = 'MY_CLASS'.
            msg-msgty = 'E'.
            msg-msgno = '002'.
            msg-msgv1 = v1.
            msg-msgv2 = v2.
            msg-msgv3 = v3.
            APPEND msg TO t_msg.
            " ??? Write wa_input to error stack???
            CONTINUE.
          ENDIF.
    ENDLOOP.
    Does somebody know how I could append wa_input to the error stack? Or does somebody have a good documentation about Object log?
    Thanks a lot!
    Nita

    Good Morning,
    thanks a lot for your input. I tried to implement this function, but I do not know where I could get the Segment Id from.
    Do you know what i_use_crosstab is used for? I think i_with_message should be set to 'X' if I want to write wa_input-record it to the error stack.
    CALL METHOD log->verify_record
              EXPORTING
                i_use_crosstab  = ''
                i_segid         = lv_segid
                i_record        = wa_input-record
                i_with_message  = 'X'
              RECEIVING
                r_skip          = lv_skip
              EXCEPTIONS
                too_many_errors = 1
                not_in_crosstab = 2
                OTHERS          = 3.
    From semantic point of view the coding should do following:
    - To avoid a second loop in my expert routine it should only check the current src record. If this is wrong, which I already determine in my coding, it should write the record in the error stack. If it is correct, it should check whether there are already records with the same semantic key in the error stack and if yes, add it also to it.
    - I assume that I have to delete this record manually from my src. package than.
    Cheers
    Nita

  • ADF logging problems

    Hi,
    I think that there are some serious problems with ADF logging. Setting its logging level to finest may change the behaviour of the application fundamentally by throwing exceptions which wouldn't be thrown otherwise.
    For example:
    Logging level of ADF is default. Given an EL expression for an NDValue attribute of a methodAction in some pageDef file - the page is working fine and you see the desired data on the page.
    Then you set the logging level of oracle.adfinternal to finest and re-run the page, and you can see a not too informative "JBO-29000: null; java.lang.NullPointerException" error message on the page, which of course does not show your data, as the methodAction was not executed due to the JBO error. The trace stack shows that the cause of the oracle.jbo.JboException thrown at oracle.adf.model.binding.DCBindingContainer.reportException was a java.lang.NullPointerException thrown at oracle.adfinternal.view.faces.model.FacesExpressionEvaluator.evaluate. Cheking the log files you can see that this method has logged a message with level of TRACE:1 saying "Error evaluating expression: #{your expression}". This is beyond understanding, as the expression is correct (e.g. it is syntactically correct and referencing only existing bean values or an attribute binding input value).
    Does anybody have any experiences like this or know the cause of this problem?
    (I'll try to reproduce the problem in a simple testcase if my time permits.)
    Regards,
    Patrik

    Patrik,
    my guess is that this is basically a bug in the application code. When you increase the log level, you're making the application execute more code to debug data that's not executed otherwise when the log level is the default.
    This happened to me some time ago with another application and I found out that there was a bug in the code which was executed with FINEST level.
    As you say, if there is a "null" value then when the code is executed, you get the NullPointerException. I don't know who would be the one to solve this issue though.
    Good luck

  • About transaction logs

    Can you tell me about transaction log space? how does it gets full? How is it related to performance?

    Hi,
    Monitoring the SAP Log Disk
    Use
    The size of the transaction log must be checked regularly to work out how much free space is available on the log disk. There should always be enough free space to allow the next file extension. When the SAP system has been installed the autogrow increment is set. At least the size of this increment should be available on the log disk to permit the next file extension. If less space is available and the transaction log file fills up, the SAP system will come to a standstill.
    Ideally, the transaction log should never be filled to more than 60-70%. If the transaction log regularly exceeds this level between 2 transaction log backups, the transaction log must be saved at more frequent time intervals.
    The size of the log can be assessed on the basis of information given for completed backups in the SAP transaction for Backup and Restore Information.
    Procedure:
           1.      To access the transaction for Backup Restore Information  choose CCMS ® DB Administration ® Backup logs.
    Alternatively, enter the transaction code DB12.
    The initial screen of the monitor CCMS Monitoring Tool u2013 DB12 (Backup Restore Information) appears. 
           2.      Choose Backup history and then Logs Backup.
           3.      A result list appears. Find the largest transaction log backup of the past week. Select a row and then History info to find out the number of pages that were processed during the backup. To work out the amount of space used in the transaction log, multiply the number of dumped pages by 8 KB. You can then work out how much free space is left on the transaction log disk.
    If you use a RAID1 disk system exclusively for the SAP transaction log and create hourly log backups, you will rarely encounter space problems. The SAP log file is initially created with a size of 1 GB. The smallest disk normally has 9 GB space and the log file can therefore grow to 9 GB.
    Hope it Helps
    Srini

  • Adf Logging

    hi experts,
    Using jdev11.1.1..50-adfbc.
    i go through duncan's blog for logging.
    i tried those as he said. but this npe keep on throwing. while hitting search button. i restart entire system / jdev.. i dont know what's going on.
    http://img716.imageshack.us/img716/5412/48693347.png
    i mess'd up any other steps.

    john,
    this waht only i captured in snap.
    Performing action null[ from oracle.adf.logging.dt.analyzer.ui.LogAnalyzerView ]
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.QueryCriteriaPanel.getEndTime(QueryCriteriaPanel.java:548)
      o.adf.logging.dt.analyzer.ui.QueryCriteriaPanel.getSearchCriteria(QueryCriteriaPanel.java:454)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getEndTime(ADFRequestQueryCriteriaPanel.java:351)
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getSearchCriteria(ADFRequestQueryCriteriaPanel.java:275)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getEndTime(ADFRequestQueryCriteriaPanel.java:351)
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getSearchCriteria(ADFRequestQueryCriteriaPanel.java:275)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getEndTime(ADFRequestQueryCriteriaPanel.java:351)
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getSearchCriteria(ADFRequestQueryCriteriaPanel.java:275)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getEndTime(ADFRequestQueryCriteriaPanel.java:351)
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getSearchCriteria(ADFRequestQueryCriteriaPanel.java:275)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)
    Exception while performing action null
    java.lang.NullPointerException
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getEndTime(ADFRequestQueryCriteriaPanel.java:351)
      o.adf.logging.dt.analyzer.ui.ADFRequestQueryCriteriaPanel.getSearchCriteria(ADFRequestQueryCriteriaPanel.java:275)
      o.adf.logging.dt.analyzer.ui.QueryPanel.getSearchCriteria(QueryPanel.java:175)
      o.adf.logging.dt.analyzer.ui.QueryPanel.handleEvent(QueryPanel.java:151)
      o.i.controller.IdeAction.performAction(IdeAction.java:529)
      o.i.controller.IdeAction.actionPerformedImpl(IdeAction.java:884)
      o.i.controller.IdeAction.actionPerformed(IdeAction.java:501)
      jx.s.AbstractButton.fireActionPerformed(AbstractButton.java:1995)
      jx.s.AbstractButton$Handler.actionPerformed(AbstractButton.java:2318)
      jx.s.DefaultButtonModel.fireActionPerformed(DefaultButtonModel.java:387)
      jx.s.DefaultButtonModel.setPressed(DefaultButtonModel.java:242)
      jx.s.plaf.basic.BasicButtonListener.mouseReleased(BasicButtonListener.java:236)
      j.a.Component.processMouseEvent(Component.java:6289)
      jx.s.JComponent.processMouseEvent(JComponent.java:3267)
      j.a.Component.processEvent(Component.java:6054)
      j.a.Container.processEvent(Container.java:2041)
      j.a.Component.dispatchEventImpl(Component.java:4652)
      j.a.Container.dispatchEventImpl(Container.java:2099)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.LightweightDispatcher.retargetMouseEvent(Container.java:4577)
      j.a.LightweightDispatcher.processMouseEvent(Container.java:4238)
      j.a.LightweightDispatcher.dispatchEvent(Container.java:4168)
      j.a.Container.dispatchEventImpl(Container.java:2085)
      j.a.Window.dispatchEventImpl(Window.java:2478)
      j.a.Component.dispatchEvent(Component.java:4482)
      j.a.EventQueue.dispatchEventImpl(EventQueue.java:644)
      j.a.EventQueue.access$000(EventQueue.java:85)
      j.a.EventQueue$1.run(EventQueue.java:603)
      j.a.EventQueue$1.run(EventQueue.java:601)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:98)
      j.a.EventQueue$2.run(EventQueue.java:617)
      j.a.EventQueue$2.run(EventQueue.java:615)
      j.security.AccessController.doPrivileged(Native Method)
      j.security.AccessControlContext$1.doIntersectionPrivilege(AccessControlContext.java:87)
      j.a.EventQueue.dispatchEvent(EventQueue.java:614)
      j.a.EventDispatchThread.pumpOneEventForFilters(EventDispatchThread.java:269)
      j.a.EventDispatchThread.pumpEventsForFilter(EventDispatchThread.java:184)
      j.a.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:174)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:169)
      j.a.EventDispatchThread.pumpEvents(EventDispatchThread.java:161)
      j.a.EventDispatchThread.run(EventDispatchThread.java:122)i choose sendfeedback while hitting next time means
    Failed to log feedback because of exception: oracle.ideimpl.feedback2.client.FeedbackException: Exception creating LegacyFeedbackWriterFCPAUTO: Already logged bug [NPE in o.adf.logging.dt.analyzer.ui.QueryCriteriaPanel:548]this waht thrown.
    sorry for editing in late.
    Edited by: ADF7 on Mar 23, 2012 12:07 AM

  • ADF Logging ,need one file per application

    Hi , I used the ADF logging api and I saw all log information on AdminServer.log   . I need to have one file per application , ho it is possible ?
    thanks

    Hey,
    You can follow the below link
    http://adfandjdeveloper.blogspot.in/2013/07/use-adf-logger-in-adf-application.html
    Thanks

  • Question about imap log format.

    I hava a question about imap log file.
    Here are sample imap log lines
    [26/Dec/2005:13:21:24 +0900] mail imapd[513]: Account Notice: close [203.231.11.113] ywmoon 2005/12/26 13:21:24 0:00:00 1013 2843 2
    [26/Dec/2005:13:21:32 +0900] mail imapd[513]: Account Notice: close [203.231.14.251] hkchoi 2005/12/26 13:20:37 0:00:55 446 1196 0
    Above line...
    First line
    ywmoon : UserID
    2005/12/26 : Date
    13:21:24 : login time (hour:minute:second)
    0:00:00 : ?
    1013 : bytes from client to server
    2843 : bytes from server to client
    2 : ?
    next line
    13:20:37 : same above
    0:00:55 : ?
    446 : same above
    1196 : same above
    0 : ?
    From above, I don't know "?" mark fields.
    0:00:00 or 0:00:55 ==> expenditure time to login ? And is this "hour:minute:second" OR "minute:second:milliSecond" ?
    2 or 0 ==> 1 means INBOX. 0 and 2, what they are mean ?
    Thank you in advance...

    I hava a question about imap log file.
    Here are sample imap log lines
    [26/Dec/2005:13:21:24 +0900] mail imapd[513]: Account
    Notice: close [203.231.11.113] ywmoon 2005/12/26
    13:21:24 0:00:00 1013 2843 2
    [26/Dec/2005:13:21:32 +0900] mail imapd[513]: Account
    Notice: close [203.231.14.251] hkchoi 2005/12/26
    13:20:37 0:00:55 446 1196 0
    Above line...
    First line
    ywmoon : UserID
    2005/12/26 : Date
    13:21:24 : login time (hour:minute:second)
    0:00:00 : ?how long the connection lasted.
    1013 : bytes from client to server
    2843 : bytes from server to client
    2 : ?Number of messages?
    that's a guess. we don't actually document this stuff.
    >
    next line
    13:20:37 : same above
    0:00:55 : ?
    446 : same above
    1196 : same above
    0 : ?
    From above, I don't know "?" mark fields.
    0:00:00 or 0:00:55 ==> expenditure time to login ?
    And is this "hour:minute:second" OR
    "minute:second:milliSecond" ?
    2 or 0 ==> 1 means INBOX. 0 and 2, what they are mean
    Thank you in advance...

  • About ADF skin

    hi,
    i have define one skin in my application.
    and i want only one jsp page to use another skin,then how could i do?

    duplicate about ADF skin

  • ADF Logging log4j JDeveloper

    Hi,
    I have a problem using log4j with apache commons logging for my application logging.
    I use JDeveloper/ADF recent version...
    This is my code:
    import org.apache.commons.logging.Log;
    import org.apache.commons.logging.LogFactory;
    public class MyClass{
         /** Der LOGGER */
         private Log logger = LogFactory.getLog(this.getClass().getName());
    First time I start my app it works, I cann see the logging output in the JDeveloper console.
    But - after restarting the app (redeploy) nothing is displayed to the console.
    I have to restart the server every time I changed something in the code to see the logging output :-(
    Anybody who can help me ?
    Thanks in advance,
    goog morning from Germany !

    ...when I start my app, I get this message:
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320400> <The log file C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log00183. Log messages will continue to be logged in C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultServer.log.>
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320400> <The log file C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log00142. Log messages will continue to be logged in C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\access.log.>
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320400> <The log file C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log will be rotated. Reopen the log file if tailing has stopped. This can happen on some platforms like Windows.>
    <11.11.2010 16:44 Uhr MEZ> <Notice> <LoggingService> <BEA-320401> <The log file has been rotated to C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log00143. Log messages will continue to be logged in C:\Dokumente und Einstellungen\X\Anwendungsdaten\JDeveloper\system11.1.1.3.37.56.60\DefaultDomain\servers\DefaultServer\logs\DefaultDomain.log.>
    IntegratedWebLogicServer startup time: 34187 ms.
    Oracle about BEA-320400:
    http://download.oracle.com/docs/cd/E12839_01/apirefs.1111/e14397/LoggingService.html
    is this an idication, why i lose the log output after redeploy?

  • ADF Logs dispaly in Custom Application

    Experts,
    In any Jdev 11g application, when we are using ADF Logger we can check the logs in EM. I want to do the same but im my custom application. For eg. on admin login i want to enable and see the logs on the page itself. Any inputs on how to do this ?
    thnks

    Thats cool. But lets make this situation real time.
    Use Case :
    Application page has some tabs, some lovs, some tables which on clicking opens some data in popups etc. Application is deployed on the external weblogic server whose default logging level is Warning.
    The application has a Sql query tracing file which prints out the query getting executed along with the parameters. The query is printed with logger set to debug i.e. print them only when the logging level changes to debug.
    Now lets say on the page the user clicks on the button which loads a data in table in a popup. The user can scroll down to see the list of data. This concept will work on PPR (opening of a popup and displaying of data). Lets say there is some issue here like its showing "Fetching Data" for only one user - for rest of the users it is perfect.
    The support engineer need to check what is the query that is getting executed. So
    1) He will need to change the logging level
    2) Get access to the logs
    3) Reset the logging level again.
    these are just on top of my head right now.
    Going by what John said (i need to learn more on ECID) ECID for each page might do the trick but what about PPR ? What about changing the logging level ? etc.
    thnks

  • Question about AVCHD & Log and Transfer

    I will be recording videos in a remote location for five days next month. The recordings will be about 1.5 hr each, for a total of twenty two separate presentations. If I purchase a hard drive camcorder (Sony HDR-XR550V) for this event, will log & transfer dump the whole lot into FCE or will they be split up so I can select them in proper order.
    I would rather use a camcorder that recorded to an external memory card, but twenty two gets very expensive.
    David

    Yes, to use AVCHD material you should upgrade your FCE to version 4.0.1. This is a free upgrade.
    To do this:
    The first thing you should do is buy or obtain an external hard disk of equal or greater size to the system disk you have now inside your computer and make a +clone copy+ of your system disk. This is to protect you if something should go wrong during the upgrade, or if your internal hard disk should ever fail, you will have a fully functioning copy of your hard disk to use to restore your work.
    You can get Carbon Copy Cloner, a shareware software that is almost an industry standard, here:
    http://www.bombich.com/
    After you have made a clone of your system hard drive, (which may take several hours the first time you do it), then go to the Apple menu in the upper left corner of your screen and select Software Update.
    This will look at all the Apple software that is on your computer and find any software that needs updating.
    You will be presented by a list of all the software on your computer that can be updated, you should see Final Cut Express somewhere in that list.
    If you do not see it, have you moved the application from where it was originally installed, or renamed it? It needs to be in it's original location in the application folder, with it's original name for Software Update to work.
    You can deselect any software you don't want updated from the list, then start the software updater.
    You may need to restart your machine to complete the installation.
    I would expect no difficulties from upgrading your software, but you have your cloned backup just in case. Once you have made a clone back up, get in the habit of re-cloning your drive every other day or so to protect your work. After the initial cloning, the cloning will take much less time as it will only make the changes you have made to your system disk on your clone - not recopy the whole thing as it did the first time.
    Hope this helps.
    MtD

  • To Enable ADF Logging on Standalone WLS

    Hi All,
    I have read the following article to enable ADF loggin in my code and testing using JDeveloper:
    http://blogs.oracle.com/groundside/entry/adventures_in_adf_logging_part
    However, now I want to know how can I test it on a standalone server. How to enable fine level trace for my application code on a stanalone(or production) server incase to debug any issue.
    Could you please tell me the steps for this.
    Thanks,
    Lalit.

    If you have the EM (Enterprise Manager) installed on your stand alone WLS (which you should) you can select the managed server your app is running on, select the 'Log Configuration' menu and you should see almost the same representation an in jdev.
    Timo

  • Documentation about flashinstall.log

    Hello,
    does exist a documentation about the contents of the FlashPlayer installation log file "flashinstall.log"?
    It could be interesting to understand the entries. Additionally the documentation of the error codes could help to find and fix installation/update problems...
    'til now, I haven't found any documentation about on Adobe pages. I found, how I can activate/deactivate logging, but nothing about the structure, the meanings, error codes, etc....
    Best Regards
    Axel

    Thank you Pat for the hints...
    It's interesting, if you receive a warning in the log without a hint about the problem... :-)
    I found this in a log, without any information behind the numbers or is it caused by the last entry?
    =O====== M/11.5.502.146 2013-01-23+15-12-36.708 ========
    0000 [I] 00000010 "C:\Program Files\LANDesk\LDClient\sdmcache\install_flash_player_ax_32bit_11.5.502.146.exe" -install
    0001 [I] 00000020 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0002 [I] 00000013 C:\WINDOWS\system32\Macromed\Flash\Flash32_11_5_502_146.ocx
    0003 [I] 00000015 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_146_ActiveX.exe
    0004 [I] 00000016 C:\WINDOWS\system32\Macromed\Flash\FlashUtil32_11_5_502_146_ActiveX.dll
    0005 [I] 00000023 C:\WINDOWS\system32\Macromed\Flash\activex.vch
    0006 [I] 00000019 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl
    0007 [W] 00001024 C:\WINDOWS\system32\FlashPlayerCPLApp.cpl 183
    0008 [W] 00001024 C:\WINDOWS\system32\FlashPlayerApp.exe 183
    0009 [I] 00000021 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe
    0010 [W] 00001106
    0011 [W] 00001106
    0012 [W] 00001024 C:\WINDOWS\system32\Macromed\Flash\FlashPlayerUpdateService.exe 183
    =X====== M/11.5.502.146 2013-01-23+15-12-43.318 ========
    FlashPlayer was installed with success and running! But 'til this day, the log entries are changed in this way:
    2013-1-23+15-20-1.453 [error] 1223 1058
    2013-1-24+12-20-15.250 [error] 1223 1058
    2013-1-24+13-20-15.93 [error] 1223 1058
    2013-1-24+14-20-15.93 [error] 1223 1058
    2013-1-24+15-20-15.93 [error] 1223 1058
    2013-1-24+16-20-15.109 [error] 1223 1058
    2013-1-25+7-20-15.484 [error] 1223 1058
    2013-1-25+8-20-0.261 [error] 1223 1058
    2013-1-25+9-20-0.432 [error] 1223 1058
    2013-1-25+10-20-0.248 [error] 1223 1058
    2013-1-25+11-20-0.459 [error] 1223 1058
    2013-1-25+12-20-0.584 [error] 1223 1058
    2013-1-25+13-20-0.443 [error] 1223 1058
    2013-1-25+14-20-0.257 [error] 1223 1058
    2013-1-25+15-20-0.501 [error] 1223 1058
    2013-1-28+8-20-15.671 [error] 1223 1058
    2013-1-28+9-20-15.78 [error] 1223 1058
    2013-3-12+12-20-15.93 [error] 1223 1058
    2013-3-12+13-20-0.109 [error] 1223 1058
    2013-3-12+14-20-0.62 [error] 1223 1058
    2013-3-13+9-20-15.578 [error] 1223 1058
    Client was offline a while, so no newer update was installed :-) but I will soon, if I understand the error messages...
    Regards
    Axel

Maybe you are looking for