Yellow status to green.

Dear Gurus,
How can i make the Yellow request to green in the Real time cube, iam making the request green manually so that request can be used for the reporting is there any other means so that i can make yellow request availability for reporting.
Regards
Amar.

Note 1022649 - P13:Planning:APO:Closing open APO requests periodically
Summary
Symptom
If an open Advanced Planning and Optimization (APO) planning request is not posted after a long time, then its data will never be available for reporting as the threshold of 50,000 data records ( required to close the request) will never be achieved.
This correction delivers report RSSM_CLOSE_PERIODIC_APOREQUEST, which periodically closes the open planning requests if they have not been updated after X number of hours.
You can enter the period for X number of hours when you start the report.
Periodically schedule this report every hour.
Other terms
RSSM_CLOSE_PERIODIC_APOREQUEST, planning, Advanced Planning and Optimization (APO), request, open request,
reporting, close request

Similar Messages

  • How to make the yellow status to green using Process chain in bw 3.5?

    Hi all,
    How to make a request in the infocube from yellow to green using an process chain in bw 3.5?
    Thanks
    pooja

    Hi.
    Use these two Functional Modules one after the other:
    First - RSAPO_SWITCH_TRANS_TO_BATCH
    Second - RSAPO_SWITCH_BATCH_TO_TRANS
    Regards.

  • Yellow status in assets as opposed to green status

    when importing video assets, sometimes the status color is yellow as opposed to green. when it is yellow, it runs into problems while im burning. any way to make the yellow status turn green if that is even the problem?

    Hi:
    Yellow assets need to be encoded by DVDSP. If you encode your movies and audio in Compressor before importing them, you'll get green assets that not need to be encoded by DVDSP itself.
    Encoding your audio with Compressor lets you create AC3 (Dolby) audio files that take less space and bitrate from your project.
    Hope that helps !
      Alberto

  • Green load but yellow status

    Hello,
    I'm loading 2LIS_03_BX (stock init) into cube 0RT_C37. In the monitor the traffic lights are green as in correct, but when looking in the cube (administration) the lights are yellow.. Lines have been added, but the data is not ready for reporting.
    I have tried to re-activate the cube + update rule w/o result. I have used the same data source for loading data into other cubes, so I guess the error lies in the cube or update rule. However, since I do not get any error messages, it's hard to see what's wrong..
    What could be the reason for this and how do I solve it?
    BR,
    F C

    Hi,
    If your techincal status of your load is green and you see traffic light red inside the cube, you can manually change the QM status to green.
    Regards
    Srini

  • Overall status yellow, but technical status is green

    We are on SAP BI 7.0, SP 17.
    I am having an issue with a few DTP's. I am loading from a cube to 3 DSO's. The process was working correclty for quite a while, but lately has been running extremely long. For something like 7,000 to 8,000 records it takes only 43 seconds for the DTP to finish and the technical status to change to green. However, it takes 2 hours for the overall status to change to green and sometimes it doesn't at all and I have to set it to red so that I can delete it.
    While it is trying to change the overall status to green the DSO is locked - I can't get into the DSO manage screen - gives me an error message about the locks. I have read some fairly similar posts already, but none that I have seen seem to have the exact issue as I'm having. Does anyone have any ideas why the overall status is not being updated?
    I have tried re-activating the target DSO, source cube and DTP, but that didn't work. I also tried to create a brand new DTP, but that also didn't work. Also, this process is already in a process chain. I am compressing the cube on a weekly basis. Any help is greatly appreciated.
    Thanks
    Brett

    Hi Brett.
    We are experiencing similar problems. I am loading initial load from a DSO with a very high number of requests to a infocube.
    Apparently there is a overflow of the lock table (SM12). There is a lock for each request in the DSO and when the number of locks reaches 3500 the DTP stalls. If I manually set the overall status to green, I get the lock table overflow error message.
    I've told my basis team to increase the enque/table_size parameter, I'll let you if that has any effect.
    Regards,
    Lars

  • Load to psa is in yellow status only in quality n production system

    Hi All,
    We have created a generic FM which wil take date parameter as input and fetch records for that specific month. This FM works perfectly fine in dev server, but when i run the same in quality and production the load status is still in yellow status.
    FYI, data records are fetched/extracted correctly and data package individually is in green status. But under extraction flow i see the following message  " Missing message: Selection completed  "  at this stage the status is in yellow.
    If i check the job in r/3 system then the last job log entry is
    " Asynchronous transmission of info IDoc 3 in task 0003 (1 parallel tasks) "
    Kindly suggest what can be done here to resolve this. We have stuck for quite long on this.
    Thanks & Regards,
    Anup

    hi
    debug the FM program , if you wont find any then try this.
    you may missing messages in extraction process
    try this
    trun load to red and re-start and check the source system extraction process also check in the source system envio  t Rfc-- in the source system ( to know the status)
    Missing message: Selection completed
    Error: 'Missing message: Selection completed' - URGENT
    http://wiki.sdn.sap.com/wiki/pages/viewpage.action?pageId=153780896
    Data Loads into BI system
    check this may help you.
    Edited by: Srikanth.T on Dec 22, 2011 9:47 AM

  • FM to read yellow status requests from transactional InfoCube

    Hi,
    I am using the FM RSDRI_INFOPROV_READ to read data from the transactional InfoCube. My problem is that my code using this FM should be able to read data requests that have the yellow status for the transactional InfoCube.
    My code using this FM is able to read data from the green requests only but not the yellow requests. I was told in BPS, the yellow requests should turn green automatically after 50K of records have been queue up and ready to be turned green by itself.
    Has anyone come across this and help me solve this issue of reading data using FM RSDRI_INFOPROV_READ to read yellow request data. Is there another FM to read both the green and yellow requests?
    Please advise. Thanks
    RT

    Hi Rob,
    The function module mentioned by you is correct and it will read the yellow requests please try this, by default the parameter i_rollup_only is set as true set it to false (blank) while calling the function module.
    Please see the attached code
    CALL FUNCTION 'RSDRI_INFOPROV_READ'              
       EXPORTING                                      
         i_infoprov             = p_infocube          
         i_th_sfc               = t_sfc               
         i_th_sfk               = t_sfk               
         i_t_range              = lt_range            
         I_PACKAGESIZE          = p_pksize            
         i_rollup_only          = rs_c_false          
       IMPORTING                                      
         e_t_data               = <fsl_data_read>     
         e_end_of_data          = w_end_of_data       
       CHANGING                                       
         c_first_call           = l_first_call        
       EXCEPTIONS                                     
         illegal_input          = 1                   
         illegal_input_sfc      = 2                   
         illegal_input_sfk      = 3                   
         illegal_input_range    = 4                   
         illegal_input_tablesel = 5                   
         no_authorization       = 6                   
         ncum_not_supported     = 7                   
         illegal_download       = 8                   
         illegal_tablename      = 9                   
         trans_no_write_mode    = 10                  
         inherited_error        = 11                  
         x_message              = 12                  
         OTHERS                 = 13.                 
    Hope this was helpful.
    thanks

  • Process chain stops in infopackage with yellow status

    Hi Gurus,
    We are experiencing some difficulties regarding the use of process chains with warnings. Our SAP BI system is connected to an ETL server which feeds us with data from other systems. We have a query that has a push-button functionality that starts a process chain beginning with data extraction with an infopackage and ending in a infocube. The problem we have nowadays is that whenever the ETL workflow fails the infopackage status remains yellow, while our objective would be a red status. To try and solve this problem we forced a timeout in the infopackage. Once we check the log in the process chain it displays a message containing something like "status request modified , do you wish to add subsequent processes?", if we say yes it refreshes the status of the infopackage to red and it all goes ok. What we want is to get rid of this warning and that the status is automatically changed. We've checked other posts and we didn't reach any conclusion... Note 708480 gives us a possibility of automatic desicion but how could we integrate it in our process chains since it is based on shcedulling and not triggers?
    Your help would be much appreciated,
    Thank you
    Bruno Rodrigues

    Hi,
    We have two connected links in the process, one to continue the process chain when process status is green and other link to red status. The problem is the process status remains yellow until our confirmation in pop-up.
    The process chain should be started by user in web browser. So, it isn't possible run it in background.
    Thank you,
    Regards,
    BR

  • Data load from R3 to BW shows yellow status

    Hi Guru's,
    While extracting the data from R3 to BW, BW is receiveing all the packages e.g. 10 packages.  But out of 10, one of the package is showing in the yellow status and the rest in the green status. 
    Overall the Status is shown as yellow but the messages display in the Monitor that all the records are fowarded and received.
    I have this loads in the process chains and because of this issue, my process chains are not getting executed further.
    Could any one of you tell me how to resolve this issue. 
    Is this an issue that BW consultant should resolve or is this a BASIS issue ?
    Thanks for your help !

    No error messages are found in the Monitor.
    I tried thrice executing the process chain and it does the same.
    Any clue ?
    Thanks,

  • Pricing condition type in yellow status

    In a billing document the condition type-ZPR1(base price like PR00) is showing under yellow status can any body explain  on this as normally it should show either green or Red.

    Hello Friend,
    Go to the Sales Order Item Tab and in Conditions colum select your condition type and click on Analysis button to analyse further regarding the Condition Type.It is showing yellow may be because it is inactive as some other condition in palce of this condition type is active.
    Edited by: SUNIL on Apr 14, 2009 2:45 PM

  • DTP load in Yellow status forever

    All,
    The DTP load to this particular remains in Yellow status forever even though the transferred records are just 5000. After observing  the dump, it shows problem where a select query to a table is done in the end routine of the transfroamtion. 
    The select is on a big master data table (material) but when I gave the selection by itself in SE16, there were not many records - just 3000. then why would the trace say that all the time is being spent querying this database table?
    This was all working in D but not in q
    Another important note is that there was no scuh change to the material table. however, there were four attributes to which we had enabled 'conversion' in the transfer structure
    Would this be an issue if not the code itself?
    Thanks

    Any updates please?
    MORE iNFORMATION:
    The dtp loads from one DSO to another. I checked a similar scenario in the same system - things look fine.
    I have an end routine in the transformation. when I look at the dtp monitor for the status, it says:
    Extract. from DataStore xxxx: 4709 Data Records ---status GREEN
    Filter Out New Records with the Same Key : 5000 -> 5000 Data Records------status GREEN
    ODSO xxxxx-> ODSO yyyyy-----status YELLOW
    -Transformation Start---status GREEN
    -Rules---status GREEN
    -End Routine---status GREEN
    No Message: Transformation End
    No Message: Update to DataStore Object yyyyyy
    No Message: Set Technical Status to Green
    No Message: Set Overall Status to Green
    Thanks!

  • DTP yellow status

    Hi experts,
    We have a DTP that is currently in yellow status, yet when we monitor its processing it is successful (green). we have also checked the DSO and the contents are there as well. Seems the process chain ran successfully however the DTP is stuck in yellow status (in progress).
    Is there anyway to cancel or fail the process chain? its still in yellow status.
    mark

    In this scenario, you can run program to turn process chain step into green.
    To push process chains manually further, that is to convert yellow process into green - please follow these steps.
    (Assume that step 4 in process chain is yellow which you need to turn it to green)
    Execute in SE38 -> RSPC_PROCESS_FINISH
    Fill the following parameters on screen and rest all can be left blank.
    1. LOGID - you will find this when you do monitor of your process chain. Every time you run process chain, unique LOGID is created.
    2. TYPE - If step 4 is ODS activation then TYPE wud be ODSACTIVAT and if it is infopak loading TYPE wud be LOADING and if it is DTP Load TYPE wud be LOAD.
    3. VARIANT - In the process chain monitor mode, right click on step 4 -> Display Messages. Go to chain tab and there you will find VARIANT
    4. INSTANCE - In the process chain monitor mode, right click on step 4 -> Display Messages. Go to chain tab and there you will find INSTANCE
    5. STATE - Value wud be G
    After entering above parameters, click execute. It will be done in fraction of second and wont give any popup. Now when you will check process chain monitor, you will see that step 4 is green and next step has started executing.
    Abhijit
    Edited by: ABHIJIT TEMBHEKAR on Nov 18, 2008 5:16 PM

  • Yellow status does not start  j2E server0

    Hi Gurus,
    Everything was working fine until today.  SDM and dispatcher green light but server0 yellow status for about for  1 hour now and still does not start.
    Status starting framework... your help is greatly appreciated.
    defaultTrace.1.trc below:
    <!LOGHEADER[START]/>
    <!HELP[Manual modification of the header may cause parsing problem!]/>
    <!LOGGINGVERSION[1.5.3.7185 - 630]/>
    <!NAME[./log/defaultTrace.trc]/>
    <!PATTERN[defaultTrace.trc]/>
    <!FORMATTER[com.sap.tc.logging.ListFormatter]/>
    <!ENCODING[Cp1252]/>
    <!FILESET[1, 3, 10485760]/>
    <!PREVIOUSFILE[defaultTrace.0.trc]/>
    <!NEXTFILE[defaultTrace.2.trc]/>
    <!LOGHEADER[END]/>
    #1.5#00059A3C780000130000037700000A6C0004186851F664F0#1152736237546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000037900000A6C000418685205A7F4#1152736238546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000037B00000A6C000418685214EAEB#1152736239546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002300000A6C00041868521D86ED#1152736240109#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000037D00000A6C0004186852242E7E#1152736240546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000037F00000A6C00041868523370E4#1152736241546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000038100000A6C000418685242B3BF#1152736242546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002500000A6C00041868524A90A4#1152736243062#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000038300000A6C000418685251F6D9#1152736243546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000038500000A6C00041868526139D5#1152736244546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000038700000A6C0004186852707CCB#1152736245546#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002700000A6C000418685277A44B#1152736246015#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000038900000A6C0004186852802FB3#1152736246562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000038B00000A6C00041868528F3F05#1152736247562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000038D00000A6C00041868529E81E7#1152736248562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002900000A6C0004186852A4B40E#1152736248968#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000038F00000A6C0004186852ADC4E5#1152736249562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039100000A6C0004186852BD08CC#1152736250562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039300000A6C0004186852CC4B04#1152736251562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002B00000A6C0004186852D1C7F5#1152736251921#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000039500000A6C0004186852DB8DDD#1152736252562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039700000A6C0004186852EAD11D#1152736253562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039900000A6C0004186852FA1433#1152736254562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002D00000A6C0004186852FED7CD#1152736254875#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000039B00000A6C00041868530956D2#1152736255562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039D00000A6C0004186853189991#1152736256562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000039F00000A6C000418685327DE41#1152736257562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000002F00000A6C00041868532BEB8B#1152736257828#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003A100000A6C0004186853371F8B#1152736258562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003A300000A6C00041868534662B8#1152736259562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003A500000A6C000418685355A71D#1152736260562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003100000A6C00041868535AA66D#1152736260890#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003A700000A6C000418685364E8A3#1152736261562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003A900000A6C0004186853742CB4#1152736262562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003AB00000A6C0004186853836E98#1152736263562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003300000A6C000418685389636E#1152736263953#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C7800004D0000003500000A6C000418685389641F#1152736263953#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###ReadRunnable: failed to connect to server 21 times#
    #1.5#00059A3C78000013000003AD00000A6C000418685392B1E1#1152736264562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003AF00000A6C0004186853A1F4BA#1152736265562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003B100000A6C0004186853B13738#1152736266562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003700000A6C0004186853B67544#1152736266906#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003B300000A6C0004186853C07B45#1152736267562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003B500000A6C0004186853CFC170#1152736268562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003B700000A6C0004186853DF0070#1152736269562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003900000A6C0004186853E38ABE#1152736269859#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003B900000A6C0004186853EE4570#1152736270562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003BB00000A6C0004186853FD86C9#1152736271562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003BD00000A6C00041868540CC99B#1152736272562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003B00000A6C0004186854109898#1152736272812#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003BF00000A6C00041868541C0C88#1152736273562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003C100000A6C00041868542B4F6F#1152736274562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003C300000A6C00041868543A95FD#1152736275562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003D00000A6C00041868543DAAEC#1152736275765#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003C500000A6C000418685449D531#1152736276562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003C700000A6C0004186854591BCF#1152736277562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003C900000A6C0004186854685BFC#1152736278562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000003F00000A6C00041868546ABE24#1152736278718#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003CB00000A6C000418685477A230#1152736279562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003CD00000A6C000418685486E284#1152736280562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003CF00000A6C0004186854962501#1152736281562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004100000A6C000418685497D00B#1152736281671#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003D100000A6C0004186854A56798#1152736282562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003D300000A6C0004186854B4AA9C#1152736283562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003D500000A6C0004186854C3EDE9#1152736284562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004300000A6C0004186854C4E1A8#1152736284625#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003D700000A6C0004186854D330D1#1152736285562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003D900000A6C0004186854E27477#1152736286562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003DB00000A6C0004186854F1B67B#1152736287562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004500000A6C0004186854F39F30#1152736287687#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003DD00000A6C000418685500F98F#1152736288562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003DF00000A6C0004186855104D91#1152736289562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003E100000A6C00041868551F8202#1152736290562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004700000A6C0004186855225A79#1152736290750#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003E300000A6C00041868552EC25E#1152736291562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003E500000A6C00041868553E05B6#1152736292562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003E700000A6C00041868554D485C#1152736293562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004900000A6C00041868554F6BA7#1152736293703#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C7800004D0000004B00000A6C00041868554F6C57#1152736293703#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###ReadRunnable: failed to connect to server 31 times#
    #1.5#00059A3C78000013000003E900000A6C00041868555C8B5C#1152736294562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003EB00000A6C00041868556BCE69#1152736295562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003ED00000A6C00041868557B112C#1152736296562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004D00000A6C00041868557C7DA9#1152736296656#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003EF00000A6C00041868558A5436#1152736297562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003F100000A6C0004186855999723#1152736298562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003F300000A6C0004186855A8DA71#1152736299562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000004F00000A6C0004186855A98F54#1152736299609#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003F500000A6C0004186855B83230#1152736300562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003F700000A6C0004186855C75FEC#1152736301562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005100000A6C0004186855D6A15C#1152736302562#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003F900000A6C0004186855D6AB90#1152736302562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003FB00000A6C0004186855E5E61D#1152736303562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C78000013000003FD00000A6C0004186855F52B15#1152736304562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005300000A6C000418685603B31E#1152736305515#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C78000013000003FF00000A6C0004186856046BD7#1152736305562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040100000A6C000418685613AF49#1152736306562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040300000A6C000418685622F1E0#1152736307562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005500000A6C000418685630C4ED#1152736308468#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000040500000A6C00041868563234C9#1152736308562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040700000A6C00041868564177D5#1152736309562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040900000A6C000418685650BB84#1152736310562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005700000A6C00041868565DD655#1152736311421#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000040B00000A6C00041868565FFFEB#1152736311562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040D00000A6C00041868566F46AB#1152736312562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000040F00000A6C00041868567E83E1#1152736313562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005900000A6C00041868568AE813#1152736314375#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000041100000A6C00041868568DC724#1152736314562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000041300000A6C00041868569D09C1#1152736315562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000041500000A6C0004186856AC4E14#1152736316562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005B00000A6C0004186856B7FA16#1152736317328#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000041700000A6C0004186856BB8FD9#1152736317562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000041900000A6C0004186856CAD2A3#1152736318562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000041B00000A6C0004186856DA15C5#1152736319562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005D00000A6C0004186856E6B8BB#1152736320390#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C780000130000041D00000A6C0004186856E959EC#1152736320562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000041F00000A6C0004186856F8A0A5#1152736321562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C780000130000042100000A6C000418685707E177#1152736322562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800004D0000005F00000A6C00041868571574B0#1152736323453#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: failed to connect to W2VZ9YDX01/3200/Connection refused: connect)#
    #1.5#00059A3C7800004D0000006100000A6C0004186857157562#1152736323453#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###ReadRunnable: failed to connect to server 41 times#
    #1.5#00059A3C780000130000042300000A6C0004186857172471#1152736323562#com.sap.caf.eu.cc.content.svc.CCServiceFrame##com.sap.caf.eu.cc.content.svc.CCServiceFrame#######SAPEngine_System_Thread[impl:5]_23##0#0#Error#1#/System/Server#Plain###Object not found in lookup of GPService.#
    #1.5#00059A3C7800000100000001000013B00004186874253A2B#1152736811298#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###Encomi: receive failed (Connection reset): close connection#
    #1.5#00059A3C7800000100000003000013B00004186874253F3B#1152736811314#com.sap.engine.core.locking.impl3.LockingManagerImpl##com.sap.engine.core.locking.impl3.LockingManagerImpl.jenqulib#######Thread[SAPEngine_EnquReader,5,main]##0#0#Error#1#/System/Server#Plain###ReadRunnable: receive failed (Encomi: receive failed (Connection reset): close connection -1), flush pending responses#
    #1.5#00059A3C7800000200000000000013B000041868742548F7#1152736811314#com.sap.engine.core.cluster.impl6.ms.MSRawConnection##com.sap.engine.core.cluster.impl6.ms.MSRawConnection.receiveRawMessage()#######SAP J2EE Engine|MS Socket Listener##0#0#Error##Plain###java.net.SocketException: Connection reset#
    #1.5#00059A3C7800000200000001000013B00004186874254995#1152736811314#com.sap.engine.core.cluster.impl6.ms.MSRawConnection##com.sap.engine.core.cluster.impl6.ms.MSRawConnection.receiveRawMessage()#######SAP J2EE Engine|MS Socket Listener##0#0#Error##Plain###java.net.SocketException: Connection reset
         at java.net.SocketInputStream.read(SocketInputStream.java:168)
         at java.io.BufferedInputStream.fill(BufferedInputStream.java:183)
         at java.io.BufferedInputStream.read1(BufferedInputStream.java:222)
         at java.io.BufferedInputStream.read(BufferedInputStream.java:277)
         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)
    #1.5#00059A3C7800000000000016000013B00004186874A24D7C#1152736819501#com.sap.sql.jdbc.direct.DirectPreparedStatement##com.sap.sql.jdbc.direct.DirectPreparedStatement#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Database/sql/jdbc/direct#Java#com.sap.sql_0003##SQL error occurred on connection W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB: code=-708, state="08000", message="[-708] Could not send data.";
    SQL statement is "SELECT "CPATH","CID","PARENTCID","CACHEMODE","CTYPE" FROM "J2EE_CONFIG" WHERE "PATHHASH" = ?".
    [EXCEPTION]
    #6#-708#08000#[-708] Could not send data.#W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB#SELECT "CPATH","CID","PARENTCID","CACHEMODE","CTYPE" FROM "J2EE_CONFIG" WHERE "PATHHASH" = ?#com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:432)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:303)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.executeQuery(CallableStatementSapDB.java:728)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:281)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    #1.5#00059A3C7800000000000018000013B00004186874A25141#1152736819501#com.sap.engine.core.configuration##com.sap.engine.core.configuration#######Thread[Thread-1,5,main]##0#0#Fatal#1#/System/Server#Plain###Error event: com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.#
    #1.5#00059A3C780000000000001A000013B00004186874A26FA9#1152736819517#com.sap.engine.core.configuration##com.sap.engine.core.configuration#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###connectionErrorOccurred event in DBConnection.
    =======================================================
    com.sap.engine.frame.core.configuration.ConfigurationException: connectionErrorOccurred event in DBConnection.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.connectionErrorOccurred(DBConnection.java:105)
         at com.sap.sql.jdbc.direct.DirectPooledConnection.connectionErrorOccurred(DirectPooledConnection.java:557)
         at com.sap.sql.jdbc.direct.DirectConnection.analyzeSQLException(DirectConnection.java:1115)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.processSQLException(DirectPreparedStatement.java:1192)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:285)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    Caused by: com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:432)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:303)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.executeQuery(CallableStatementSapDB.java:728)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:281)
         ... 20 more
    #1.5#00059A3C780000000000001C000013B00004186874A431C1#1152736819626#com.sap.sql.jdbc.direct.DirectConnection##com.sap.sql.jdbc.direct.DirectConnection#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Database/sql/jdbc/direct#Java#com.sap.sql_0003##SQL error occurred on connection W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB: code=-708, state="08000", message="[-708] Could not send data.";
    SQL statement is "ROLLBACK".
    [EXCEPTION]
    #6#-708#08000#[-708] Could not send data.#W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB#ROLLBACK#com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.ConnectionSapDB.executeSQLString(ConnectionSapDB.java:588)
         at com.sap.dbtech.jdbc.ConnectionSapDB.rollback(ConnectionSapDB.java:828)
         at com.sap.sql.jdbc.direct.DirectConnection.rollback(DirectConnection.java:525)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.rollback(DBAccessDefault.java:1276)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.close(DBConnection.java:78)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.connectionErrorOccurred(DBConnection.java:108)
         at com.sap.sql.jdbc.direct.DirectPooledConnection.connectionErrorOccurred(DirectPooledConnection.java:557)
         at com.sap.sql.jdbc.direct.DirectConnection.analyzeSQLException(DirectConnection.java:1115)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.processSQLException(DirectPreparedStatement.java:1192)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:285)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    #1.5#00059A3C780000000000001E000013B00004186874A4498F#1152736819626#com.sap.sql.jdbc.direct.DirectConnection##com.sap.sql.jdbc.direct.DirectConnection#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Database/sql/jdbc/direct#Java#com.sap.sql_0003##SQL error occurred on connection W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB: code=-708, state="08000", message="[-708] Could not send data.";
    SQL statement is "ROLLBACK".
    [EXCEPTION]
    #6#-708#08000#[-708] Could not send data.#W2VZ9YDX01.amer.corp.eds.com:J2E:SAPJ2EDB#ROLLBACK#com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.ConnectionSapDB.executeSQLString(ConnectionSapDB.java:588)
         at com.sap.dbtech.jdbc.ConnectionSapDB.rollback(ConnectionSapDB.java:828)
         at com.sap.sql.jdbc.direct.DirectConnection.rollback(DirectConnection.java:525)
         at com.sap.sql.jdbc.direct.DirectConnection.close(DirectConnection.java:574)
         at com.sap.sql.jdbc.direct.DirectPooledConnection.close(DirectPooledConnection.java:190)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.close(DBConnection.java:84)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.connectionErrorOccurred(DBConnection.java:108)
         at com.sap.sql.jdbc.direct.DirectPooledConnection.connectionErrorOccurred(DirectPooledConnection.java:557)
         at com.sap.sql.jdbc.direct.DirectConnection.analyzeSQLException(DirectConnection.java:1115)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.processSQLException(DirectPreparedStatement.java:1192)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:285)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    #1.5#00059A3C7800000000000020000013B00004186874A7B7A1#1152736819860#com.sap.engine.core.configuration##com.sap.engine.core.configuration#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###[-708] Could not send data.
    =======================================================
    com.sap.engine.frame.core.configuration.ConfigurationException: [-708] Could not send data.
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.close(DBConnection.java:81)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.connectionErrorOccurred(DBConnection.java:108)
         at com.sap.sql.jdbc.direct.DirectPooledConnection.connectionErrorOccurred(DirectPooledConnection.java:557)
         at com.sap.sql.jdbc.direct.DirectConnection.analyzeSQLException(DirectConnection.java:1115)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.processSQLException(DirectPreparedStatement.java:1192)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:285)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    Caused by: com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.ConnectionSapDB.executeSQLString(ConnectionSapDB.java:588)
         at com.sap.dbtech.jdbc.ConnectionSapDB.rollback(ConnectionSapDB.java:828)
         at com.sap.sql.jdbc.direct.DirectConnection.rollback(DirectConnection.java:525)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.rollback(DBAccessDefault.java:1276)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBConnection.close(DBConnection.java:78)
         ... 25 more
    #1.5#00059A3C7800000000000022000013B00004186874A7BA35#1152736819860#com.sap.engine.core.configuration##com.sap.engine.core.configuration#######Thread[Thread-1,5,main]##0#0#Error#1#/System/Server#Plain###[-708] Could not send data.
    =======================================================
    com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:432)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:303)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.executeQuery(CallableStatementSapDB.java:728)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:281)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    #1.5#00059A3C7800000000000023000013B00004186874A7C130#1152736819860#System.err##System.err#######Thread[Thread-1,5,main]##0#0#Error##Plain###com.sap.engine.frame.core.configuration.ConfigurationException: Error occurred during DB access: cache_dbSpooling,
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:108)
         at com.sap.engine.core.configuration.impl.cache.CachedConfiguration.<init>(CachedConfiguration.java:62)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:848)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.getCachedConfiguration(ConfigurationCache.java:882)
         at com.sap.engine.core.configuration.impl.cache.ConfigurationCache.openConfiguration(ConfigurationCache.java:757)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:734)
         at com.sap.engine.core.configuration.impl.ConfigurationHandlerImpl.openConfiguration(ConfigurationHandlerImpl.java:693)
         at com.sap.engine.core.cache.impl.spi.storage.DBStorage.<init>(DBStorage.java:64)
         at com.sap.engine.core.cache.impl.CacheManagerImpl.init(CacheManagerImpl.java:223)
         at com.sap.engine.core.Framework.loadSingleManager(Framework.java:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         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)
    Caused by: com.sap.dbtech.jdbc.exceptions.ConnectionException: [-708] Could not send data.
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:553)
         at com.sap.dbtech.jdbc.ConnectionSapDB.execute(ConnectionSapDB.java:433)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:432)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.execute(CallableStatementSapDB.java:303)
         at com.sap.dbtech.jdbc.CallableStatementSapDB.executeQuery(CallableStatementSapDB.java:728)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:281)
         at com.sap.sql.jdbc.direct.DirectPreparedStatement.executeQuery(DirectPreparedStatement.java:248)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.DBAccessDefault.getConfiguration(DBAccessDefault.java:578)
         at com.sap.engine.core.configuration.impl.persistence.rdbms.PersistenceHandler.readConfig(PersistenceHandler.java:102)

    Thanks for everyone helps.
    I took your adviced and reinstalled the Portal but the problem still exist.
    Default.trc
    stdout/stderr redirect
    node name   : server0
    pid         : 5488
    system name : J2E
    system nr.  : 01
    started at  : Mon Jul 17 13:24:01 2006
    Reserved 1610612736 (0x60000000) bytes before loading DLLs.
    [Thr 4428] 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
    SAP J2EE Engine Version 7.00   PatchLevel is starting...
    Loading: LogManager ... 891 ms.
    Loading: PoolManager ... 0 ms.
    Loading: ApplicationThreadManager ... 282 ms.
    Loading: ThreadManager ... 93 ms.
    Loading: IpVerificationManager ... 63 ms.
    Loading: ClassLoaderManager ... 16 ms.
    Loading: ClusterManager ... 812 ms.
    Loading: LockingManager ... 750 ms.
    Loading: ConfigurationManager ... 9703 ms.
    Loading: LicensingManager ... 437 ms.
    Loading: CacheManager ... 625 ms.
    Loading: ServiceManager ...
    0.000: [GC 0.000: [DefNew: 87039K->4666K(130560K), 0.0573031 secs] 87039K->4666K(1000960K), 0.0574006 secs]
    Loading services.:
      Service memory started. (16 ms).
      Service timeout started. (16 ms).
      Service runtimeinfo started. (16 ms).
      Service cross started. (110 ms).
      Service file started. (328 ms).
      Service cafeucc~api started. (250 ms).
      Service p4 started. (500 ms).
      Service userstore started. (32 ms).
      Service jmx_notification started. (234 ms).
      Service classpath_resolver started. (625 ms).
    10.342: [GC 10.342: [DefNew: 91696K->10177K(130560K), 0.0837931 secs] 91696K->10177K(1000960K), 0.0838886 secs]
      Service log_configurator started. (11406 ms).
      Service locking started. (31 ms).
      Service naming started. (1344 ms).
      Service http started. (2234 ms).
      Service appclient started. (672 ms).
      Service failover started. (1063 ms).
      Service jmsconnector started. (1656 ms).
      Service connector started. (1813 ms).
      Service ts started. (2703 ms).
      Service licensing started. (141 ms).
      Service cafeugpmailcf started. (2719 ms).
      Service iiop started. (2984 ms).
      Service webservices started. (6141 ms).
    24.892: [GC 24.893: [DefNew: 97206K->15080K(130560K), 0.0903939 secs] 97206K->15080K(1000960K), 0.0904892 secs]
    30.016: [GC 30.017: [DefNew: 102120K->15319K(130560K), 0.0974602 secs] 102120K->15319K(1000960K), 0.0975568 secs]
      Service deploy started. (26515 ms).
      Service MigrationService started. (609 ms).
      Service bimmrdeployer started. (282 ms).
      Service configuration started. (1500 ms).
      Service dbpool started. (5297 ms).
      Service com.sap.security.core.ume.service started. (3469 ms).
    41.333: [GC 41.333: [DefNew: 102359K->19381K(130560K), 0.0968377 secs] 102359K->19381K(1000960K), 0.0969363 secs]
      Service security started. (2047 ms).
      Service classload started. (546 ms).
      Service cafeuodi~mnuacc started. (40016 ms).
      Service applocking started. (1406 ms).
      Service shell started. (1735 ms).
      Service tceCATTPingservice started. (593 ms).
      Service telnet started. (640 ms).
      Service ejb started. (4094 ms).
      Service webdynpro started. (1734 ms).
      Service servlet_jsp started. (5547 ms).
      Service cafummetadata~imp started. (484 ms).
      Service cafruntimeconnectivity~impl started. (45079 ms).
      Service developmentserver started. (4328 ms).
      Service keystore started. (3437 ms).
      Service ssl started. (156 ms).
      Service tcsecsecurestorage~service started. (594 ms).
      Service tcsecwssec~service started. (1016 ms).
      Service cafeugp~model started. (109 ms).
      Service tceujwfuiwizsvc started. (62 ms).
      Service tcsecdestinations~service started. (3453 ms).
      Service jmx started. (5938 ms).
      Service cafeuer~service started. (5656 ms).
      Service pmi started. (2297 ms).
      Service cafumrelgroups~imp started. (13563 ms).
      Service sld started. (19891 ms).
    72.521: [GC 72.521: [DefNew: 106421K->19563K(130560K), 0.1219901 secs] 106421K->19563K(1000960K), 0.1220862 secs]
      Service rfcengine started. (17047 ms).
      Service CUL started. (17563 ms).
      Service prtbridge started. (22157 ms).
      Service com.adobe~DataManagerService started. (19312 ms).
      Service basicadmin started. (19359 ms).
      Service com.adobe~LicenseService started. (672 ms).
      Service com.adobe~DocumentServicesConfiguration started. (11281 ms).
      Service adminadapter started. (15907 ms).
      Service com.adobe~DocumentServicesBinaries2 started. (15875 ms).
      Service com.adobe~DocumentServicesDestProtoService started. (15750 ms).
      Service tc.CBS.Service started. (46516 ms).
      Service com.sap.portal.pcd.gl started. (234 ms).
      Service com.adobe~TrustManagerService started. (1000 ms).
      Service com.adobe~DocumentServicesLicenseSupportService started. (18656 ms).
      Service jms_provider started. (51095 ms).
      service DQE ================= ERROR =================
    117.178: [GC 117.178: [DefNew: 106594K->23612K(130560K), 0.1458822 secs] 106594K->23612K(1000960K), 0.1459800 secs]
      Service com.adobe~FontManagerService started. (40641 ms).
      Service com.adobe~PDFManipulation started. (41500 ms).
      Service com.adobe~XMLFormService started. (10359 ms).
    ================================================================================
    getThreadDump : Mon Jul 17 13:29:34 2006
    Timed out services:
    Service com.sap.portal.prt.sapj2ee > hard reference to interface tcmonitoringapi.
    ================================================================================
    Full thread dump Java HotSpot(TM) Server VM (1.4.2_09-b05 mixed mode):
    "SAPEngine_Application_Thread[impl:3]_7" prio=5 tid=0x0b4a6ba0 nid=0xd3c in Object.wait() [9c3f000..9c3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x11342770> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationProcessor)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationProcessor.run(ServiceOperationProcessor.java:70)
         - locked <0x11342770> (a com.sap.caf.eu.gp.model.fnd.impl.ServiceOperationProcessor)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_6" prio=5 tid=0x0b4b34f0 nid=0x1478 waiting on condition [9bff000..9bffd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:87)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:59)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "SAPEngine_Application_Thread[impl:3]_5" prio=5 tid=0x0b4b3cf0 nid=0x137c waiting on condition [9bbf000..9bbfd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:87)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:59)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:124)
    "Thread-25" prio=5 tid=0x00f2f320 nid=0x3a0 waiting on condition [9b7f000..9b7fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.context.impl.UserConfigCache$ValidationThread.run(UserConfigCache.java:148)
    "Thread-24" prio=5 tid=0x0b4327e0 nid=0x1190 waiting on condition [9b3f000..9b3fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.fnd.cache.impl.ServerCacheManagerImpl$ValidationThread.run(ServerCacheManagerImpl.java:159)
    "CBS Request Orc" prio=10 tid=0x0b47fe90 nid=0x620 in Object.wait() [9aff000..9affd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f900a8> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:121)
         - locked <0x17f900a8> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS TCS-queue Reader" prio=10 tid=0x0b47fc00 nid=0xab4 waiting on condition [9abf000..9abfd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.tc.cbs.server.rt.impl.TCSQueueOrc.run(TCSQueueOrc.java:104)
         at java.lang.Thread.run(Thread.java:534)
    "CBS AccessQueue Orchestrator" prio=10 tid=0x0b4793b0 nid=0xcf8 in Object.wait() [9a7f000..9a7fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f90138> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.AccessOrc.run(AccessOrc.java:84)
         - locked <0x17f90138> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "JarmCondense" daemon prio=10 tid=0x0b486040 nid=0xc30 in Object.wait() [9a3f000..9a3fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91eb8> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.threadShouldContinue(CondenseThread.java:217)
         - locked <0x17f91eb8> (a java.lang.Object)
         at com.sap.util.monitor.jarm.CondenseThread.run(CondenseThread.java:196)
         at java.lang.Thread.run(Thread.java:534)
    "CBS BSA Orc" prio=10 tid=0x0b476160 nid=0x17e4 in Object.wait() [99ff000..99ffd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91278> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:121)
         - locked <0x17f91278> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "CBS Resource Orc" prio=10 tid=0x0b471c80 nid=0x90c in Object.wait() [99bf000..99bfd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f912c0> (a java.lang.Thread)
         at com.sap.tc.cbs.server.rt.impl.CourteousTimer.run(CourteousTimer.java:121)
         - locked <0x17f912c0> (a java.lang.Thread)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-21" prio=5 tid=0x0b442740 nid=0x608 waiting on condition [98ef000..98efd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:152)
    "Thread-20" prio=10 tid=0x0b437d40 nid=0x159c in Object.wait() [996f000..996fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91f20> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at com.sap.jmx.provider.ProviderConnectionTimer.run(ProviderConnectionTimer.java:31)
         - locked <0x17f91f20> (a com.sap.jmx.provider.ProviderConnectionTimer)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-19" prio=10 tid=0x0b435370 nid=0x1554 in Object.wait() [992f000..992fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91f38> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jmx.provider.LazyMBeanLoader.run(LazyMBeanLoader.java:133)
         - locked <0x17f91f38> (a com.sap.jmx.provider.LazyMBeanLoader)
         at java.lang.Thread.run(Thread.java:534)
    "Thread-18" prio=10 tid=0x0b42ce50 nid=0x1564 waiting on condition [98af000..98afd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.mp.base.caching.MemoryCache$ValidationThread.run(MemoryCache.java:144)
    "ConnectionSetCleaner Thread (UNMANAGED)." prio=10 tid=0x0a3ab070 nid=0x127c in Object.wait() [986f000..986fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91d38> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
         at com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner.run(ConnectionHashSet.java:682)
         - locked <0x17f91d38> (a com.sap.engine.services.connector.jca.ConnectionHashSet$ConnectionSetCleaner)
    "SAPEngine_System_Thread[impl:5]_49" prio=5 tid=0x00f742b0 nid=0xdb4 in Object.wait() [982f000..982fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_48" prio=5 tid=0x00f74590 nid=0x75c in Object.wait() [97ef000..97efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f706d0 nid=0xcd8 in Object.wait() [97af000..97afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f95600> (a java.lang.Object)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.multiThreadRun(TimeoutManagerImpl.java:483)
         - locked <0x17f95600> (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)
    "SAPEngine_System_Thread[impl:5]_46" prio=5 tid=0x00f6f510 nid=0x17ec in Object.wait() [976f000..976fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_45" prio=5 tid=0x00f6e040 nid=0x1284 in Object.wait() [972f000..972fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f95728> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x17f95728> (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)
    "SAPEngine_System_Thread[impl:5]_44" prio=5 tid=0x00f6edb0 nid=0xe24 in Object.wait() [96ef000..96efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_43" prio=5 tid=0x00f6d960 nid=0x998 in Object.wait() [96af000..96afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_42" prio=5 tid=0x00f6c600 nid=0xc2c in Object.wait() [966f000..966fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_41" prio=5 tid=0x00f6b180 nid=0x1018 in Object.wait() [962f000..962fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_40" prio=5 tid=0x00f6be90 nid=0x6d8 in Object.wait() [95ef000..95efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_39" prio=5 tid=0x00f6a9f0 nid=0x3c4 in Object.wait() [95af000..95afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f69690 nid=0xdb8 in Object.wait() [956f000..956fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=5 tid=0x00f682b0 nid=0x860 in Object.wait() [952f000..952fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f27e90 nid=0x1500 in Object.wait() [94ef000..94efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f95870> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x17f95870> (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]_35" prio=5 tid=0x00f66430 nid=0x10e8 in Object.wait() [94af000..94afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f651c0 nid=0x169c in Object.wait() [946f000..946fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f65d60 nid=0x1220 in Object.wait() [942f000..942fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f64a00 nid=0x7b8 in Object.wait() [93ef000..93efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f63550 nid=0x1204 in Object.wait() [93af000..93afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_30" prio=5 tid=0x00f62310 nid=0x600 in Object.wait() [936f000..936fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "Timeout Service Synchronous Internal Thread" prio=5 tid=0x00f62df0 nid=0x1700 in Object.wait() [932f000..932fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f95980> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.engine.services.timeout.TimeoutManagerImpl.singleThreadRun(TimeoutManagerImpl.java:589)
         - locked <0x17f95980> (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]_28" prio=5 tid=0x00f61a90 nid=0x194 in Object.wait() [92ef000..92efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f606d0 nid=0x1040 in Object.wait() [92af000..92afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f17c00 nid=0x1580 in Object.wait() [926f000..926fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=5 tid=0x00f055e0 nid=0xb64 in Object.wait() [922f000..922fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f5f450 nid=0x1688 in Object.wait() [91ef000..91efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f96258> (a com.sap.engine.services.timeout.TimeoutIntegrityWatcher)
         at com.sap.engine.services.timeout.TimeoutIntegrityWatcher.run(TimeoutIntegrityWatcher.java:69)
         - locked <0x17f96258> (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]_23" prio=5 tid=0x00f5d2f0 nid=0x9a8 in Object.wait() [91af000..91afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=5 tid=0x00f5c080 nid=0xff0 in Object.wait() [916f000..916fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_21" prio=5 tid=0x00f5cb90 nid=0xd98 in Object.wait() [912f000..912fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f963d0> (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 <0x17f963d0> (a com.sap.engine.services.log_configurator.archive.Buffer)
         at com.sap.engine.services.log_configurator.archive.ArchivingThread.run(ArchivingThread.java:34)
         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=0x00f5b920 nid=0x72c in Object.wait() [90ef000..90efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_19" prio=5 tid=0x00f5a460 nid=0x1264 in Object.wait() [90af000..90afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_18" prio=5 tid=0x00f59150 nid=0x8b8 in Object.wait() [906f000..906fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f59c60 nid=0x1588 in Object.wait() [902f000..902fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f588a0 nid=0x690 in Object.wait() [8fef000..8fefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_15" prio=5 tid=0x00f3b5a0 nid=0x12cc in Object.wait() [8faf000..8fafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_14" prio=5 tid=0x00f57690 nid=0x1750 in Object.wait() [8f6f000..8f6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f566e0 nid=0xb58 in Object.wait() [8f2f000..8f2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f99220> (a java.lang.Object)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.jms.server.destinationcontainer.AgentThreadSystem.run(AgentThreadSystem.java:148)
         - locked <0x17f99220> (a java.lang.Object)
         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=0x00f56230 nid=0xc00 in Object.wait() [8eef000..8eefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f541e0 nid=0x104c in Object.wait() [8eaf000..8eafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (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=0x00f54590 nid=0x1518 in Object.wait() [8e6f000..8e6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPJarResourceCloseTimeoutThread" daemon prio=5 tid=0x00f4f620 nid=0x15a4 in Object.wait() [8e2f000..8e2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f911e0> (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 <0x17f911e0> (a com.sap.engine.frame.core.load.res.JarThread)
    "Thread-14" daemon prio=5 tid=0x00f3ae90 nid=0x1664 in Object.wait() [8def000..8defd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f993c8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x17f993c8> (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=0x00f0f0c0 nid=0xce8 in Object.wait() [8daf000..8dafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f993f0> (a java.lang.Object)
         at com.sap.engine.cache.job.impl.BackgroundExactImpl.run(BackgroundExactImpl.java:134)
         - locked <0x17f993f0> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f00750 nid=0x15c0 in Object.wait() [8d6f000..8d6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f99458> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x17f99458> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "Background Jobs Internal Thread" daemon prio=5 tid=0x00f22d30 nid=0xe3c in Object.wait() [8d2f000..8d2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f99498> (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 <0x17f99498> (a java.lang.Object)
         at java.lang.Thread.run(Thread.java:534)
    "Timeout Service Integrity Watcher Thread" daemon prio=10 tid=0x00f1fe90 nid=0x724 in Object.wait() [8cef000..8cefd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f994e0> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at com.sap.engine.cache.job.impl.IntegrityWatcher.run(IntegrityWatcher.java:54)
         - locked <0x17f994e0> (a com.sap.engine.cache.job.impl.IntegrityWatcher)
         at java.lang.Thread.run(Thread.java:534)
    "SAPEngine_EnquReader" prio=5 tid=0x00f1cdf0 nid=0x14f4 runnable [8caf000..8cafd90]
         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 <0x17f99560> (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=0x00f1bc80 nid=0x61c waiting on condition [8c6f000..8c6fd90]
         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]_9" prio=5 tid=0x00f14e00 nid=0x7fc in Object.wait() [8c2f000..8c2fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f955a0> (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 <0x17f955a0> (a com.sap.engine.lib.util.WaitQueue)
         at com.sap.engine.core.thread.impl5.SingleThread.run(SingleThread.java:127)
    "SAPEngine_System_Thread[impl:5]_8" prio=10 tid=0x00f13a00 nid=0xb74 in Object.wait() [8bef000..8befd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f99600> (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 <0x17f99600> (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]_7" prio=5 tid=0x00f125d0 nid=0x5cc in Object.wait() [8baf000..8bafd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f996e8> (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 <0x17f996e8> (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]_6" prio=5 tid=0x00f11180 nid=0x748 in Object.wait() [8b6f000..8b6fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f997a8> (a java.lang.ref.ReferenceQueue$Lock)
         at java.lang.ref.ReferenceQueue.remove(ReferenceQueue.java:111)
         - locked <0x17f997a8> (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)
    "SAPEngine_System_Thread[impl:5]_5" prio=5 tid=0x00f11cc0 nid=0x1790 waiting on condition [8b2f000..8b2fd90]
         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)
    "OrderedChannel for service" prio=5 tid=0x00f078d0 nid=0x604 waiting on condition [8aef000..8aefd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.co.execute.impl.CallableObjectExecutorTimeoutProcessor.run(CallableObjectExecutorTimeoutProcessor.java:193)
         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 17114700" prio=5 tid=0x00ef0d20 nid=0xd70 runnable [8aaf000..8aafd90]
         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 <0x17f9a130> (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=0x00ef0e90 nid=0x13f0 runnable [8a6f000..8a6fd90]
         at java.net.PlainSocketImpl.socketAccept(Native Method)
         at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
         - locked <0x17f9a218> (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)
    "SAP J2EE Engine|MS Socket Listener" prio=5 tid=0x00f0f230 nid=0xb94 runnable [8a2f000..8a2fd90]
         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 <0x17f9abb0> (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)
    "SAP J2EE Engine|MS Queue Listener" prio=5 tid=0x00f0f7a0 nid=0x1504 in Object.wait() [89ef000..89efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f9af48> (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 <0x17f9af48> (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]_ThreadManager Maintaining thread." prio=10 tid=0x00f0fe10 nid=0xb70 in Object.wait() [89af000..89afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f91ce0> (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 <0x17f91ce0> (a com.sap.engine.core.thread.impl5.ExecutorThread)
    "SAPEngine_Application_Thread[impl:3]_ThreadManager Maintaining thread." prio=10 tid=0x00f0c010 nid=0xbc8 in Object.wait() [896f000..896fd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x17f90180> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
         at com.sap.engine.core.thread.impl3.RuntimeMaintainingThread.run(RuntimeMaintainingThread.java:65)
         - locked <0x17f90180> (a com.sap.engine.core.thread.impl3.RuntimeMaintainingThread)
    "SAPEngine_Application_Thread[impl:3]_4" prio=5 tid=0x00f0c370 nid=0x11bc waiting on condition [892f000..892fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.model.pfw.notification.NotificationQueueProcessor.run(NotificationQueueProcessor.java:352)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    "SAPEngine_Application_Thread[impl:3]_3" prio=5 tid=0x00f0c9f0 nid=0x16d0 in Object.wait() [88ef000..88efd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x10058488> (a com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor.run(BackGroundActionProcessor.java:121)
         - locked <0x10058488> (a com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    "SAPEngine_Application_Thread[impl:3]_2" prio=5 tid=0x00f0a030 nid=0x1628 in Object.wait() [88af000..88afd90]
         at java.lang.Object.wait(Native Method)
         - waiting on <0x1005b0d8> (a com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor)
         at java.lang.Object.wait(Object.java:429)
         at com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor.run(BackGroundActionProcessor.java:121)
         - locked <0x1005b0d8> (a com.sap.caf.eu.gp.model.pfw.wfc.local.impl.BackGroundActionProcessor)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    "SAPEngine_Application_Thread[impl:3]_1" prio=5 tid=0x00f0a2d0 nid=0xf24 waiting on condition [886f000..886fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.work(ScheduleWorker.java:87)
         at com.sap.caf.eu.gp.schedule.impl.ScheduleWorker.run(ScheduleWorker.java:59)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    "SAPEngine_Application_Thread[impl:3]_0" prio=5 tid=0x00f0a440 nid=0x1248 waiting on condition [882f000..882fd90]
         at java.lang.Thread.sleep(Native Method)
         at com.sap.caf.eu.gp.mail.cf.core.multithreading.TimerTask.run(TimerTask.java:41)
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
         at java.security.AccessController.doPrivileged(Native Method)
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    "Thread-1" prio=5 tid=0x00eea010 nid=0xf1c runnable [79df000..79dfd90]
         at com.sap.bc.proj.jstartup.JStartupFramework.nativeGetThreadDump(Native Method)
         at com.sap.bc.proj.jstartup.JStartupFramework.getThreadDump(JStartupFramework.java:507)
         at com.sap.engine.frame.ProcessEnvironment.sfGetThreadDump(ProcessEnvironment.java:95)
         at com.sap.engine.frame.ProcessEnvironment.getThreadDump(ProcessEnvironment.java:89)
         at com.sap.engine.core.service630.container.MemoryContainer.startServices(MemoryContainer.java:226)
         - locked <0x17f9b0f8> (a com.sap.engine.core.service630.container.MemoryContainer)
         at com.sap.engine.core.service630.container.MemoryContainer.start(MemoryContainer.java:156)
         - locked <0x17f9b180> (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:556)
         at com.sap.engine.core.Framework.loadManagers(Framework.java:251)
         at com.sap.engine.core.Framework.start(Framework.java:185)
         - locked <0x17f9b0b8> (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=0x00ee2cd0 nid=0x11b0 waiting on condition [0..0]
    "JDWP Event Helper Thread" daemon prio=5 tid=0x00ee0480 nid=0x10f0 runnable [0..0]

  • PSA request is in yellow status

    Hi
    We got the problem when loading the 2LIS_03_BF data into cube. We have around 4 cubes and 2 ods.
    The data got loaded into all the cubes and ods except on Cube. There was a problem of table space and now it is solved.
    Now the request is in yellow status in PSA. It cube it shows no of records added and transferred but the status is in red color.
    How can i upload the delta data into the cube from PSA when PSA request is in yellow color.
    I feel strange that when the request is in yellow color how come the data is loaded into all other cubes.
    REgards
    Annie

    You should be able to load request from PSA to data target using the option available in PSA. When you manage on Datasource, you see all requests. You can select that PSA request and use Scheduler option in that screen to update that particular request.  It will run infopackage as usual. It will execute all the routines if there are any in update rules.
    When you say you have some programs running in process chain, they must be after this failed load right?
    If that is the case, all you need to do is push process chain further. Below are steps to push process chain further if you any step is stuck in yellow or if mually carry out any red step in process chain. In you case, load that failed step manually using scheduler form PSA manage tab and then push PC further using these steps. That will continue PC further and run any programs that run after load.
    Execute in SE38 -> RSPC_PROCESS_FINISH
    Fill the following parameters on screen and rest all can be left blank.
    1. LOGID - you will find this when you do monitor of your process chain. Every time you run process chain, unique LOGID is created.
    2. TYPE - If step is ODS activation then TYPE wud be ODSACTIVAT and if it is infopak loading TYPE wud be LOADING and if it is DTP Load TYPE wud be LOAD. In your case it will be LOADING.
    3. VARIANT - In the process chain monitor mode, right click on step which you executed manually -> Display Messages. Go to chain tab and there you will find VARIANT
    4. INSTANCE - In the process chain monitor mode, right click on step which you executed manually -> Display Messages. Go to chain tab and there you will find INSTANCE
    5. STATE - Value wud be G
    After entering above parameters, click execute. It will be done in fraction of second and wont give any popup. Now when you will check process chain monitor, you will see that step 4 is green and next step has started executing.
    Abhijit

  • BDOC BUS_TRANS_MSG is in yellow status.

    Hi all,
    When I am creating a sales order in CRM system the order is getting replicated in R/3 system but the BDOC is still in Yellow status.
    When I am trying to use the TA /nVA02 and give the order number it is giving the error message "Sales document XXXXXXX is currently being processed (by user RFCUSER)".
    When I am reprocessing the BDOC it is giving the error "Inconsistent update flags" which is technically correct and the status is in Green.
    Can some one pls help me why the BDOC is not completly process in the first time itself. Why R/3 is not sending confirmation to the CRM system.
    Thanks in advance.
    Best regards,
    Vikash.

    Hi Michael,
    Thanks for your reply. I checked all three points mentioned by you.
    - There is no entry in transaction SM12 (lockings) on the R/3 side.
    - There is nothing in the inbound/outbound queues on CRM or on R/3.
    - There is no dumps in transaction ST22 (CRM or R/3).
    Still the BDOCs are in yellow status. Kindly suggest how to resolve this issue.
    Best regards,
    Vikash.

Maybe you are looking for

  • Filed Business Area is required for G/L account, for posting key 21

    Dear All when i did Miro , i didnt assign business area, now i am doing reversal for the same document. G/l account is Reconciliation A/C for vendor.i have check field status which is set for optional. Regard Nabil

  • ITunes Match failure on Windows 7 64-bit

    Ever since I have installed the latest update of iTunes 10.6.1 on my computer about ten days ago, iTunes Match will come on and try to synchronize my library to the iCloud.  As soon as it reaches step 3 to upload remaining tracks to the iCloud, iTune

  • Connecting together a Siemens router/modem and linksys E2500

    Hi: Unfortunately, I'm not good with this stuff but I think I can learn ... I have a Siemens Gigaset SE567, which was set-up by my IP. I'm using its Modem via the #1 Ethernet port to my desktop. It broadcasts wifi but I got tired of paying $10 p/m fo

  • Creation Application System

    I installed Designer & createrd repository without any problems but when I tried to run designer I did not see any application system and when I tried to create new I got error could not find PL/SQL module. What shoul I do?

  • Nokia Messaging Plan cancelled

    Hi, I have set up Nokia messaging with my former E63. Some month ago I got my new E72. When I set up mail it said that I already have an account that I can use. So did I. Now I got an automatically generated mail that said my old phone is used by som