Persistence Service Lock Concept

Hi,
I found this link thru search ...
"http://help.sap.com/saphelp_nw04/helpdata/en/f5/a3682ebc6911d4b2e80050dadfb92b/content.htm".
Part of it says...
" At present, we have not implemented a Persistence Service lock concept, which would ensure that there was only one transient mapping for each persistent object. So ultimately, ABAP programmers are not really working with persistent objects as such; rather, the Persistence Service makes it appear as if they are."
Is there already a lock concept in ERP7.0?
Thanks,
Huntr

I found out that persistent object locking when using the persistence services can still be handled by using the classic "ENQUEUE" funtion module.

Similar Messages

  • Persistence Service

    Hi,
    did anyone try to save persistent object-references with an 1:n or n:m relationship?
    I read the ABAP-Objects Book, 1:1 relation is no problem, but poor hints to 1:n.
    There is a blog, that recommends to create a data-model object, that loads the 1-end-Objects first and then use the getItems-Method, to read the n-end objects.
    Is it possible to map 1:n or n:m with object services? And if it is, should we use it in a productive environment? If it is possible, how to do it?
    Thanks very much!
    Ciao Björn Kibbel
    innobis AG

    cits wrote:
    Hi
    I use a persistence service, as in the example in http://java.sun.com/j2se/1.5.0/docs/guide/javaws/jnlp/javax/jnlp/PersistenceService.html
    sorry I meant
    http://java.sun.com/j2se/1.5.0/docs/guide/javaws/developersguide/examples.html#PersistenceService

  • JSF(front WebGUI)+Spring(Business Logic)+Hibernate(Persistence service)??

    To implement a well designed product with module decoupling,some friends suggest me to use the following architecture:
    JSF(front WebGUI)+Spring(Business Logic)+Hibernate(Persistence service)?
    I was puzzled that whether Spring needed or not??What's especial feature does Spring own that JSF does not have?What's the benefit of integration of JSF and Spring?
    Your reply will be appreciated greatly.
    Thanks a lot!

    Using Spring provides some major benefits; among these are:
    - Spring provides an abstraction layer for easy integration of different persistence layers (e.g. Hibernate, which comes integrated out of the box) and for easy database access
    - It provides an easy-to-use AOP framework based on dynamic proxying and byte code enhancing via CGLIB
    - IMHO most important: Spring provides an Inversion of Control container (see http://martinfowler.com/articles/injection.html) which enables you to remove references to implementation classes from your code and thus facilitates component based architectures.
    By the way, we developed a Spring/JSF integration solution (for source code, documentation and an example application see http://sourceforge.net/projects/jsf-spring). It wraps the JSF context into a Spring context and thus merges them. This way, the JSF context becomes part of Spring and vice versa. This is done in a implementation independent way so that it can be used with any JSF implementation.

  • Persistence Service - Is there a ON_SAVE Event?

    Hi,
    I'm playing around with the persistence service in NW 2004s. What I want to do is: make some additional checks and modifications (e.g. changing last change timestamp) immediately before writing the data to the DB.
    Does anybody knows, what's the best way to do this? Unfortuanetely I didn't find any information about this.
    Can somebody help?
    Thanx a lot,
    Sascha

    Hi,
    I think you are having issue with Minimul Download Strategy (MDS). There's a feature - once it's activated your page doesn't get full reload - instead partial reload. You can disable the feature (will not recommend) which will reload page on every click.
    Other option is to wrap your function in a bit differnt way as described in
    http://blog.symprogress.com/2013/09/sharepoint-2013-execute-javascript-function-after-mds-load/.
    Thanks,
    Sohel Rana
    http://ranaictiu-technicalblog.blogspot.com

  • SAP Lock Concept - Wich User Locks my TCode

    Hey Experts,
    i am using the SAP Lock Concept in my Transaktion, but i have a problem to find out how to get the Name of the User how locks my Tcode.
    I build in the Function 'ENQUEUE_EZ_SMARTFORMS',
    after that i print out a Message thet the 'Tcode gets edit by another User at the moment'.
    Now i want to replace 'another User ' with the User-Name of the User.
    Thanks for Help

    Hi,
    fm ENQUEUE_READ will give you the informations you want.
    Pass th name of thge lock object to parameter GNAME, pass the lock argument to parameter GARG and pass SPACE to argument GUNAME.
    Sample:
    * Call custom lock object
      CALL FUNCTION 'ENQUEUE_MYLOCKOBJ'
        EXPORTING
          sase           = xv_sase
          _scope         = '3' "till the end
        EXCEPTIONS
          foreign_lock   = 1
          system_failure = 2
          OTHERS         = 3.
    * Check return code
      CASE  sy-subrc.
        WHEN  0.      "lock successful
          xv_lock                 =  'X'.
        WHEN  1.      "foreign lock
          xv_uname                =  text-unk.
          CONCATENATE                sy-mandt
                                     xv_sase
                               INTO  xv_garg.
          CLEAR                      xt_enq.
          CALL FUNCTION 'ENQUEUE_READ'
            EXPORTING
              gname  = xk_gname_sase
              garg   = xv_garg
              guname = space
            TABLES
              enq    = xt_enq
            EXCEPTIONS
              OTHERS = 4.
          IF  sy-subrc           EQ  0.
            READ  TABLE              xt_enq
                               INTO  xs_enq
                              INDEX  1.
            IF  sy-subrc         EQ  0.
              xv_uname            =  xs_enq-guname.
            ENDIF.
          ENDIF.
          MESSAGE  s000(38)
                       DISPLAY LIKE  'E'
                               WITH  text-sas
                                     xv_sase
                                     text-m07
                                     xv_uname.
          EXIT.
        WHEN  OTHERS.  "unknown lock error
          MESSAGE  s000(38)
                       DISPLAY LIKE  'E'
                               WITH  text-sas
                                     xv_sase
                                     text-m04
                                     sy-subrc.
          EXIT.
      ENDCASE.
    Regards,
    Klaus

  • Lock concept

    Hi peers,
    what does the _scope parameter specify in the enque<xxxx> and dequeue<xxxxx> function modules in locking concept.  what does _scope = '3' mean.

    Parameters for Passing Locks to the Update Program
    A lock is generally removed at the end of the transaction or when the corresponding DEQUEUE function module is called. However, this is not the case if the transaction has called update routines. In this case, a parameter must check that the lock has been removed.
    Parameter _SCOPE controls how the lock or lock release is passed to the update program (see The Owner Concept for Locks). You have the following options:
    &#65399;        _SCOPE = 1: Locks or lock releases are not passed to the update program. The lock is removed when the transaction is ended.
    &#65399;        _SCOPE = 2: The lock or lock release is passed to the update program. The update program is responsible for removing the lock. The interactive program with which the lock was requested no longer has an influence on the lock behavior. This is the standard setting for the ENQUEUE function module.
    &#65399;        _SCOPE = 3: The lock or lock release is also passed to the update program. The lock must be removed in both the interactive program and in the update program. This is the standard setting for the DEQUEUE function module.
    Function Modules for Lock Requests
    Activating a lock object in the ABAP Dictionary automatically creates function modules for setting (ENQUEUE_<lock object name>) and releasing (DEQUEUE_<lock object name>) locks.
    The generated function modules are automatically assigned to function groups. You should not change these function modules and their assignment to function groups since the function modules are generated again each time the lock object is activated.
    Never transport the function groups, which contain the automatically generated function modules. The generated function modules of a lock object could reside in a different function group in the target system. Always transport the lock objects. When a lock object is activated in the target system, the function modules are generated again and correctly assigned to function groups.
    Parameters of the Function Modules
    Field Names of the Lock Object
    The keys to be locked must be passed here.
    A further parameter X_<field> that defines the lock behavior when the initial value is passed exists for every lock field <field>. If the initial value is assigned to <field> and X_<field>, then a generic lock is initialized with respect to <field>. If <field> is assigned the initial value and X_<field> is defined as X, the lock is set with exactly the initial value of <field>.
    Parameters for Passing Locks to the Update Program
    A lock is generally removed at the end of the transaction or when the corresponding DEQUEUE function module is called. However, this is not the case if the transaction has called update routines. In this case, a parameter must check that the lock has been removed.
    Parameter _SCOPE controls how the lock or lock release is passed to the update program (see The Owner Concept for Locks). You have the following options:
    &#65399;        _SCOPE = 1: Locks or lock releases are not passed to the update program. The lock is removed when the transaction is ended.
    &#65399;        _SCOPE = 2: The lock or lock release is passed to the update program. The update program is responsible for removing the lock. The interactive program with which the lock was requested no longer has an influence on the lock behavior. This is the standard setting for the ENQUEUE function module.
    &#65399;        _SCOPE = 3: The lock or lock release is also passed to the update program. The lock must be removed in both the interactive program and in the update program. This is the standard setting for the DEQUEUE function module.
    Parameters for Lock Mode
    A parameter MODE_<TAB> exists for each base table TAB of the lock object. The lock mode for this base table can be set dynamically with this parameter. The values allowed for this parameter are S (read lock), E (write lock), X (extended write lock), and O (optimistic lock).
    The lock mode specified when the lock object for the table is created is the default value for this parameter. This default value can, however, be overridden as required when the function module is called.
    If a lock set with a lock mode is to be removed by calling the DEQUEUE function module, this call must have the same value for the parameter MODE_<TAB>.
    Controlling Lock Transmission
    Parameter _COLLECT controls whether the lock request or lock release should be performed directly or whether it should first be written to the local lock container. This parameter can have the following values:
    &#65399;        Initial Value: The lock request or lock release is sent directly to the lock server.
    &#65399;        X: The lock request or lock release is placed in the local lock container. The lock requests and lock releases collected in this lock container can then be sent to the lock server at a later time as a group by calling the function module FLUSH_ENQUEUE.
    Whenever you have lock mode X (extended write lock), locks should not be written to the local lock container if very many locks refer to the same lock table. In this case, there will be a considerable loss in performance in comparison with direct transmission of locks.
    Behavior for Lock Conflicts (ENQUEUE only)
    The ENQUEUE function module also has the parameter _WAIT. This parameter determines the lock behavior when there is a lock conflict.
    You have the following options:
    &#65399;        Initial Value: If a lock attempt fails because there is a competing lock, the exception FOREIGN_LOCK is triggered.
    &#65399;        X: If a lock attempt fails because there is a competing lock, the lock attempt is repeated after waiting for a certain time. The exception FOREIGN_LOCK is triggered only if a certain time limit has elapsed since the first lock attempt. The waiting time and the time limit are defined by profile parameters.
    Controlling Deletion of the Lock Entry (DEQUEUE only)
    The DEQUEUE function module also has the parameter _SYNCHRON.
    If X is passed, the DEQUEUE function waits until the entry has been removed from the lock table. Otherwise it is deleted asynchronously, that is, if the lock table of the system is read directly after the lock is removed, the entry in the lock table may still exist.
    Exceptions of the ENQUEUE Function Module
    &#65399;        FOREIGN_LOCK’: A competing lock already exists. You can find out the name of the user holding the lock by looking at system variable SY-MSGV1.
    &#65399;        SYSTEM_FAILURE: This exception is triggered when the lock server reports that a problem occurred while setting the lock. In this case, the lock could not be set.
    If the exceptions are not processed by the calling program itself, appropriate messages are issued for all exceptions.
    Reference Fields for RFC-Enabled Lock Objects
    The type of an RFC-enabled function module must be completely defined. The parameters of the generated function module therefore have the following reference fields for RFC-enabled lock objects:
    Parameters
    Reference fields
    X_<field name>
    DDENQ_LIKE-XPARFLAG
    _WAIT
    DDENQ_LIKE-WAITFLAG
    _SCOPE
    DDENQ_LIKE-SCOPE
    _SYNCHRON
    DDENQ_LIKE-SYNCHRON
    See also:
    Example for Lock Objects

  • Facebook location services locked

    Hi All,
    For some reason my iPhone 5C stopped allowing location services. When I go to the settings within Facebook, where the choices are "Never", "When using app", or "Always", it is stuck on "Never". Any ideas how to get this to work? Thanks in advance for any help.
    Dan

    Option to consider:
    Sign out of the app if possible
    Delete it
    Reset the phone
    Re download the app

  • Locking concept

    Hi All,
    If i make correction in the webdynpro for the particular transaction and the same time i am making some correction in the same transaction in R/3 .
    how does the lock object will work in this scenario.
    Thanks & Regards
    Ganesan

    Hi,
    Let's say we are using PA30 and maintaining Address Infotype.
    So, you have opened PA30 for a particular employee in CHANGE MODE.
    And when you try to access the same employee's Address Infotype data, you will obiviously your Lock function module say ENQUEUE_EPPRELE will not get a lock for that object. It returns an error.
    So, you will not be achieve lock through WD Application.
    Regards
    <i><b>Raja Sekhar</b></i>

  • No service locked with IOS 5.0.1 baseband 04.11.8

    when to expect new ver 5.0.1 in Pkistan.
    My Iphone4 is Locked and dont work.

    We're users here.  No one knows when Apple will release anything.  Speculation is prohibited.

  • (Eclipse Persistence Services - 2.3.2.v20111125-r10461): org.eclipse.persistence.exceptions.DescriptorException

    We are upgrading various webservices to Weblogic 12c. We are running i a very annoying issue where the webservice can't be deployed on 12c whenever there is an element which is nillable and the type is an Enumartion. For example : <xsd:element name="adresType" type="bg:AdresType" nillable="true" minOccurs="0" /> where AdresType is :
        <xsd:simpleType name="AdresType">
            <xsd:restriction base="xsd:string">
                <xsd:enumeration value="DAILY" />
                <xsd:enumeration value="OFFICIAL" />
                <xsd:enumeration value="CORRESPONDENCE" />
            </xsd:restriction>
        </xsd:simpleType>
    Putting eclipselink 2.5.0 on the class path solves the problem. However, i am using a shared environment and they don't allow me to change the classpath ;-(
    I tried putting 'prefer-application-package', ' prefer-web-inf-classes' etcetera in the weblogic.xml. Doesn't work.
    Can anybody help me out?
    regards
    Johan van Kampen

    I've filed bug 382029 and checked in a fix into trunk (2.5) to fix the error you are getting so that it prints off the pk class causing the exception instead of 202 (which is the error code).
    The reason it seems to work is that the error occurs at the tail end of initializing the descriptor for PlanEffectiveData. When you continue on, it doesn't retry initializing this descriptor and will proceed. What hasn't been initialized are the fetch groups and the primary key class for the PlanEffectiveData; you will likely run into an issue if you attempt to use an em.find on the PlanEffectiveData class.
    I will have to test what the issue is, but I suspect it is a processing problem where the PersistableId IDClass isn't being replaced with the TemporalId class. Can you try removing the IDClass annotations from HistorySlice and seeing if you get this same exception? Presumably you will have to exclude any Entities that directly extend HistorySlice to test that it works correctly.
    Regards,
    Chris

  • Locking with Persistent Objects???

    Hi,
    while updating database with Persistent Objects? does persistent layer takes care of locking the records??
    i am not sure locking mechanism is there!!
    Please suggest

    From help.sap.com:
    If several programs use the Persistence Service to instantiate objects of the same class before one of these programs has changed the state using COMMIT WORK, all the objects will have the same initial state. At present, we have not implemented a Persistence Service lock concept, which would ensure that there was only one transient mapping for each persistent object. So ultimately, ABAP programmers are not really working with persistent objects as such; rather, the Persistence Service makes it appear as if they are.
    Regards
    Marcin

  • Locking of objects between service calls

    Hello,
    Is there any practial way to lock an object (for example a loan) with one service so that it stays locked until another service commits the transaction and releases the lock? The service is a RFC function module that will be called by a web application. My problem is that when I use the standard ENQUEUE function the lock dissappears as soon as the first service is finished.
    Also, if one service would create a lock of an object and another one starts the update task, they probably wouldn't be in the same LUW, would that be a problem? If so, is there a solution?
    Thank you and kind regards,
    Steffen

    Steffen:
    In the locking service use the _SCOPE parameter value of 3 in your enqueue function call. This retains the lock after the first service (locking process) ends. The second service that does the update can then dequeue the lock after the update is processed.
    No problem with setting & freeing locks in different LUW, as the SAP locking mechanism is co-operative (i.e. software controlled) rather than database controlled. Just make sure that you use a standard SAP enqueue function so that other unrelated processes will honor the lock set by your first service.
    Regards,
    D.

  • JAVA server stop with 2150 service unavailable in sap pi

    Hi,
    I am facing issue after failed support patch upgrade in sap pi 7.1 ehp 1.
    Java is not starting. Please help log is below.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        3228
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:24:43 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -nodeId=2
      arg[ 2] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 3] : -DSAPINFO=PID_00_server0
      arg[ 4] : -hostvm
      arg[ 5] : -nodeName=ID2463250
      arg[ 6] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 7] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 8] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[ 9] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[10] : -DSAPSTART=1
      arg[11] : -DSAPSYSTEM=00
      arg[12] : -DSAPSYSTEMNAME=PID
      arg[13] : -DSAPMYNAME=usatlsv117_PID_00
      arg[14] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[15] : -DFRFC_FALLBACK=ON
      arg[16] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:24:43 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************

    I [Thr 7080] Tue Sep 02 02:24:44 2014
    I  [Thr 7080] MtxInit: 10002 0 2
    I  [Thr 7080] MPI: dynamic quotas disabled.
    I  [Thr 7080] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  [Thr 7080] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 7080] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 7080] CCMS uses Shared Memory Key 73 for monitoring.
    M  [Thr 7080] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 7080] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 7080] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 7080] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:24:44 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=3228
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45] = -Djava.security.egd=file:/dev/urandom
    F    arg[46] = -Djava.awt.headless=true
    F    arg[47] = -Djmx.invoke.getters=true
    F    arg[48] = -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    F    arg[49] = -Djava.io.tmpdir=./temp
    F    arg[50] = -XX:SoftRefLRUPolicyMSPerMB=1
    F    arg[51] = -XX:-TraceClassUnloading
    F    arg[52] = -XX:+DumpDetailedClassStatisticOnOutOfMemory
    F    arg[53] = -XX:+DisableExplicitGC
    F    arg[54] = -XX:+PrintGCDetails
    F    arg[55] = -XX:+PrintGCTimeStamps
    F    arg[56] = -XX:HeapDumpPath=OOM.hprof
    F    arg[57] = -XX:+UseConcMarkSweepGC
    F    arg[58] = -XX:TargetSurvivorRatio=90
    F    arg[59] = -XX:-StringInternTableInPermGen
    F    arg[60] = -XX:+HeapDumpOnOutOfMemoryError
    F    arg[61] = -XX:MaxErrorQueueLength=200
    F    arg[62] = -verbose:gc
    F    arg[63] = -XX:SurvivorRatio=9
    F    arg[64] = -Xss2097152
    F  ignore unrecognized options : no
    F  ********************************************************************************
    J  JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    J  (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    J  (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    F  [Thr 6924] *** LOG => SfCJavaVm: Java VM started.
    F  ********************************************************************************
    F  Main method arguments:
    F    arg[ 0] = -DSAPSTART=1
    F    arg[ 1] = -DSAPSYSTEM=00
    F    arg[ 2] = -DSAPSYSTEMNAME=PID
    F    arg[ 3] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 4] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[ 5] = -DFRFC_FALLBACK=ON
    F    arg[ 6] = -DFRFC_FALLBACK_HOST=localhost
    F  ********************************************************************************

    J Tue Sep 02 02:24:45 2014
    J  1.887: [GC 1.887: [ParNew: 429056K->5751K(476672K), 0.0161568 secs] 429063K->5759K(1525248K), 0.0163708 secs]

    F [Thr 6924] Tue Sep 02 02:24:46 2014
    F  [Thr 6924] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 6924] *** LOG    state real time: 2.437 CPU time: 0.453 sys, 2.828 usr
    F  [Thr 6924] *** LOG    total real time: 2.437 CPU time: 0.453 sys, 2.828 usr
    F  [Thr 6924]
    F  [Thr 6924] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 6924] *** LOG    state real time: 0.000 CPU time: 0.000 sys, 0.000 usr
    F  [Thr 6924] *** LOG    total real time: 2.437 CPU time: 0.453 sys, 2.828 usr
    F  [Thr 6924]

    F [Thr 2080] Tue Sep 02 02:24:50 2014
    F  [Thr 2080] *** WARNING => SfCFramework::registerNatives: failed for com.sap.conn.rfc.driver.CpicDriver [sfxxifrw.hpp 167]

    J Tue Sep 02 02:24:56 2014
    J  12.669: [GC 12.669: [ParNewJ 
    J Tue Sep 02 02:24:57 2014
    : 434807K->47616K(476672K), 0.3151169 secs] 435328K->90877K(1525248K), 0.3153873 secs]

    F [Thr 7164] Tue Sep 02 02:25:05 2014
    F  [Thr 7164] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)
    F  [Thr 7164] *** LOG => exiting (exitcode 2150, retcode 1).
    M  [Thr 7164] CCMS: CCMS Monitoring Cleanup finished successfully.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        2400
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:25:52 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -appTrc
      arg[ 2] : -nodeId=2
      arg[ 3] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 4] : -DSAPINFO=PID_00_server0
      arg[ 5] : -hostvm
      arg[ 6] : -nodeName=ID2463250
      arg[ 7] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 8] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 9] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[10] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[11] : -DSAPSTART=1
      arg[12] : -DSAPSYSTEM=00
      arg[13] : -DSAPSYSTEMNAME=PID
      arg[14] : -DSAPMYNAME=usatlsv117_PID_00
      arg[15] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[16] : -DFRFC_FALLBACK=ON
      arg[17] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:25:52 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 3860] MtxInit: 10002 0 2
    I  [Thr 3860] MPI: dynamic quotas disabled.
    I  [Thr 3860] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  [Thr 3860] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 3860] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 3860] CCMS uses Shared Memory Key 73 for monitoring.

    M [Thr 3860] Tue Sep 02 02:25:53 2014
    M  [Thr 3860] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 3860] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 3860] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 3860] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:25:53 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=2400
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45] = -Djava.security.egd=file:/dev/urandom
    F    arg[46] = -Djava.awt.headless=true
    F    arg[47] = -Djmx.invoke.getters=true
    F    arg[48] = -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    F    arg[49] = -Djava.io.tmpdir=./temp
    F    arg[50] = -XX:SoftRefLRUPolicyMSPerMB=1
    F    arg[51] = -XX:-TraceClassUnloading
    F    arg[52] = -XX:+DumpDetailedClassStatisticOnOutOfMemory
    F    arg[53] = -XX:+DisableExplicitGC
    F    arg[54] = -XX:+PrintGCDetails
    F    arg[55] = -XX:+PrintGCTimeStamps
    F    arg[56] = -XX:HeapDumpPath=OOM.hprof
    F    arg[57] = -XX:+UseConcMarkSweepGC
    F    arg[58] = -XX:TargetSurvivorRatio=90
    F    arg[59] = -XX:-StringInternTableInPermGen
    F    arg[60] = -XX:+HeapDumpOnOutOfMemoryError
    F    arg[61] = -XX:MaxErrorQueueLength=200
    F    arg[62] = -verbose:gc
    F    arg[63] = -XX:SurvivorRatio=9
    F    arg[64] = -Xss2097152
    F  ignore unrecognized options : no
    F  ********************************************************************************
    J  JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    J  (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    J  (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    F  [Thr 780] *** LOG => SfCJavaVm: Java VM started.
    F  ********************************************************************************
    F  Main method arguments:
    F    arg[ 0] = -DSAPSTART=1
    F    arg[ 1] = -DSAPSYSTEM=00
    F    arg[ 2] = -DSAPSYSTEMNAME=PID
    F    arg[ 3] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 4] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[ 5] = -DFRFC_FALLBACK=ON
    F    arg[ 6] = -DFRFC_FALLBACK_HOST=localhost
    F  ********************************************************************************

    J Tue Sep 02 02:25:54 2014
    J  1.887: [GC 1.887: [ParNew: 429056K->5753K(476672K), 0.0159590 secs] 429063K->5761K(1525248K), 0.0161560 secs]

    F [Thr 780] Tue Sep 02 02:25:55 2014
    F  [Thr 780] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 780] *** LOG    state real time: 2.328 CPU time: 0.343 sys, 3.000 usr
    F  [Thr 780] *** LOG    total real time: 2.328 CPU time: 0.343 sys, 3.000 usr
    F  [Thr 780]
    F  [Thr 780] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 780] *** LOG    state real time: 0.000 CPU time: 0.000 sys, 0.000 usr
    F  [Thr 780] *** LOG    total real time: 2.328 CPU time: 0.343 sys, 3.000 usr
    F  [Thr 780]

    F [Thr 2564] Tue Sep 02 02:25:59 2014
    F  [Thr 2564] *** WARNING => SfCFramework::registerNatives: failed for com.sap.conn.rfc.driver.CpicDriver [sfxxifrw.hpp 167]

    J Tue Sep 02 02:26:20 2014
    J  27.372: [GC 27.372: [ParNew: 434809K->47616K(476672K), 0.3671732 secs] 435338K->93001K(1525248K), 0.3674017 secs]

    F [Thr 4160] Tue Sep 02 02:26:30 2014
    F  [Thr 4160] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)
    F  [Thr 4160] *** LOG => exiting (exitcode 2150, retcode 1).
    M  [Thr 4160] CCMS: CCMS Monitoring Cleanup finished successfully.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        6984
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:27:04 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -appTrc
      arg[ 2] : -nodeId=2
      arg[ 3] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 4] : -DSAPINFO=PID_00_server0
      arg[ 5] : -hostvm
      arg[ 6] : -nodeName=ID2463250
      arg[ 7] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 8] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 9] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[10] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[11] : -DSAPSTART=1
      arg[12] : -DSAPSYSTEM=00
      arg[13] : -DSAPSYSTEMNAME=PID
      arg[14] : -DSAPMYNAME=usatlsv117_PID_00
      arg[15] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[16] : -DFRFC_FALLBACK=ON
      arg[17] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:27:04 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 4780] MtxInit: 10002 0 2
    I  [Thr 4780] MPI: dynamic quotas disabled.
    I  [Thr 4780] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%

    M [Thr 4780] Tue Sep 02 02:27:05 2014
    M  [Thr 4780] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 4780] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 4780] CCMS uses Shared Memory Key 73 for monitoring.
    M  [Thr 4780] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 4780] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 4780] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 4780] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:27:05 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=6984
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45] = -Djava.security.egd=file:/dev/urandom
    F    arg[46] = -Djava.awt.headless=true
    F    arg[47] = -Djmx.invoke.getters=true
    F    arg[48] = -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    F    arg[49] = -Djava.io.tmpdir=./temp
    F    arg[50] = -XX:SoftRefLRUPolicyMSPerMB=1
    F    arg[51] = -XX:-TraceClassUnloading
    F    arg[52] = -XX:+DumpDetailedClassStatisticOnOutOfMemory
    F    arg[53] = -XX:+DisableExplicitGC
    F    arg[54] = -XX:+PrintGCDetails
    F    arg[55] = -XX:+PrintGCTimeStamps
    F    arg[56] = -XX:HeapDumpPath=OOM.hprof
    F    arg[57] = -XX:+UseConcMarkSweepGC
    F    arg[58] = -XX:TargetSurvivorRatio=90
    F    arg[59] = -XX:-StringInternTableInPermGen
    F    arg[60] = -XX:+HeapDumpOnOutOfMemoryError
    F    arg[61] = -XX:MaxErrorQueueLength=200
    F    arg[62] = -verbose:gc
    F    arg[63] = -XX:SurvivorRatio=9
    F    arg[64] = -Xss2097152
    F  ignore unrecognized options : no
    F  ********************************************************************************
    J  JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    J  (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    J  (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    F  [Thr 1340] *** LOG => SfCJavaVm: Java VM started.
    F  ********************************************************************************
    F  Main method arguments:
    F    arg[ 0] = -DSAPSTART=1
    F    arg[ 1] = -DSAPSYSTEM=00
    F    arg[ 2] = -DSAPSYSTEMNAME=PID
    F    arg[ 3] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 4] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[ 5] = -DFRFC_FALLBACK=ON
    F    arg[ 6] = -DFRFC_FALLBACK_HOST=localhost
    F  ********************************************************************************

    J Tue Sep 02 02:27:06 2014
    J  1.902: [GC 1.902: [ParNew: 429056K->5751K(476672K), 0.0129215 secs] 429063K->5759K(1525248K), 0.0131458 secs]

    F [Thr 1340] Tue Sep 02 02:27:07 2014
    F  [Thr 1340] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 1340] *** LOG    state real time: 2.484 CPU time: 0.359 sys, 3.031 usr
    F  [Thr 1340] *** LOG    total real time: 2.484 CPU time: 0.359 sys, 3.031 usr
    F  [Thr 1340]
    F  [Thr 1340] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 1340] *** LOG    state real time: 0.000 CPU time: 0.000 sys, 0.000 usr
    F  [Thr 1340] *** LOG    total real time: 2.484 CPU time: 0.359 sys, 3.031 usr
    F  [Thr 1340]

    F [Thr 7080] Tue Sep 02 02:27:11 2014
    F  [Thr 7080] *** WARNING => SfCFramework::registerNatives: failed for com.sap.conn.rfc.driver.CpicDriver [sfxxifrw.hpp 167]

    J Tue Sep 02 02:27:16 2014
    J  11.641: [GC 11.641: [ParNewJ 
    J Tue Sep 02 02:27:17 2014
    : 434807K->47616K(476672K), 0.3650486 secs] 435337K->93577K(1525248K), 0.3653062 secs]

    F [Thr 3508] Tue Sep 02 02:27:24 2014
    F  [Thr 3508] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)
    F  [Thr 3508] *** LOG => exiting (exitcode 2150, retcode 1).
    M  [Thr 3508] CCMS: CCMS Monitoring Cleanup finished successfully.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        6824
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:27:57 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -appTrc
      arg[ 2] : -nodeId=2
      arg[ 3] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 4] : -DSAPINFO=PID_00_server0
      arg[ 5] : -hostvm
      arg[ 6] : -nodeName=ID2463250
      arg[ 7] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 8] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 9] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[10] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[11] : -DSAPSTART=1
      arg[12] : -DSAPSYSTEM=00
      arg[13] : -DSAPSYSTEMNAME=PID
      arg[14] : -DSAPMYNAME=usatlsv117_PID_00
      arg[15] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[16] : -DFRFC_FALLBACK=ON
      arg[17] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:27:57 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 3256] MtxInit: 10002 0 2
    I  [Thr 3256] MPI: dynamic quotas disabled.
    I  [Thr 3256] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  [Thr 3256] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 3256] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 3256] CCMS uses Shared Memory Key 73 for monitoring.
    M  [Thr 3256] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 3256] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 3256] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 3256] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:27:57 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=6824
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45] = -Djava.security.egd=file:/dev/urandom
    F    arg[46] = -Djava.awt.headless=true
    F    arg[47] = -Djmx.invoke.getters=true
    F    arg[48] = -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    F    arg[49] = -Djava.io.tmpdir=./temp
    F    arg[50] = -XX:SoftRefLRUPolicyMSPerMB=1
    F    arg[51] = -XX:-TraceClassUnloading
    F    arg[52] = -XX:+DumpDetailedClassStatisticOnOutOfMemory
    F    arg[53] = -XX:+DisableExplicitGC
    F    arg[54] = -XX:+PrintGCDetails
    F    arg[55] = -XX:+PrintGCTimeStamps
    F    arg[56] = -XX:HeapDumpPath=OOM.hprof
    F    arg[57] = -XX:+UseConcMarkSweepGC
    F    arg[58] = -XX:TargetSurvivorRatio=90
    F    arg[59] = -XX:-StringInternTableInPermGen
    F    arg[60] = -XX:+HeapDumpOnOutOfMemoryError
    F    arg[61] = -XX:MaxErrorQueueLength=200
    F    arg[62] = -verbose:gc
    F    arg[63] = -XX:SurvivorRatio=9
    F    arg[64] = -Xss2097152
    F  ignore unrecognized options : no
    F  ********************************************************************************
    J  JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    J  (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    J  (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    F  [Thr 5160] *** LOG => SfCJavaVm: Java VM started.
    F  ********************************************************************************
    F  Main method arguments:
    F    arg[ 0] = -DSAPSTART=1
    F    arg[ 1] = -DSAPSYSTEM=00
    F    arg[ 2] = -DSAPSYSTEMNAME=PID
    F    arg[ 3] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 4] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[ 5] = -DFRFC_FALLBACK=ON
    F    arg[ 6] = -DFRFC_FALLBACK_HOST=localhost
    F  ********************************************************************************

    J Tue Sep 02 02:27:59 2014
    J  1.855: [GC 1.856: [ParNew: 429056K->5734K(476672K), 0.0159448 secs] 429063K->5742K(1525248K), 0.0161384 secs]

    F [Thr 5160] Tue Sep 02 02:27:59 2014
    F  [Thr 5160] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 5160] *** LOG    state real time: 2.375 CPU time: 0.406 sys, 2.906 usr
    F  [Thr 5160] *** LOG    total real time: 2.375 CPU time: 0.406 sys, 2.906 usr
    F  [Thr 5160]
    F  [Thr 5160] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 5160] *** LOG    state real time: 0.015 CPU time: 0.000 sys, 0.031 usr
    F  [Thr 5160] *** LOG    total real time: 2.390 CPU time: 0.406 sys, 2.937 usr
    F  [Thr 5160]

    F [Thr 3804] Tue Sep 02 02:28:03 2014
    F  [Thr 3804] *** WARNING => SfCFramework::registerNatives: failed for com.sap.conn.rfc.driver.CpicDriver [sfxxifrw.hpp 167]

    J Tue Sep 02 02:28:08 2014
    J  10.938: [GC 10.938: [ParNew: 434790K->47616K(476672K), 0.3162156 secs] 435321K->93746K(1525248K), 0.3164450 secs]

    F [Thr 7028] Tue Sep 02 02:28:15 2014
    F  [Thr 7028] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)
    F  [Thr 7028] *** LOG => exiting (exitcode 2150, retcode 1).
    M  [Thr 7028] CCMS: CCMS Monitoring Cleanup finished successfully.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        3608
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:29:06 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -appTrc
      arg[ 2] : -nodeId=2
      arg[ 3] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 4] : -DSAPINFO=PID_00_server0
      arg[ 5] : -hostvm
      arg[ 6] : -nodeName=ID2463250
      arg[ 7] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 8] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 9] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[10] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[11] : -DSAPSTART=1
      arg[12] : -DSAPSYSTEM=00
      arg[13] : -DSAPSYSTEMNAME=PID
      arg[14] : -DSAPMYNAME=usatlsv117_PID_00
      arg[15] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[16] : -DFRFC_FALLBACK=ON
      arg[17] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:29:06 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 4340] MtxInit: 10002 0 2
    I  [Thr 4340] MPI: dynamic quotas disabled.
    I  [Thr 4340] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  [Thr 4340] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 4340] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 4340] CCMS uses Shared Memory Key 73 for monitoring.
    M  [Thr 4340] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 4340] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 4340] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 4340] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:29:06 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=3608
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45] = -Djava.security.egd=file:/dev/urandom
    F    arg[46] = -Djava.awt.headless=true
    F    arg[47] = -Djmx.invoke.getters=true
    F    arg[48] = -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    F    arg[49] = -Djava.io.tmpdir=./temp
    F    arg[50] = -XX:SoftRefLRUPolicyMSPerMB=1
    F    arg[51] = -XX:-TraceClassUnloading
    F    arg[52] = -XX:+DumpDetailedClassStatisticOnOutOfMemory
    F    arg[53] = -XX:+DisableExplicitGC
    F    arg[54] = -XX:+PrintGCDetails
    F    arg[55] = -XX:+PrintGCTimeStamps
    F    arg[56] = -XX:HeapDumpPath=OOM.hprof
    F    arg[57] = -XX:+UseConcMarkSweepGC
    F    arg[58] = -XX:TargetSurvivorRatio=90
    F    arg[59] = -XX:-StringInternTableInPermGen
    F    arg[60] = -XX:+HeapDumpOnOutOfMemoryError
    F    arg[61] = -XX:MaxErrorQueueLength=200
    F    arg[62] = -verbose:gc
    F    arg[63] = -XX:SurvivorRatio=9
    F    arg[64] = -Xss2097152
    F  ignore unrecognized options : no
    F  ********************************************************************************
    J  JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    J  (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    J  (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    F  [Thr 7024] *** LOG => SfCJavaVm: Java VM started.
    F  ********************************************************************************
    F  Main method arguments:
    F    arg[ 0] = -DSAPSTART=1
    F    arg[ 1] = -DSAPSYSTEM=00
    F    arg[ 2] = -DSAPSYSTEMNAME=PID
    F    arg[ 3] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 4] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[ 5] = -DFRFC_FALLBACK=ON
    F    arg[ 6] = -DFRFC_FALLBACK_HOST=localhost
    F  ********************************************************************************

    J Tue Sep 02 02:29:08 2014
    J  1.824: [GC 1.824: [ParNew: 429056K->5740K(476672K), 0.0139839 secs] 429063K->5748K(1525248K), 0.0141350 secs]

    F [Thr 7024] Tue Sep 02 02:29:08 2014
    F  [Thr 7024] *** LOG => State changed from 0 (Initial) to 1 (Waiting to start).
    F  [Thr 7024] *** LOG    state real time: 2.234 CPU time: 0.359 sys, 2.937 usr
    F  [Thr 7024] *** LOG    total real time: 2.234 CPU time: 0.359 sys, 2.937 usr
    F  [Thr 7024]
    F  [Thr 7024] *** LOG => State changed from 1 (Waiting to start) to 2 (Starting framework).
    F  [Thr 7024] *** LOG    state real time: 0.000 CPU time: 0.000 sys, 0.000 usr
    F  [Thr 7024] *** LOG    total real time: 2.234 CPU time: 0.359 sys, 2.937 usr
    F  [Thr 7024]

    F [Thr 5004] Tue Sep 02 02:29:12 2014
    F  [Thr 5004] *** WARNING => SfCFramework::registerNatives: failed for com.sap.conn.rfc.driver.CpicDriver [sfxxifrw.hpp 167]

    J Tue Sep 02 02:29:18 2014
    J  12.580: [GC 12.580: [ParNewJ 
    J Tue Sep 02 02:29:19 2014
    : 434796K->47616K(476672K), 0.3256880 secs] 435332K->95328K(1525248K), 0.3259093 secs]

    F [Thr 3460] Tue Sep 02 02:29:26 2014
    F  [Thr 3460] *** LOG => SfCJavaVm: exit hook is called. (rc = 2150)
    F  [Thr 3460] *** LOG => exiting (exitcode 2150, retcode 1).
    M  [Thr 3460] CCMS: CCMS Monitoring Cleanup finished successfully.
    trc file: "C:\usr\sap\PID\DVEBMGS00\work\dev_server0", trc level: 1, release: "711"
    sysno      00
    sid        PID
    systemid   562 (PC with Windows NT)
    relno      7110
    patchlevel 0
    patchno    92
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    pid        5224
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      All, egi
    Tue Sep 02 02:30:00 2014
    *  trace logging activated, max size = 52428800 bytes, 2 versions
    arguments :
      arg[ 0] : C:\usr\sap\PID\DVEBMGS00\exe\jstart.EXE
      arg[ 1] : -appTrc
      arg[ 2] : -nodeId=2
      arg[ 3] : pf=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[ 4] : -DSAPINFO=PID_00_server0
      arg[ 5] : -hostvm
      arg[ 6] : -nodeName=ID2463250
      arg[ 7] : -file=C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\instance.properties
      arg[ 8] : -jvmFile=C:\usr\sap\PID\DVEBMGS00\work\jstart.jvm
      arg[ 9] : -traceFile=C:\usr\sap\PID\DVEBMGS00\work\dev_server0
      arg[10] : -javaOutFile=C:\usr\sap\PID\DVEBMGS00\work\jvm_server0.out
      arg[11] : -DSAPSTART=1
      arg[12] : -DSAPSYSTEM=00
      arg[13] : -DSAPSYSTEMNAME=PID
      arg[14] : -DSAPMYNAME=usatlsv117_PID_00
      arg[15] : -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
      arg[16] : -DFRFC_FALLBACK=ON
      arg[17] : -DFRFC_FALLBACK_HOST=localhost

    F Tue Sep 02 02:30:00 2014
    F  ********************************************************************************
    F  Java environment properties
    F    root directory    : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5
    F    vendor            : SAP AG
    F    version           : 1.5.0_14
    F    cpu               : amd64
    F    java vm type      : server
    F    java vm version   : 5.1.027
    F    jvm library name  : jvm.dll
    F    library path      : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin
    F    executable path   : C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin
    F    SAP extensions    : available
    F  ********************************************************************************
    I  [Thr 6284] MtxInit: 10002 0 2
    I  [Thr 6284] MPI: dynamic quotas disabled.
    I  [Thr 6284] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  [Thr 6284] NiInit3: NI already initialized; param 'maxHandles' ignored (init=2;par=1002;cur=2048)
    M  [Thr 6284] CCMS: Detected Double Stack (parameter "rdisp/j2ee_start" is active)
    M  [Thr 6284] CCMS uses Shared Memory Key 73 for monitoring.
    M  [Thr 6284] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  [Thr 6284] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    M  [Thr 6284] CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    M  [Thr 6284] CCMS: CCMS Monitoring Initialization finished, rc=0.

    F Tue Sep 02 02:30:00 2014
    F  ********************************************************************************
    F  SAP JVM arguments:
    F    arg[ 0] = vfprintf
    F    arg[ 1] = abort
    F    arg[ 2] = exit
    F    arg[ 3] = -XmonGcCallback
    F    arg[ 4] = -XdebugStateChangeCallback
    F    arg[ 5] = -DSAPSTART=1
    F    arg[ 6] = -DSAPSYSTEM=00
    F    arg[ 7] = -DSAPSYSTEMNAME=PID
    F    arg[ 8] = -DSAPMYNAME=usatlsv117_PID_00
    F    arg[ 9] = -DSAPPROFILE=C:\usr\sap\PID\SYS\profile\PID_DVEBMGS00_usatlsv117
    F    arg[10] = -DFRFC_FALLBACK=ON
    F    arg[11] = -DFRFC_FALLBACK_HOST=localhost
    F    arg[12] = -Xjvmx
    F    arg[13] = -XsapSystem:00
    F    arg[14] = -DSAPSTARTUP=1
    F    arg[15] = -DSAPDBHOST=usatlsv117
    F    arg[16] = -DSAPINFO=PID_00_server0
    F    arg[17] = -Dj2ee.dbhost=usatlsv117
    F    arg[18] = -Dsun.java.launcher=jstart
    F    arg[19] = -Dsun.java.command=com.sap.engine.boot.Start  -DSAPSTART=1 -DSAPSYSTEM=00 -DSAPSYSTEMNAME=PID -DSAPMYNAME=usatlsv117_PID_00 -DSAPPROFILE=C:\\usr\\sap\\PID\\SYS\\profile\\PID_DVEBMGS00_usatlsv117 -DFRFC_FALLBACK=ON -DFRFC_FALLBACK_HOST=localhost
    F    arg[20] = -Djstartup.mode=JSTART
    F    arg[21] = -Djstartup.whoami=server
    F    arg[22] = -Djstartup.ownProcessId=5224
    F    arg[23] = -Djstartup.ownHardwareId=Q1489088110
    F    arg[24] = -Djstartup.debuggable=yes
    F    arg[25] = -DLoadBalanceRestricted=no
    F    arg[26] = -XdebugPortRange:50021-50021
    F    arg[27] = -Denv.class.path=
    F    arg[28] = -Dsys.global.dir=C:\usr\sap\PID\SYS\global
    F    arg[29] = -Dapplication.home=C:\usr\sap\PID\DVEBMGS00\exe
    F    arg[30] = -Djava.class.path=C:\usr\sap\PID\DVEBMGS00\exe\jstart71.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\jvmx.jar;C:\usr\sap\PID\DVEBMGS00\exe\jre\lib\iqlib.jar;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\lib\tools.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\sap.com~tc~bl~jkernel_boot~impl.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\jaas.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\system\sap.com~tc~bl~bytecode~library.jar;C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\boot\memoryanalyzer.jar
    F    arg[31] = -Djava.library.path=C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin\server;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\bin;C:\usr\sap\PID\DVEBMGS00\j2ee\os_libs;C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\bin;C:\usr\sap\PID\DVEBMGS00\exe;C:\oracle\PID\102\bin;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;C:\WINDOWS\system32\WindowsPowerShell\v1.0;C:\j2sdk1.4.2_13-x64\bin;C:\Program Files (x86)\Windows Imaging;C:\Program Files\OmniBack\bin
    F    arg[32] = -XX:MaxNewSize=512m
    F    arg[33] = -Xms1536m
    F    arg[34] = -XX:PermSize=1536m
    F    arg[35] = -Xmx2560m
    F    arg[36] = -XX:NewSize=512m
    F    arg[37] = -XX:MaxPermSize=1536m
    F    arg[38] = -Drdbms.driverLocation=C:\usr\sap\PID\DVEBMGS00\exe\ojdbc14.jar
    F    arg[39] = -DSAPJVM_EXTENSION_COMMAND_HANDLER=com.sap.tools.memory.protocol.ProtocolHandler
    F    arg[40] = -Djava.security.policy=./../bin/kernel/java.policy
    F    arg[41] = -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    F    arg[42] = -Dnetworkaddress.cache.ttl=10
    F    arg[43] = -Djco.jarm=1
    F    arg[44] = -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    F    arg[45]

    stdout/stderr redirection
    node name   : server0
    host name   : usatlsv117
    system name : PID
    system nr.  : 00
    started at  : Tue Sep 02 03:32:31 2014
    JVMX version - Dec 11 2008 23:18:49 - 51_REL - optU - windows amd64 - bas2:113000 (mixed mode)
    (CompilerOracle read from file C:\usr\sap\PID\DVEBMGS00\exe\sapjvm_5\jre\.hotspot_compiler )
    (CompilerOracle exclude com/sun/tools/javac/code/SymbolMethodSymbol overrides)
    The active factory is : com.sap.engine.boot.loader.StandardClassLoaderFactory
    Class loading cache information loaded from package index [C:\usr\sap\PID\DVEBMGS00\j2ee\cluster\bin\index.list]
    Reading kernel properties from kernelProperties.bin file...
       Checked the data for 63 ms
       Read the objects for 484 ms
       Substituted the values for 125 ms
    Finished reading kernel objects for 609 ms
    Startup mode [NORMAL] and action [NONE] read
    AS Java version [7.11.3301.353173.20131008093148 SP 13] is starting server process [ID2463250] on host [usatlsv117]...
    Loading [LogManager]... [39329] ms
    Loading [PoolManager]... [15] ms
    Loading [ApplicationThreadManager]... [219] ms
    Loading [ThreadManager]... 46.066: [GC 46.066: [ParNew: 429056K->5700K(476672K), 0.0113643 secs] 429063K->5707K(1525248K), 0.0115702 secs]
    [31] ms
    Loading [ClassLoaderManager]... [16] ms
    Loading [ClusterManager]... [437] ms
    Loading [LockingManager]... [94] ms
    Loading [ConfigurationManager]... [1922] ms
    Loading [CacheManager]... [78] ms
    Loading [DatabaseManager]... [1047] ms
    Loading [SessionManager]... [1266] ms
    Loading [LicensingManager]... [31] ms
    Loading [ServiceManager]...
    Initialize components for : 203 ms.
    Resolve components for : 360 ms.
    Load components for 3437 ms.
    Loading services.
    Calculate startup service set for 469 ms.
      Service [webservices] started. [0] ms / [0] CPU ms
      Service [tc~je~security~api] started. [0] ms / [0] CPU ms
      Service [tc~je~cross~api] started. [0] ms / [0] CPU ms
      Service [r3startup] started. [0] ms / [0] CPU ms
      Service [tc~esi~uddi~content~handler] started. [0] ms / [0] CPU ms
      Service [tc~je~mngt_model~srv] started. [0] ms / [0] CPU ms
      Service [engine.lm.log.facade] started. [0] ms / [0] CPU ms
      Service [engine.dsr.facade] started. [0] ms / [0] CPU ms
      Service [tc~je~content~classification~handler] started. [0] ms / [0] CPU ms
      Service [runtimeinfo] started. [46] ms / [0] CPU ms
      Service [cluster] started. [15] ms / [0] CPU ms
      Service [memory] started. [156] ms / [46] CPU ms
      Service [timeout] started. [156] ms / [78] CPU ms
      Service [jmx_notification] started. [187] ms / [0] CPU ms
      Service [cross] started. [156] ms / [15] CPU ms
      Service [userstore] started. [125] ms / [0] CPU ms
      Service [log_configurator] started. [250] ms / [78] CPU ms
      Service [locking] started. [94] ms / [0] CPU ms
      Service [p4] started. [344] ms / [62] CPU ms
      Service [classload] started. [0] ms / [0] CPU ms
      Service [classload.facade] started. [0] ms / [0] CPU ms
      Service [msp] started. [62] ms / [15] CPU ms
      Service [classpath_resolver] started. [218] ms / [15] CPU ms
      Service [tc~sec~destinations~provider] started. [922] ms / [187] CPU ms
      Service [naming] started. [797] ms / [265] CPU ms
      Service [objectanalyzing] started. [47] ms / [0] CPU ms
      Service [file] started. [16] ms / [0] CPU ms
      Service [appclient] started. [93] ms / [0] CPU ms
      Service [tc~je~sca~ejb.plugin] started. [0] ms / [0] CPU ms
      Service [ts] started. [250] ms / [31] CPU ms
      Service [licensing] started. [16] ms / [0] CPU ms
      Service [engine.license.facade] started. [0] ms / [0] CPU ms
      Service [javamail] started. [359] ms / [62] CPU ms
      Service [connector] started. [469] ms / [78] CPU ms
      Service [library_container] started. [31] ms / [15] CPU ms
      Service [schemaprocessor~srv] started. [3078] ms / [953] CPU ms
      Service [http] started. [4078] ms / [218] CPU ms
    69.171: [GC 69.171: [ParNew: 434756K->47616K(476672K), 0.3116390 secs] 435300K->96608K(1525248K), 0.3119670 secs]
      Service [deploy] started. [16469] ms / [343] CPU ms
      Service [deploy.facade] started. [0] ms / [0] CPU ms
      Service [metadatarepository] started. [0] ms / [0] CPU ms
      Service [MigrationService] started. [31] ms / [15] CPU ms
      Service [engine.migservice.facade] started. [0] ms / [0] CPU ms
      Service [engine.migration.facade] started. [0] ms / [0] CPU ms
      Service [orpersistence] started. [359] ms / [46] CPU ms
      Service [dbpool] started. [2703] ms / [453] CPU ms
      Service [dbpool.facade] started. [0] ms / [0] CPU ms
      Service [tc~je~sca~integration] started. [2891] ms / [1890] CPU ms
      Service [tc~je~dbcontainer~srv] started. [140] ms / [0] CPU ms
      Service [tc~je~sca~ws.plugin] started. [156] ms / [125] CPU ms
      Service [tc~je~cachemgmt~srv] started. [922] ms / [125] CPU ms
      Service [com.sap.security.core.ume.service] start ================= ERROR =================
    com.sap.engine.frame.ServiceException: Start of UME service failed. Check help topic "Start of UME Service Failed". Technical details: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination UMEBackendConnection could not be created: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:402)
      at com.sap.engine.frame.ApplicationFrameAdaptor.start(ApplicationFrameAdaptor.java:31)
      at com.sap.engine.core.service630.container.ServiceRunner.startFrame(ServiceRunner.java:155)
      at com.sap.engine.core.service630.container.ServiceRunner.startService(ServiceRunner.java:113)
      at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:60)
      at com.sap.engine.frame.core.thread.Task.run(Task.java:73)
      at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:177)
      at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:295)
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination UMEBackendConnection could not be created: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:642)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getNewInstance(PrincipalDatabagFactory.java:228)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:170)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.newInstance(PrincipalDatabagFactory.java:240)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:157)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactory.getInstance(PrincipalDatabagFactory.java:103)
      at com.sap.security.core.InternalUMFactory.initializeUME(InternalUMFactory.java:208)
      at com.sap.security.core.server.ume.service.UMEServiceFrame.start(UMEServiceFrame.java:263)
      ... 7 more
    Caused by: com.sap.security.core.persistence.datasource.PersistenceException: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination UMEBackendConnection could not be created: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.newPersistenceException(R3PersistenceBase.java:227)
      at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init(R3PersistenceBase.java:550)
      at com.sap.security.core.persistence.imp.PrincipalDatabagFactoryInstance.<init>(PrincipalDatabagFactoryInstance.java:517)
      ... 14 more
    Caused by: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination UMEBackendConnection could not be created: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo700Proxy.<init>(R3JCo700Proxy.java:111)
      at com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCoProxy.getInstance(R3JCoProxy.java:136)
      at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.doInitRfc(R3PersistenceBase.java:778)
      at com.sap.security.core.persistence.datasource.imp.R3Persistence.localInitialization(R3Persistence.java:258)
      at com.sap.security.core.persistence.datasource.imp.R3PersistenceBase.init(R3PersistenceBase.java:525)
      ... 15 more
    Caused by: com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination UMEBackendConnection could not be created: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:208)
      at com.sap.conn.jco.rt.DefaultDestinationManager.searchDestination(DefaultDestinationManager.java:374)
      at com.sap.conn.jco.rt.DefaultDestinationManager.getDestinationInstance(DefaultDestinationManager.java:89)
      at com.sap.conn.jco.JCoDestinationManager.getDestination(JCoDestinationManager.java:86)
      at com.sap.security.core.persistence.datasource.imp.r3persistence.R3JCo700Proxy.<init>(R3JCo700Proxy.java:91)
      ... 19 more
    Caused by: java.lang.NoSuchMethodError: com.sap.security.core.server.destinations.lib.RFCDestinationCore.setLoginTicket(Ljava/lang/String;)V
      at com.sap.security.core.server.destinations.provider.DestinationsProviderFrame.getDestinationProperties(DestinationsProviderFrame.java:164)
      at com.sap.conn.jco.rt.DefaultDestinationManager.getProperties(DefaultDestinationManager.java:324)
      at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:161)
      ... 23 more
    FATAL: Critical shutdown with exit code [2150] was requested due to [AS Java cannot be started; core service [com.sap.security.core.ume.service] failed to start]

  • Em.merge does not throw Optimistic Lock Exception

    Hello,
    we are using Optimistic Lock Exception in a stateful bean managed transaction.
    I am wondering that there is no Optimistic Lock Exception is thrown after em.merge
    The Optimistic Lock Exception is primary thrown on em.flush - is this right?
    A similar problem is described on
    http://www.nabble.com/Optimistic-Lock-Exception-expected-td22742662.html#a22742662
    See serveroutput: The EclipseLink-5006-Exception is thrown after an em.flush
    14:03:11,657 INFO [STDOUT] updateItem
    14:03:11,657 INFO [STDOUT] [EL Finest]: 2009-04-09 14:03:11.657--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--Merge clone with references com.tup.model.Person@131a24c
    14:03:11,657 INFO [STDOUT] merged
    14:03:11,657 INFO [STDOUT] [EL Finest]: 2009-04-09 14:03:11.657--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--Execute query UpdateObjectQuery(com.tup.model.Person@196649c)
    14:03:11,657 INFO [STDOUT] [EL Fine]: 2009-04-09 14:03:11.657--ClientSession(21268424)--Connection(25845065)--Thread(WorkerThread#0[192.168.1.217:4518])--UPDATE mku_person_ver SET first_name = ? WHERE ((ID = ?) AND (((last_name = ?) AND (first_name = ?)) AND (version = ?)))
    bind => [Bernd 982, 5, Kuls, Bernd 98, 2009-04-09 13:12:15.0]
    14:03:11,672 INFO [STDOUT] [EL Warning]: 2009-04-09 14:03:11.672--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--Exception [EclipseLink-5006] (Eclipse Persistence Services - 1.1.0.r3634): org.eclipse.persistence.exceptions.OptimisticLockException
    Exception Description: The object [com.tup.model.Person@196649c] cannot be updated because it has changed or been deleted since it was last read.
    Class> com.tup.model.Person Primary Key> [5]
    14:03:11,688 INFO [STDOUT] [EL Warning]: 2009-04-09 14:03:11.688--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--javax.persistence.OptimisticLockException: Exception [EclipseLink-5006] (Eclipse Persistence Services - 1.1.0.r3634): org.eclipse.persistence.exceptions.OptimisticLockException
    Exception Description: The object [com.tup.model.Person@196649c] cannot be updated because it has changed or been deleted since it was last read.
    Class> com.tup.model.Person Primary Key> [5]
    14:03:11,688 INFO [STDOUT] OptimisticLockException throws MyApplicationException
    14:03:11,688 INFO [STDOUT] MyApplicationException
    14:03:11,735 INFO [STDOUT] [EL Finer]: 2009-04-09 14:03:11.735--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--TX afterCompletion callback, status=ROLLEDBACK
    14:03:11,750 INFO [STDOUT] [EL Finer]: 2009-04-09 14:03:11.75--UnitOfWork(14218007)--Thread(WorkerThread#0[192.168.1.217:4518])--release unit of work
    14:03:11,750 INFO [STDOUT] [EL Finer]: 2009-04-09 14:03:11.75--ClientSession(21268424)--Thread(WorkerThread#0[192.168.1.217:4518])--client released
    14:03:11,750 ERROR [BMTInterceptor] BMT stateful bean 'ModelFacade' did not complete user transaction properly status=STATUS_MARKED_ROLLBACK
    And by this Exception the transaction's status is set to status=STATUS_MARKED_ROLLBACK.
    The transaction can no longer be used.
    I want to use this transaction further and wrap the OptimisticLockException into an MyApplicationException
    (see serveroutput).
    But no change!
    Any Ideas ?
    Regards,
    Martin Kubitza
    T&P Bochum/Germany

    Hi,
    are you using JPA or TopLink ? Check if there is another exception thrown that produces the error. You can try and catch (Exception ex), which will catch them all. if this works the obviously you don't catch the right exception
    I found a post saying that: "If you trying commit directly after persist w/o doing an explicit
    flush then OptimisticLocking Exception maybe nested inside
    RollBackException. What is the top most error on stack? You can catch
    javax.persistence.PersistenceException and try to do this kind of
    error translation
    public static void getThrowable(javax.persistence.PersistenceException
    perex, int code) {
    boolean updateError = false ;
    boolean deleteError = false ;
    KentException kentex = null ;
    Throwable th = null ;
    if( perex instanceof org.apache.openjpa.persistence.RollbackException) {
    th = perex.getCause();
    if(th instanceof OptimisticLockException) {
    updateError = true ;
    if(perex instanceof OptimisticLockException ){
    updateError = true ;
    th = perex ;
    if(perex instanceof org.apache.openjpa.persistence.EntityNotFoundException) {
    deleteError = true ;
    th = perex ;
    http://n2.nabble.com/OptimisticLockException-confusion.-td210621.html
    Frank

  • Server0 is not getting started some timeout out services: issue with thread

    in SAP MMC server0 is in yellow colour!!!!!!!!
    and dev_server0.out file is below explaing the exect error in log file......................
    stdout/stderr redirect
    node name   : server0
    pid         : 7832
    system name : E12
    system nr.  : 03
    started at  : Thu May 29 09:46:48 2008
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 7432] MtxInit: -2 0 0
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Error occurred while preloading classes of security providers from jre/lib/ext folder: java.util.zip.ZipException: The filename, directory name, or volume label syntax is incorrect
    Loading: LogManager ... 1297 ms.
    Loading: PoolManager ... 16 ms.
    Loading: ApplicationThreadManager ... 47 ms.
    Loading: ThreadManager ... 16 ms.
    Loading: IpVerificationManager ... 31 ms.
    Loading: ClassLoaderManager ... 15 ms.
    Loading: ClusterManager ... 235 ms.
    Loading: LockingManager ... 78 ms.
    Loading: ConfigurationManager ... 2187 ms.
    Loading: LicensingManager ... 32 ms.
    Loading: CacheManager ... 140 ms.
    Loading: ServiceManager ...
    Loading services.:
      Service DQE started. (0 ms).
      Service runtimeinfo started. (16 ms).
      Service cross started. (94 ms).
      Service memory started. (16 ms).
      Service timeout started. (47 ms).
      Service file started. (187 ms).
      Service p4 started. (1078 ms).
      Service classpath_resolver started. (31 ms).
      Service log_configurator started. (3360 ms).
      Service locking started. (0 ms).
      Service naming started. (266 ms).
      Service ts started. (62 ms).
      Service javamail started. (62 ms).
      Service licensing started. (15 ms).
      Service iiop started. (250 ms).
    ================================================================================
    getThreadDump : Thu May 29 10:06:59 2008
    Timed out services:
    Service MigrationService > hard reference to interface container.
    Service shell > hard reference to interface security.
    Service bimmrdeployer > hard reference to interface container.
    ================================================================================
      Timed out services:
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_12-b03 mixed mode):
    "SAPJarResourceCloseTimeoutThread" daemon prio=5 tid=0x051789f0 nid=0x2770 in Object.wait() [0x07e7f000..0x07e7fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590060> (a com.sap.engine.frame.core.load.res.JarThread)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.frame.core.load.res.JarThread.run(JarThread.java:32)
         - locked <0x15590060> (a com.sap.engine.frame.core.load.res.JarThread)
    "Thread-14" daemon prio=5 tid=0x053dbdf8 nid=0x2f4 in Object.wait() [0x07e3f000..0x07e3fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155900f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x155900f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.cache.util.ReferenceQueueRunnable.run(ReferenceQueueRunnable.java:43)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x04dafc38 nid=0x102c in Object.wait() [0x07dff000..0x07dffd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590168> (a java.lang.Object)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:134)
         - locked <0x15590168> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x0556e008 nid=0x165c in Object.wait() [0x07dbf000..0x07dbfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590218> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15590218> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x055a6008 nid=0x27f0 in Object.wait() [0x07d7f000..0x07d7fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155902a0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:115)
         - locked <0x155902a0> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x04dea760 nid=0x26bc in Object.wait() [0x07d3f000..0x07d3fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590330> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x15590330> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_EnquReader" prio=5 tid=0x04f8cb58 nid=0x25a0 runnable [0x06cff000..0x06cffd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at com.sap.bc.krn.enqu.EncomiHandle.ReceiveMessage(EncomiHandle.java:483)
         - locked <0x155903f8> (a java.lang.Object)
         at com.sap.bc.krn.enqu.EnccliMultiplexHandle.receive(EnccliMultiplexHandle.java:771)
         at com.sap.bc.krn.enqu.ReadRunnable.run(EnccliMultiplexHandle.java:958)
         at java.lang.Thread.run(Thread.java:534)
    "SAP J2EE Engine|MS Ping Thread" prio=5 tid=0x0503c9d0 nid=0x189c waiting on condition [0x06cbf000..0x06cbfd94]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.core.cluster.impl6.ms.MSRawConnection$MSPingRunner.run(MSRawConnection.java:2383)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_System_Thread[impl:5]_39" prio=5 tid=0x04d96d28 nid=0x10ac in Object.wait() [0x06bdf000..0x06bdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_38" prio=5 tid=0x05003a38 nid=0x2630 in Object.wait() [0x06b9f000..0x06b9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_37" prio=10 tid=0x04d96258 nid=0x259c in Object.wait() [0x06b5f000..0x06b5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_36" prio=5 tid=0x04d95808 nid=0x2610 in Object.wait() [0x06b1f000..0x06b1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_35" prio=5 tid=0x04faabd8 nid=0x17fc in Object.wait() [0x06adf000..0x06adfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_34" prio=5 tid=0x04faa180 nid=0x213c in Object.wait() [0x06a9f000..0x06a9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_33" prio=5 tid=0x04fa95f0 nid=0x2594 in Object.wait() [0x06a5f000..0x06a5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_32" prio=5 tid=0x04c738e0 nid=0x2580 in Object.wait() [0x06a1f000..0x06a1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_31" prio=5 tid=0x04c72cb8 nid=0x2558 in Object.wait() [0x069df000..0x069dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155909d8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:192)
         - locked <0x155909d8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.configuration.impl.event.QueuedEventProcessor.run(QueuedEventProcessor.java:44)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_30" prio=5 tid=0x04c721c8 nid=0x257c in Object.wait() [0x0699f000..0x0699fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_29" prio=5 tid=0x04c716d8 nid=0x2584 in Object.wait() [0x0695f000..0x0695fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_28" prio=5 tid=0x04c70be8 nid=0x2634 in Object.wait() [0x0691f000..0x0691fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_27" prio=5 tid=0x04f98e78 nid=0x2658 in Object.wait() [0x068df000..0x068dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_26" prio=5 tid=0x04f98b88 nid=0x2620 in Object.wait() [0x0689f000..0x0689fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_25" prio=10 tid=0x04f98098 nid=0x5b0 in Object.wait() [0x0685f000..0x0685fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590d50> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590d50> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_24" prio=5 tid=0x04f8d1e8 nid=0x1df4 waiting on condition [0x0681f000..0x0681fd94]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnectionPool$IdleConnectionsChecker.run(DBConnectionPool.java:427)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_23" prio=5 tid=0x04c6f008 nid=0x25c4 in Object.wait() [0x067df000..0x067dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_22" prio=10 tid=0x04e915d8 nid=0x25ec in Object.wait() [0x0679f000..0x0679fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.service630.container.ServiceRunner.run(ServiceRunner.java:119)
         - locked <0x15590648> (a com.sap.engine.core.service630.container.InterfaceWrapper)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x04e909a0 nid=0x255c in Object.wait() [0x0675f000..0x0675fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155910b0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x155910b0> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:18)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_20" prio=5 tid=0x04e8fc48 nid=0x238c in Object.wait() [0x0671f000..0x0671fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAP J2EE Engine|MS Queue Listener" prio=5 tid=0x04e8f0c0 nid=0x25cc in Object.wait() [0x066df000..0x066dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591260> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:192)
         - locked <0x15591260> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.cluster.impl6.ms.MSListenerQueue.run(MSListenerQueue.java:67)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_18" prio=5 tid=0x04f82db0 nid=0x2578 in Object.wait() [0x0669f000..0x0669fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_17" prio=5 tid=0x04f826c0 nid=0x2574 in Object.wait() [0x0665f000..0x0665fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_16" prio=5 tid=0x04aa4178 nid=0x2600 in Object.wait() [0x0661f000..0x0661fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15591438> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x15591438> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at com.sap.engine.lib.util.cache.CacheGroup.run(CacheGroup.java:76)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAP J2EE Engine|MS Socket Listener" prio=5 tid=0x04aa3a88 nid=0x2530 runnable [0x065df000..0x065dfd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <0x15591d60> (a java.io.BufferedInputStream)
         at com.sap.engine.core.cluster.impl6.ms.MSMessageHeader.read(MSMessageHeader.java:440)
         at com.sap.engine.core.cluster.impl6.ms.MSMessageObjectImpl.readHeader(MSMessageObjectImpl.java:142)
         at com.sap.engine.core.cluster.impl6.ms.MSRawConnection.receiveRawMessage(MSRawConnection.java:1660)
         at com.sap.engine.core.cluster.impl6.ms.MSListener.run(MSListener.java:86)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_14" prio=5 tid=0x04aa2f98 nid=0x25b0 in Object.wait() [0x0659f000..0x0659fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_13" prio=5 tid=0x04aa24a8 nid=0x5e4 in Object.wait() [0x0655f000..0x0655fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155921d0> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.log_configurator.archive.Buffer.getTask(Buffer.java:38)
         - locked <0x155921d0> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:37)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_12" prio=5 tid=0x04aa19d0 nid=0x24a0 in Object.wait() [0x0651f000..0x0651fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_11" prio=5 tid=0x04b90190 nid=0xffc in Object.wait() [0x064df000..0x064dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_10" prio=5 tid=0x04b8faa0 nid=0x25ac in Object.wait() [0x0649f000..0x0649fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_9" prio=5 tid=0x04b8f008 nid=0x260c in Object.wait() [0x0645f000..0x0645fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x04f4dc10 nid=0x2588 in Object.wait() [0x0641f000..0x0641fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15592478> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x15592478> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_7" prio=5 tid=0x04ed5e18 nid=0x25c8 runnable [0x063df000..0x063dfd94]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0x15592590> (a java.net.PlainSocketImpl)
         at java.net.ServerSocket.implAccept(ServerSocket.java:448)
         at com.sap.engine.core.cluster.impl6.net.ClusterServerSocket.accept(ClusterServerSocket.java:51)
         at com.sap.engine.core.cluster.impl6.JoinPortListener.run(JoinPortListener.java:72)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_6" prio=5 tid=0x04ed5c18 nid=0x2568 in Object.wait() [0x0639f000..0x0639fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Internal Thread" prio=5 tid=0x04eb6ce0 nid=0x100c in Object.wait() [0x0635f000..0x0635fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155927c0> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:476)
         - locked <0x155927c0> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerRunner.run(TimeoutManagerRunner.java:20)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Timeout Service Integrity Watcher Thread" prio=10 tid=0x04ecce28 nid=0x25f4 in Object.wait() [0x0631f000..0x0631fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155928a8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x155928a8> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "Session Reader for cluster node 34388700" prio=5 tid=0x04eccc28 nid=0x25f0 runnable [0x062df000..0x062dfd94]
         at java.net.SocketInputStream.socketRead0(Native Method)
         at java.net.SocketInputStream.read(SocketInputStream.java:129)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         - locked <0x155931c8> (a java.io.BufferedInputStream)
         at com.sap.engine.core.cluster.impl6.session.Reader.run(Reader.java:83)
         at com.sap.engine.frame.core.thread.Task.run(Task.java:64)
         at com.sap.engine.core.thread.impl5.SingleThread.execute(SingleThread.java:79)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:150)
    "SAPEngine_System_Thread[impl:5]_2" prio=5 tid=0x04aa4d38 nid=0x25c0 in Object.wait() [0x0629f000..0x0629fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_1" prio=5 tid=0x04aa4708 nid=0x2604 in Object.wait() [0x0625f000..0x0625fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "OrderedChannel for service" prio=5 tid=0x04b722a8 nid=0x23e4 in Object.wait() [0x0621f000..0x0621fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15590528> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_ThreadManager Maintaining thread." prio=10 tid=0x04b720a8 nid=0x308 in Object.wait() [0x061df000..0x061dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593ac8> (a com.sap.engine.core.thread.impl5.ExecutorThread)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.core.thread.impl5.ExecutorThread.run(ExecutorThread.java:70)
         - locked <0x15593ac8> (a com.sap.engine.core.thread.impl5.ExecutorThread)
    "SAPEngine_Application_Thread[impl:3]_ThreadManager Maintaining thread." prio=10 tid=0x04daf810 nid=0x252c in Object.wait() [0x0619f000..0x0619fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593b20> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
         at com.sap.engine.core.thread.impl3.RuntimeMaintainingThread.run(RuntimeMaintainingThread.java:65)
         - locked <0x15593b20> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
    "SAPEngine_Application_Thread[impl:3]_39" prio=5 tid=0x04daed20 nid=0xc40 in Object.wait() [0x0615f000..0x0615fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_38" prio=5 tid=0x04e94e30 nid=0x12c0 in Object.wait() [0x0611f000..0x0611fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_37" prio=5 tid=0x04e94740 nid=0x2554 in Object.wait() [0x060df000..0x060dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_36" prio=5 tid=0x04e93c50 nid=0x145c in Object.wait() [0x0609f000..0x0609fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_35" prio=5 tid=0x04e93160 nid=0x2440 in Object.wait() [0x0605f000..0x0605fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_34" prio=5 tid=0x04e926f8 nid=0x2534 in Object.wait() [0x0601f000..0x0601fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_33" prio=5 tid=0x0117eed0 nid=0x27a8 in Object.wait() [0x05fdf000..0x05fdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_32" prio=5 tid=0x0117e3e0 nid=0x2220 in Object.wait() [0x05f9f000..0x05f9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_31" prio=5 tid=0x0117d8f0 nid=0x1dac in Object.wait() [0x05f5f000..0x05f5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_30" prio=5 tid=0x01188450 nid=0x1fbc in Object.wait() [0x05f1f000..0x05f1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_29" prio=5 tid=0x01187960 nid=0x1420 in Object.wait() [0x05edf000..0x05edfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_28" prio=5 tid=0x01186e70 nid=0x2560 in Object.wait() [0x05e9f000..0x05e9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_27" prio=5 tid=0x01186408 nid=0x22d8 in Object.wait() [0x05e5f000..0x05e5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_26" prio=5 tid=0x04c65760 nid=0x7f4 in Object.wait() [0x05e1f000..0x05e1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_25" prio=5 tid=0x04c64c70 nid=0x179c in Object.wait() [0x05ddf000..0x05ddfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_24" prio=5 tid=0x04c64180 nid=0x256c in Object.wait() [0x05d9f000..0x05d9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_23" prio=5 tid=0x04fca4a0 nid=0xa28 in Object.wait() [0x05d5f000..0x05d5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_22" prio=5 tid=0x04fc9a08 nid=0x1974 in Object.wait() [0x05d1f000..0x05d1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_21" prio=5 tid=0x04fc9008 nid=0x24a4 in Object.wait() [0x05cdf000..0x05cdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_20" prio=5 tid=0x04ad4ba0 nid=0x1c6c in Object.wait() [0x05c9f000..0x05c9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_19" prio=5 tid=0x04ad40b0 nid=0xd7c in Object.wait() [0x05c5f000..0x05c5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_18" prio=5 tid=0x049a3d68 nid=0x2550 in Object.wait() [0x05c1f000..0x05c1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_17" prio=5 tid=0x049a3a78 nid=0x2408 in Object.wait() [0x05bdf000..0x05bdfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_16" prio=5 tid=0x049a2f88 nid=0x1684 in Object.wait() [0x05b9f000..0x05b9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_15" prio=5 tid=0x049a2530 nid=0x2230 in Object.wait() [0x05b5f000..0x05b5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_14" prio=5 tid=0x04d09830 nid=0x2540 in Object.wait() [0x05b1f000..0x05b1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_13" prio=5 tid=0x04d08d70 nid=0x2454 in Object.wait() [0x05adf000..0x05adfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_12" prio=5 tid=0x04d08408 nid=0x24c4 in Object.wait() [0x05a9f000..0x05a9fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_11" prio=5 tid=0x04b2f0c8 nid=0x2210 in Object.wait() [0x05a5f000..0x05a5fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_10" prio=5 tid=0x04cbe670 nid=0x2330 in Object.wait() [0x05a1f000..0x05a1fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_9" prio=5 tid=0x04cbe3e8 nid=0xf28 in Object.wait() [0x059df000..0x059dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_8" prio=5 tid=0x0119f170 nid=0x1978 in Object.wait() [0x0599f000..0x0599fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_7" prio=5 tid=0x0119f008 nid=0x2284 in Object.wait() [0x0595f000..0x0595fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_6" prio=5 tid=0x04ebb408 nid=0x24ec in Object.wait() [0x0591f000..0x0591fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_5" prio=5 tid=0x0119c720 nid=0x2448 in Object.wait() [0x058df000..0x058dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_4" prio=5 tid=0x0119c520 nid=0x1e68 in Object.wait() [0x0589f000..0x0589fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_3" prio=5 tid=0x0119c3b8 nid=0x2148 in Object.wait() [0x0585f000..0x0585fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_2" prio=5 tid=0x0119be78 nid=0x1e28 in Object.wait() [0x0581f000..0x0581fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_1" prio=5 tid=0x0119bd10 nid=0x1ef8 in Object.wait() [0x057df000..0x057dfd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "SAPEngine_Application_Thread[impl:3]_0" prio=5 tid=0x04b92008 nid=0x2504 in Object.wait() [0x0579f000..0x0579fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.lib.util.WaitQueue.dequeue(WaitQueue.java:238)
         - locked <0x15593bd8> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:147)
    "Thread-1" prio=5 tid=0x01189310 nid=0x1e3c runnable [0x0492f000..0x0492fd94]
         at java.util.Calendar.<init>(Calendar.java:786)
         at java.util.GregorianCalendar.<init>(GregorianCalendar.java:364)
         at java.util.GregorianCalendar.<init>(GregorianCalendar.java:336)
         at com.sap.localization.LocalizableTextFormatter.<init>(LocalizableTextFormatter.java:71)
         at com.sap.localization.LocalizableTextFormatter.<init>(LocalizableTextFormatter.java:126)
         at com.sap.localization.LocalizableTextFormatter.formatString(LocalizableTextFormatter.java:199)
         at com.sap.engine.core.service630.ResourceUtils.formatString(ResourceUtils.java:244)
         - locked <0x50bd4e58> (a java.lang.Class)
         at com.sap.engine.core.service630.container.MemoryContainer.startServices(MemoryContainer.java:230)
         - locked <0x15594ef0> (a com.sap.engine.core.service630.container.MemoryContainer)
         at com.sap.engine.core.service630.container.MemoryContainer.start(MemoryContainer.java:158)
         - locked <0x15594f78> (a java.lang.Object)
         at com.sap.engine.core.service630.container.AbstractServiceContainer.init(AbstractServiceContainer.java:109)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:560)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:254)
         at com.sap.engine.core.Framework.start(Framework.java:188)
         - locked <0x15594eb0> (a com.sap.engine.core.Framework)
         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:324)
         at com.sap.engine.boot.FrameThread.run(FrameThread.java:61)
         at java.lang.Thread.run(Thread.java:534)
    "Signal Dispatcher" daemon prio=10 tid=0x01159408 nid=0x24e4 waiting on condition [0x00000000..0x00000000]
    "Finalizer" daemon prio=9 tid=0x010f0e50 nid=0x24bc in Object.wait() [0x0472f000..0x0472fd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x155955f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x155955f8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:127)
         at java.lang.ref.Finalizer$FinalizerThread.run(Finalizer.java:159)
    "Reference Handler" daemon prio=10 tid=0x010f02c0 nid=0x233c in Object.wait() [0x046ef000..0x046efd94]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x15593748> (a java.lang.ref.Reference$Lock)
         at java.lang.Object.wait(Object.java:429)
         at java.lang.ref.Reference$ReferenceHandler.run(Reference.java:115)
         - locked <0x15593748> (a java.lang.ref.Reference$Lock)
    "main"

    Hi Naveen,
    What you are doing is not supported by Oracle. From EM Database Console FAQ (863631.1):
    What action needs to be taken if the hostname or SID of the database server is changed?
    If there is a hostname or SID change for the database server then the database console needs to be recreated. There is no other solution if the hostname or SID is changed other that recreating the database console. All database console configuration files are created under the hostname_sid directory and the configuration files along with the repository keeps reference of the hostname, which is why dbconsole needs to be reconfigured if there is change in hostname/sid.
    Refer : Note.293678.1 How To Reconfigure DB Control After a Hostname, Domain name or Listener Change Has Occurred On The Server
    And take a look at note 278100.1: How To Drop, Create And Recreate DB Control In A 10g Database
    Eric

Maybe you are looking for

  • Error message when burning HD with iDVD

    When i try to burn a HD movie directly from iMovieHD( v. 5,02) with iDVD( v. 5.0.1), i get an error message code OX8002006D, followed by another: "Burning Finished.---errors were found during burning process." and "there was a problem during multiple

  • Difference between 8 and 9?

    Can someone tell me the biggest differences between imovie 8 and imovie 9? My computer has 8 on it, but I am teaching a class on imovie to teachers with 9. Thanks! Kelly The class is tomorrow!

  • IPhoto quits unexpectedly right after startup

    Hi! I've been using iPhoto for years and all my photos (almost 7.000) are stored in it, and I never had any problems before. But since last week, everytime I try to open it or upload more photos, it quits unexpectedly. I've tried updating it (I curre

  • Minimum requirements needed to install  Photoshop Elements 12 on computer?

    I am going to install Elements 12 to a desktop computer. Minimum requirements of computer software needed to install and operate the system?

  • Query with order by taking 1 hr

    Hi, Query with order by taking 1 hr, without order by taking 9 seconds, pls tell me ,wat will be the reason and how to tune. Query: SELECT T17.CONFLICT_ID, T17.LAST_UPD, T17.CREATED, T17.LAST_UPD_BY, T17.CREATED_BY, T17.MODIFICATION_NUM, T17.ROW_ID,