Accordion Plugin Released

""I may receive some form of compensation, financial or otherwise, from my recommendation or link.""
nothing - moderators, please delete this post! i should have not posted it!!!!
http://accordion.guimkie.com
max

Hello,
looking to your source code I can't find an equivalent to this (from ...responsive):
<div id="horizontalTab">
<ul>
<li><a href="#tab-1">Responsive Tab-1</a></li>
<li><a href="#tab-2">Responsive Tab-2</a></li>
<li><a href="#tab-3">Responsive Tab-3</a></li>
</ul>
<div id="tab-1">
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eu scelerisque eros. Fusce ante orci, hendrerit sit amet metus sit amet, venenatis sodales felis. Morbi vel mi in leo dignissim convallis in a neque. Suspendisse sollicitudin nibh non dapibus condimentum. Etiam sit amet arcu ultricies, porttitor justo eget, scelerisque urna. Praesent non ligula nec ligula euismod condimentum eget sed augue. Ut feugiat, turpis id sollicitudin vestibulum, tellus massa adipiscing nisl, quis cursus nisl arcu vel ipsum.</p>
</div>
Only by using these div id's it will work.
Hans-Günter

Similar Messages

  • Accordion Plugin works well

    My accordion plugin works well now.But while viewing in the tablet or mobile view, when i click my navigation , the first tab of the accordion tab looks like this
    What could i do?Please help...
    My link : http://bhc.edu.in/commerce/StaffProfiles.php

    Google Chrome comes with its own version of the Flash Player plugin.
    Your system details list doesn't show that the Shockwave Flash plugin is installed and enabled.
    You can find the latest Flash player versions for Firefox on this page.
    *http://www.adobe.com/special/products/flashplayer/fp_distribution3.html

  • Looking for a good accordion plugin

    Hi,
    Is there a good and natural sounding accordion plugin for Logic Pro ?
    I can't find any in Logic.
    thanks

    Motu Ethnic instrument has some pretty good ones too.
    Make sure you use a controller for volume as the
    authenticity of an Accordion sound is as much in it's
    extremes of mid note dynamics as the sample itself.
    But the option I would advise you would be to get a
    real one! You can pick up a usable accordion for
    about $100 and there dead easy to play (provided you
    just use the right hand) when purchasing check that
    the bladder has no leaks by drawing in or pushing out
    air without pressing a note (i.e. you shouldn't be
    able to). You'll have to pay a bit more for a MIDI
    accordion though (sorry bad joke).
    Stick a condensor or even a dynamic (if you don't
    want key noise) in front of the sound holes (say half
    a foot away) and I guarantee you'll beat anything you
    have to try and program even if you're inexperienced.
    The problem with that advice Christian, respectfully, is that there are accordions and there are accordions.
    A regular accordion sounds very different from a musette, concertina, and as I recently discovered on a film I scored last year a bayon.
    So if you need a variety of them that is not a solution.

  • Responsive accordion  plugin - Responsive tabs

    I tried the plugin using the instructions from the website
    http://www.jqueryscript.net/layout/Lightweight-jQuery-Responsive-Tabs-Accordion-Plugin-Res ponsive-Tabs.html
    Now also it doesn't work.
    Here is my site link
    http://bhc.edu.in/commerce/StaffProfiles.php
    Please help me.
    Thanks in advance.

    Hello,
    looking to your source code I can't find an equivalent to this (from ...responsive):
    <div id="horizontalTab">
    <ul>
    <li><a href="#tab-1">Responsive Tab-1</a></li>
    <li><a href="#tab-2">Responsive Tab-2</a></li>
    <li><a href="#tab-3">Responsive Tab-3</a></li>
    </ul>
    <div id="tab-1">
    <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Fusce eu scelerisque eros. Fusce ante orci, hendrerit sit amet metus sit amet, venenatis sodales felis. Morbi vel mi in leo dignissim convallis in a neque. Suspendisse sollicitudin nibh non dapibus condimentum. Etiam sit amet arcu ultricies, porttitor justo eget, scelerisque urna. Praesent non ligula nec ligula euismod condimentum eget sed augue. Ut feugiat, turpis id sollicitudin vestibulum, tellus massa adipiscing nisl, quis cursus nisl arcu vel ipsum.</p>
    </div>
    Only by using these div id's it will work.
    Hans-Günter

  • ANN: LR/Mogrify plugin released.  Alamy users rejoice!

    Hi,
    Frustrated by Alamy's 48Mb image size requirement, and the fact that Lightroom's export feature can't automatically resize images by the minimum amount necessary to guaranty that the requirement is met, I've written a plugin to solve the problem and improve my workflow.
    The plugin applies ImageMagick's mogrify command to exported images. ImageMagick is a set of powerful, freeware command line utilities for Mac or PC.
    Although my motivations were very specific, this plugin could be used by anyone who needs to further post process images using mogrify, and I've therefore decided to release it free of charge. The plugin currently allows the user to resize images using a choice of resizing algorithm and reconvert the resulting image to another format. Users can also enter their own command line parameters to control all the other aspects of mogrify.
    I'm willing to improve the plugin to expose other mogrify features via the user interface if enough interest is shown.
    It's been tested on Mac. It should work on PC but I can't test it - feedback's appreciated.
    You can download it here: http://www.timothyarmes.com/lrmogrify.php
    Regards,
    Tim

    [email protected] schrieb:
    > You can download it here:
    Hi.
    Doesn't work for me on Windows. Calls to LrTasks.execute() in
    LRMogrifyExportTask.lua fail. I spent quite some time on it. Quotation
    of file paths really introduces trouble. Seems there is some problem
    with quotation mark matching. If you use only one pair of them,
    everything is fine. When there are multiple pairs, things get quite
    strange...
    For example, these command strings are supposed to work:
    c:/somepath/someexecutable c:/anotherpath/file
    "c:/some path/someexecutable" c:/anotherpath/file
    c:/somepath/someexecutable "c:/another path/file"
    If I quote both paths, blanks in the first path don't get escaped. Even
    worse, I don't know of any other way to escape blanks here than use
    quotation marks. Something like "\ " -- no chance(?). I even had a look
    at the lua.org source code. Their os.execute() is mapped to ISO/ANSI C's
    system() call. No idea what LrTasks.execute() does.
    My suggested work-around would be like this, as LR at least allows use
    of native file system calls:
    -- LRMogrifyExportTask.lua --
    -- Run Mogrify
    local command = '"' .. opts.path .. '" ' .. commandLine
    -- added
    local realCommand = command
    if WIN_ENV == true then
    -- default folder on Windows is user dir -> good
    local batchFileName = "lr_mogrify_runner.bat"
    io.output(batchFileName)
    io.write(command .. '\n')
    io.close()
    realCommand = '"' .. batchFileName .. '"'
    end
    -- /added
    -- changed
    if LrTasks.execute(realCommand) ~= 0 then
    -- /changed
    Herb

  • ANN: WS Utilities (new plugin) released

    Hi,
    We've just released a new plugin called West Street Utilities which currently adds a host of new features for graphics management. These features include the ability to compare graphics in a file system against your FM source files, to see what is used and where. For more information, see:
    http://www.weststreetconsulting.com/WSC_Utils.htm
    Unlike our other plugins, this one is not structure-oriented and can be used on any FM 7, 8, or 9 file.
    Thanks,
    Russ Ward
    Owner, WSC

    [email protected] schrieb:
    > You can download it here:
    Hi.
    Doesn't work for me on Windows. Calls to LrTasks.execute() in
    LRMogrifyExportTask.lua fail. I spent quite some time on it. Quotation
    of file paths really introduces trouble. Seems there is some problem
    with quotation mark matching. If you use only one pair of them,
    everything is fine. When there are multiple pairs, things get quite
    strange...
    For example, these command strings are supposed to work:
    c:/somepath/someexecutable c:/anotherpath/file
    "c:/some path/someexecutable" c:/anotherpath/file
    c:/somepath/someexecutable "c:/another path/file"
    If I quote both paths, blanks in the first path don't get escaped. Even
    worse, I don't know of any other way to escape blanks here than use
    quotation marks. Something like "\ " -- no chance(?). I even had a look
    at the lua.org source code. Their os.execute() is mapped to ISO/ANSI C's
    system() call. No idea what LrTasks.execute() does.
    My suggested work-around would be like this, as LR at least allows use
    of native file system calls:
    -- LRMogrifyExportTask.lua --
    -- Run Mogrify
    local command = '"' .. opts.path .. '" ' .. commandLine
    -- added
    local realCommand = command
    if WIN_ENV == true then
    -- default folder on Windows is user dir -> good
    local batchFileName = "lr_mogrify_runner.bat"
    io.output(batchFileName)
    io.write(command .. '\n')
    io.close()
    realCommand = '"' .. batchFileName .. '"'
    end
    -- /added
    -- changed
    if LrTasks.execute(realCommand) ~= 0 then
    -- /changed
    Herb

  • SQL Server Plugin - Remote Connections to Monitor Targets

    Hi,
    We have OEM 10.2.0.4.0 on MS Windows Server 2003 Service Pack 1. Trying to configure SQL Server Plugin Release 6 (microsoft_sqlserver_database version 3.2.3.1.0). No issues monitoring SQL Server 2005 SP2 installed on same box the Grid. Next test - monitoring SQL Server 2005 SP2 installed on a remote box H2UA62218F7.ad2.prod, tcpip port 4334. On "Add Microsoft SQL Server" screen:
    Add Microsoft SQL Server
    Properties
    * Name
    Type Microsoft SQL Server
    Name                                                          Value
    JDBC URL (Example : jdbc:sqlserver://<host>:<port>)           jdbs:sqlserver://H2UA62218F7.ad2.prod:4334
    JDBC Driver (Optional)                                        com.microsoft.sqlserver.jdbc.SQLServerDriver
    Database Username                                             sa
    Password of Database User                                     sa_password
    System Username (Needed when SQLServer is at remote location) domain_user_with_admin_privs_to_sql_server_box
    System Password (Needed when SQLServer is at remote location) domain_user_password
    Role (Optional)
    The following errors are returned when testing connection:
    MSSQLInstance_TestMetric_DynamicProperty - Failed to connect, reason : No suitable driver
    MSSQLExistence_TestMetric - Missing Properties : [STDINWBEM_HOST,servername_from_jdbc]
    OSType_TargetHost_DynamicProperty - Missing Properties : [STDINWBEM_HOST] <br>
    <br>
    Event Viewer on remote box does not show any login attempts. I am confused why it can not find same jdbs driver it finds to monitor local SQL Server 2005 instance? It should look in same %Agent_Home%\sysman\config\classpath.lst and should see same entry C:\OracleHomes\agent10g\sysman\jdbcdriver\sqljdbc_1.2\enu\sqljdbc.jar. Any thoughts?
    <br>
    <br>
    Thanks,
    <br>
    <br>
    SY.

    Metric "Space Available %" in Metric and Policy Setting page has default warning threshold of 20% and critical threshold of 10%. You can change this, as required.

  • OSB Eclipse Plugins - and Helios SR1?

    I am currently trying to setup a development environmen for Oracle Service Bus 11g with Eclipse.
    On the first run I have successfully installed WLS11gR1, OEPE (as shipped with WLS - Gallileo) and OSB 11gR1. That works fine.
    Now I have tried to setup Helios by creating a link file to the OSB plugins. This works fine on the first look to,
    p2 doesn't complain when picking up the OSB plugins. If I start eclipse also can see the OSB perspective, edit proxy services etc.
    However, some functions (as e.g adding a wl instance in wtp) don't work any more and throw weired exceptions in metadata\.log.
    Googling these exceptions have pointed me to another post [1] where people say that the current (11gR1) set of OSB plugins can not be used with helios, but only with galileo.
    However, if this is true the advice given in another post [2] (installing a set of older plugins first, then upgrade) will not work. I would have loved to try that anyway,
    but I can't find the old download any more.
    However, could you please help me with these questions:
    1) Has somebody Eclipse 3.6.1 with OEPE and OSB plugins up and properly running? Or can you confirm the incompatibility?
    2) If so, do you know in which OSB plugins release Helios SR1 will be supported?
    Thanks and regards
    Karsten
    [1] Re: WLST not found?
    [2] OSB 11gR1 install doesn't recognize oepe-helios-all-in-one-11.1.1.6.1.20101

    I just came across this same problem yesterday.
    using Ubuntu 9.10 and Oracle Workshop bundle. I couldn't create a new project or anything else...
    I'm just finishing downloading OSB for Windows and gonna try it from here.
    I'm hoping it will work here!! otherwise I'm screwed! :s
    cheers!

  • ST22 short dump with error DFIF_REPO_SQL_ERROR

    HI, All
    SAP ERP 2004s on windows 2003x64 with SQLserver database.
    Here is ST22 and dev_w0
    20.03.2014                                      Dynamic List Display                                              1
    Runtime Error
    |Date      |Time    |Host      |User  |Client|Keep|Name of runtime error|Exception|Appl. component|Report|No. Sess|
    |20.03.2014|08:48:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    |20.03.2014|08:18:44|clusterx64|SAPSYS|000  |C  |DBIF_REPO_SQL_ERROR  |        |              |      |1      |
    D:\usr\sap\PRD\DVEBMGS00\work\dev_w0
    trc file: "dev_w0", trc level: 1, release: "640"
    *  ACTIVE TRACE LEVEL          1
    *  ACTIVE TRACE COMPONENTS      all, M
    B
    B Mon Mar 17 13:26:13 2014
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll' is "640.00", patchlevel (0.405)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid  562 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    414
    M intno      20020600
    M make:      multithreaded, Unicode, 64 bit
    M pid        4544
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 4544) [dpxxdisp.c  1227]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm) 58560 (1464)
    M  DpShMCreate: sizeof(tm_adm) 38387184 (19184)
    M  DpShMCreate: sizeof(wp_ca_adm) 24000 (80)
    M  DpShMCreate: sizeof(appc_ca_adm) 8000 (80)
    M  DpShMCreate: sizeof(comm_adm) 1248000 (624)
    M  DpShMCreate: sizeof(vmc_adm) 0 (512)
    M  DpShMCreate: sizeof(wall_adm) (400056/346328/64/192)
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 000000000B9B0050, size: 40479544)
    M  DpShMCreate: allocated sys_adm at 000000000B9B0050
    M  DpShMCreate: allocated wp_adm at 000000000B9B1C30
    M  DpShMCreate: allocated tm_adm_list at 000000000B9C00F0
    M  DpShMCreate: allocated tm_adm at 000000000B9C0118
    M  DpShMCreate: allocated wp_ca_adm at 000000000DE5BF08
    M  DpShMCreate: allocated appc_ca_adm at 000000000DE61CC8
    M  DpShMCreate: allocated comm_adm_list at 000000000DE63C08
    M  DpShMCreate: allocated comm_adm at 000000000DE63C20
    M  DpShMCreate: allocated vmc_adm_list at 000000000DF94720
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000000DF94748
    M  DpShMCreate: allocated wall_adm at 000000000DF947B8
    M  DpRqQInit: Parameter rdisp/queue_lock_level = 2
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  tskhstart: taskhandler started
    M  tskh_init: initializing DIA work process W0
    M  tskh_init: rdisp/cleanup_after_crash = 1
    M
    M Mon Mar 17 13:26:15 2014
    M  calling db_connect ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:16 2014
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C
    C Mon Mar 17 13:26:22 2014
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    M  db_connect o.k.
    M  ICT: exclude compression: *.zip,*.cs,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.js,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png
    I
    I Mon Mar 17 13:26:26 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000016320050, size: 41613000)
    M  SHM_ROLL_AREA (addr: 000007FFC4050050, size: 268435456)
    M  SHM_PAGING_AREA (addr: 0000000018AD0050, size: 134217728)
    M  SHM_ROLL_ADM (addr: 0000000020AE0050, size: 2678942)
    M  SHM_PAGING_ADM (addr: 0000000020D70050, size: 787488)
    M  ThCreateNoBuffer allocated 544152 bytes for 1000 entries at 0000000020E40050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateNoBuffer: correct_btc_behaviour = 1
    M  ThCreateVBAdm allocated 12176 bytes (50 server) at 0000000020ED0050
    X  EmInit: MmSetImplementation( 2 ).
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 0000000020F700D8, size: 584)
    B  dbntab: Buffer FTAB(anchor array) (addr: 0000000020F70320, size: 6240232)
    B  dbntab: Buffer FTAB(item array)  (addr: 0000000021563B08, size: 24960000)
    B  dbntab: Buffer FTAB(data area)    (addr: 0000000022D31708, size: 128000000)
    B  dbntab: Buffer IREC(hash header)  (addr: 000000002A7500D8, size: 584)
    B  dbntab: Buffer IREC(anchor array) (addr: 000000002A750320, size: 6240232)
    B  dbntab: Buffer IREC(item array)  (addr: 000000002AD43B08, size: 6240000)
    B  dbntab: Buffer IREC(data area)    (addr: 000000002B337208, size: 13312000)
    B  dbntab: Buffer STAB(hash header)  (addr: 000000002BFF00D8, size: 584)
    B  dbntab: Buffer STAB(anchor array) (addr: 000000002BFF0320, size: 6240232)
    B  dbntab: Buffer STAB(item array)  (addr: 000000002C5E3B08, size: 6240000)
    B  dbntab: Buffer STAB(data area)    (addr: 000000002CBD7208, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 00000000350400D8, size: 4744)
    B  dbntab: Buffer TTAB(anchor array) (addr: 0000000035041360, size: 6240232)
    B  dbntab: Buffer TTAB(item array)  (addr: 0000000035634B48, size: 15600000)
    B  dbntab: Buffer TTAB(data area)    (addr: 00000000365154C8, size: 113880000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 40, CON_ID = -1
    B  dbstat: TABSTAT buffer attached (addr: 000000002CEEEA58)
    B  dbtbxbuf: Buffer TABL  (addr: 000000003D1C0150, size: 263640000, end: 000000004CD2D510)
    B  dbtbxbuf: Buffer TABLP (addr: 000000002E780150, size: 61440000, end: 0000000032218150)
    B  dbexpbuf: Buffer EIBUF (addr: 000000004CD30158, size: 122880000, end: 0000000054260158)
    B  dbexpbuf: Buffer ESM  (addr: 0000000032230158, size: 4194304, end: 0000000032630158)
    B  dbexpbuf: Buffer CUA  (addr: 0000000054270158, size: 30720000, end: 0000000055FBC158)
    B  dbexpbuf: Buffer OTR  (addr: 0000000032640158, size: 4194304, end: 0000000032A40158)
    B  dbcalbuf: Buffer CALE  (addr: 0000000032A50050, size: 500000, end: 0000000032ACA170)
    M  rdisp/reinitialize_code_page -> 0
    M  icm/accept_remote_trace_level -> 0
    M  rdisp/no_hooks_for_sqlbreak -> 0
    M  rdisp/hold_keeps_time_slice -> 0
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0000000010E29190
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  3 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)  = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 00000000331C00C0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 00000000331C0C58
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A
    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  System page size: 4kb, total admin_size: 50852kb, dir_size: 25348kb.
    A  Attached to PXA (address 000007FFD4080050, size 720000K, 2 fragments of 334576K )
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------
    A
    A  ABAP ShmAdm attached (addr=000007FF26F71000 leng=20955136 end=000007FF2836D000)
    A  >> Shm MMADM area (addr=000007FF2741D070 leng=246976 end=000007FF27459530)
    A  >> Shm MMDAT area (addr=000007FF2745A000 leng=15806464 end=000007FF2836D000)
    A  RFC Destination> destination clusterx64_PRD_00 host clusterx64 system PRD systnr 0 (clusterx64_PRD_00)
    A  RFC Options> H=clusterx64,S=00,d=2
    A  RFC FRFC> fallback activ but this is not a central instance.
    A  
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC abap/SIGCHILD_default not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects allocated 83148 bytes at 0000000033330050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    360000
    Y    ztta/diag_ara  250000
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\PRD\DVEBMGS00\sec): ok
    N
    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\PRD\SYS\exe\run\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:640.00]):
    B    max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B    min_blocking_factor =  5,  min_in_blocking_factor      =  10,
    B    prefer_union_all    =  1,  prefer_union_for_select_all =  0,
    B    prefer_fix_blocking =  0,  prefer_in_itab_opt          =  0,
    B    convert AVG        =  1,  alias table FUPD            =  0,
    B    escape_as_literal  =  0,  opt GE LE to BETWEEN        =  0,
    B    select *            =0x00,  character encoding          = STD / []:X,
    B    use_hints          = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                          rule_fae->0, concat_fae->0, concat_fae_or->0,
    B    join_conforms_iso  =  1
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 640, [6400.0.414.20020600]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [29]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume clusterx64_PRD_00
    E  Profile-Parameter: enque/sync_dequeall = 0
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.
    S
    S Mon Mar 17 13:26:31 2014
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    S  server @>SSRV:clusterx64_PRD_00@< appears or changes (state 1)
    B
    B Mon Mar 17 13:26:34 2014
    B  table logging switched off for all clients
    N
    N Mon Mar 17 13:26:44 2014
    N  login/password_change_for_SSO : 1 -> 1
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 0000000005990050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 00000000059907B8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 00000000059907F0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 00000000059907FC
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    D
    D Mon Mar 17 13:26:51 2014
    D  GuiStatus: table test
    D  GuiStatus set generate inline  >20140317132651<
    D  GuiStatus clear generate inline  >20140317132651<
    B
    B Mon Mar 17 13:27:00 2014
    B  dbmyclu : info : my major identification is 3232240218, minor one 0.
    B  dbmyclu : info : Time Reference is 1.12.2001 00:00:00h GMT.
    B  dbmyclu : info : my uuid is C8157D392BFA064AAC992593949203BE.
    B  dbmyclu : info : current optimistic cluster level: 3
    B  dbmyclu : info : pessimistic reads set to 2.
    G
    G Mon Mar 17 13:27:03 2014
    G  GetWritePermissionForShm( pLocation = 283, pEnforce = 0 )
    G
    G Mon Mar 17 13:27:04 2014
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M  ThEMsgArrived: sysmsg_for_rfc = 0
    G
    G Mon Mar 17 13:27:18 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    A
    A Mon Mar 17 13:31:19 2014
    A  ***ATRA: session closed by other process
    D
    D Mon Mar 17 13:35:06 2014
    D  GuiStatus generation SAPLSUU5 is not running
    Y  go to separate LUW generation ===> 20140317133506
    Y    GuiStatus generate texts: SAPLSUU5 M
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    G
    G Mon Mar 17 13:35:16 2014
    G  GetWritePermissionForShm( pLocation = 281, pEnforce = 0 )
    G  RelWritePermissionForShm( pLocation = 277, pEnforce = 0 )
    M
    M Mon Mar 17 13:40:02 2014
    M  ThIUsrDel: th_rollback_usrdelentry = 1
    A
    A Mon Mar 17 13:44:07 2014
    A  ***ATRA: session closed by other process
    B
    B Mon Mar 17 13:46:35 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 1 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 1 opened (DBSL handle 1)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000001 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    S
    S Mon Mar 17 13:51:33 2014
    S  found spool memory service RSPO-ACTIONS at 00000000331C9090
    D
    D Mon Mar 17 14:05:56 2014
    D  GuiStatus generation RSSTAT26 is not running
    Y  go to separate LUW generation ===> 20140317140556
    Y    GuiStatus generate: RSSTAT26 SELECT            
    Y
    Y Mon Mar 17 14:05:57 2014
    Y  return from separate LUW <=== WP: 2 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140557
    Y    GuiStatus generate texts: RSSTAT26 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    D
    D Mon Mar 17 14:06:11 2014
    D  GuiStatus generation RSSTAT50 is not running
    Y  go to separate LUW generation ===> 20140317140611
    Y    GuiStatus generate: RSSTAT50 0010              
    Y
    Y Mon Mar 17 14:06:12 2014
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y  go to separate LUW generation ===> 20140317140612
    Y    GuiStatus generate texts: RSSTAT50 E
    Y  return from separate LUW <=== WP: 1 th_rc=0 OK
    Y
    Y Mon Mar 17 14:07:10 2014
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: SAPMSRD0 MAIN_NEW          
    D  GuiStatus generate status prog >SAPMSRD0< status >MAIN_NEW<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y  ===> running separate LUW generation: 20140317140710
    Y    ===> requesting WP: 1
    Y    GuiStatus generate texts: SAPMSRD0 E
    D  GuiStatus generate texts prog >SAPMSRD0<  >20140317140710<
    D  GuiStatus set generate inline  >20140317140710<
    D  GuiStatus clear generate inline  >20140317140710<
    Y
    Y Mon Mar 17 14:23:12 2014
    Y
    Y  ===> running separate LUW generation: 20140317142312
    Y    ===> requesting WP: 1
    Y    GuiStatus generate: RSMSSDBPAHI 0100              
    D  GuiStatus generate status prog >RSMSSDBPAHI< status >0100<  >20140317142312<
    D  GuiStatus set generate inline  >20140317142312<
    D  GuiStatus clear generate inline  >20140317142312<
    B
    B Mon Mar 17 14:31:34 2014
    B  create_con (con_name=++DBO++0020)
    B  New connection 2 created
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      YES NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000016 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000017 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 143134 SAPPRDX64                  
    B
    B Mon Mar 17 14:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,17,2}
    B
    B Mon Mar 17 15:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000030 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000031 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 153136 SAPPRDX64                  
    B
    B Mon Mar 17 15:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,31,2}
    B
    B Mon Mar 17 16:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Mon Mar 17 16:31:37 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000044 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000045 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 163136 SAPPRDX64                  
    B
    B Mon Mar 17 16:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,45,2}
    B
    B Mon Mar 17 17:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000058 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000059 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 173136 SAPPRDX64                  
    B
    B Mon Mar 17 17:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,59,2}
    B
    B Mon Mar 17 18:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000072 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000073 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 183136 SAPPRDX64                  
    B
    B Mon Mar 17 18:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,73,2}
    B
    B Mon Mar 17 19:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000086 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000087 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 193136 SAPPRDX64                  
    B
    B Mon Mar 17 19:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,87,2}
    B
    B Mon Mar 17 20:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000100 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000101 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 203136 SAPPRDX64                  
    B
    B Mon Mar 17 20:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,101,2}
    B
    B Mon Mar 17 21:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000116 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000117 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 213136 SAPPRDX64                  
    B
    B Mon Mar 17 21:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,117,2}
    B
    B Mon Mar 17 22:31:37 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000130 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000131 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 223137 SAPPRDX64                  
    B
    B Mon Mar 17 22:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,131,2}
    B
    B Mon Mar 17 23:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000144 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000145 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140317 233136 SAPPRDX64                  
    B
    B Mon Mar 17 23:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,145,2}
    M
    M Tue Mar 18 00:01:33 2014
    M  SecAudit(check_daily_file): audit file closed D:\usr\sap\PRD\DVEBMGS00\log\20140317000001.AUD
    M  SecAudit(check_daily_file): audit file opened D:\usr\sap\PRD\DVEBMGS00\log\20140318000001.AUD
    B
    B Tue Mar 18 00:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000158 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000159 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 003136 SAPPRDX64                  
    B
    B Tue Mar 18 00:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,159,2}
    B
    B Tue Mar 18 01:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000172 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000173 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 013136 SAPPRDX64                  
    B
    B Tue Mar 18 01:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,173,2}
    B
    B Tue Mar 18 02:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000186 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000187 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 023136 SAPPRDX64                  
    B
    B Tue Mar 18 02:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,187,2}
    B
    B Tue Mar 18 03:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000200 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000201 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 033136 SAPPRDX64                  
    B
    B Tue Mar 18 03:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,201,2}
    B
    B Tue Mar 18 04:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000214 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000215 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 043136 SAPPRDX64                  
    B
    B Tue Mar 18 04:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,215,2}
    B
    B Tue Mar 18 05:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000230 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000231 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 053136 SAPPRDX64                  
    B
    B Tue Mar 18 05:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,231,2}
    B
    B Tue Mar 18 06:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000244 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000245 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 063136 SAPPRDX64                  
    B
    B Tue Mar 18 06:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,245,2}
    B
    B Tue Mar 18 07:31:36 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000258 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000259 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 073136 SAPPRDX64                  
    B
    B Tue Mar 18 07:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,259,2}
    B
    B Tue Mar 18 08:31:41 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140317 132615 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000272 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 083141 SAPPRDX64                  
    B
    B Tue Mar 18 08:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,273,2}
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F9FG0332RSEUMODut01i1o211ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1128862
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F9FG0332RSEUMODut01i1o211ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table RSEUMOD    [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  *** ERROR => missing return code handler
    abdebug#?[17989] does not handle return code 1 from dbcrtab#6[1596]
    ==> calling sap_dext to abort transaction
    [dbeh.c      84]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  RpcExec: line 12553. hr: 0x80004005 Communication link failure
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), Communication link failure
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  sloledb.cpp [RpcExec,line 12553]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  RpcExec failed.  HR 80004005 DBSL retcode 99. proc: [Y3R40000001F1CN2138T100ut01i3o4ns]
    C  Conn_i:1 selection:1 singleton:1 flag_fupd:0 use_cursor:0 chksum:1112522
    C  DbSlRead - Error 99 (dbcode 10054) on open
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  DbSlRead - Error 99 (dbcode 10054) on fetch
    C  DbSlRead - <Y3R40000001F1CN2138T100ut01i3o4ns>
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  ***LOG BY4=> sql error 10054  performing SEL on table T100      [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    B  ***LOG BY0=> [10054] TCP Provider: An existing connection was forcibly closed by the remote host.
    [10054] Communication link failure [dbtrtab#5 @ 3988] [dbtrtab 3988 ]
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(0) failed with dbcode 10054
    C  TestConnection: line 7344. hr: 0x80004005 Unable to open a logical session
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), Unable to open a logical session
    C  Procname: [TestConnection - no proc]
    C  sloledb.cpp [TestConnection,line 7344]: Error/Message: (err 10054, sev 0), TCP Provider: An existing connection was forcibly closed by the remote host.
    C  Procname: [TestConnection - no proc]
    C  Rollback: TestConnection(1) failed with dbcode 10054
    C  SET_EC p->msgno 10054 p->severity 0
    C  dbca_p->errclass set to DBSL_EC_RESTART
    B  ***LOG BYM=> severe DB error 10054    ; work process in reconnect status [dbsh#4 @ 1127] [dbsh    1127 ]
    B  Reconnect state is entered by connection:
    B  000: name = R/3, con_id = 000000000, state = ACTIVE      , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  hdl_error_on_commit_rollback: DB-ROLLBACK detected RECONNECT state
    M  ThShortCommit: db unusable
    B  RECONNECT: rsdb/reco_trials: 3
    B  RECONNECT: rsdb/reco_sleep_time: 5
    B  RECONNECT: rsdb/reco_sync_all_server: OFF
    B  db_con_reconnect: reconnecting to connection 0:
    B  000: name = R/3, con_id = 000000000, state = INACTIVE    , tx = NO , hc = NO , perm = YES,
    B      reco = YES, frco = NO , timeout = 000, con_max = 255, con_opt = 255, occ = NO
    B  disconnecting from connection 0 ...
    B  disconnected from connection 0
    B  opening connection 0 ...
    C  Thread ID:3128
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\PRD\SYS\exe\run\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  CopyLocalParameters: dbuser is 'prd'
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Provider Release:9.00.4035.00
    C  Using Provider SQLNCLI
    C  OpenOledbConnection: MARS property was set successfully.
    C  Cache sizes: header 104 bytes, 20000 names (32960000 bytes), 1000 dynamic statements (5752000 bytes), total 38712104 bytes
    C  Using shared procedure name cache SAPPRDX64_PRDPRD_PRD_MEM initialized by another process.
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: prd
    C  pn_id:SAPPRDX64_PRDPRD_PRD
    C  Using MARS (on sql 9.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000279 INACTIVE    NO  NO  NO  NO  NO  003 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000273 DISCONNECTED NO  NO  NO  NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  successfully reconnected to connection 0
    B  ***LOG BYY=> work process left reconnect status [dblink#6 @ 732] [dblink  0732 ]
    B
    B Tue Mar 18 09:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C
    C Tue Mar 18 09:31:36 2014
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000286 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000287 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 093135 SAPPRDX64                  
    B
    B Tue Mar 18 09:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,287,2}
    B
    B Tue Mar 18 10:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO  NO  000 255 255 20140318 085133 SAPPRDX64                  
    B  000 001 ++DBO++0020                    000000300 ACTIVE      YES NO  NO  NO  NO  004 255 255 20140317 134635 SAPPRDX64                  
    B  000 002 ++DBO++0020                    000000301 ACTIVE      NO  NO  NO  NO  NO  004 255 255 20140318 103135 SAPPRDX64                  
    B
    B Tue Mar 18 10:51:33 2014
    B  Disconnected from connection con_da={++DBO++0020,301,2}
    B
    B Tue Mar 18 11:31:35 2014
    B  Connect to ++DBO++0020 as  with MSSQL_SERVER=SAPPRDX64 MSSQL_DBNAME=PRD OBJECT_SOURCE=prd
    C  Thread ID:3128
    C  dbmssslib.dll patch info
    C    patchlevel  0
    C    patchno      405
    C    patchcomment Poor performance with isolation level read committed (1721164)
    C  Network connection used from SAPPRD2X64 to SAPPRDX64 using tcp:SAPPRDX64
    C  Connected to db server : [SAPPRDX64] server_used : [tcp:SAPPRDX64], dbname: PRD, dbuser: dbo
    C  pn_id:SAPPRDX64_PRD_PRD
    B  Connection 2 opened (DBSL handle 2)
    B  Wp  Hdl ConName                        ConId    ConState    TX  HC  PRM RCT FRC TIM MAX OPT Date    Time  DBHost                      
    B  000 000 R/3                            000000000 ACTIVE      NO  NO  YES NO 

    Hi All,
    We need to activate 0SR_DEFCUR currency object. I have activated the object and transported. Issue is resolved.
    Thanks to all for your kind replied.
    Regards,
    Don

  • Error in Starting Dispatcher

    When i start my Dispatcher i am getting the following error and it is in Yellow colour. Pls help me in this
    trc file: "dev_disp", trc level: 1, release: "700"
    sysno      01
    sid        BW7
    systemid   560 (PC with Windows NT)
    relno      7000
    patchlevel 0
    patchno    75
    intno      20050900
    make:      multithreaded, Unicode, optimized
    pid        5144
    Mon Apr 23 13:25:45 2007
    kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    length of sys_adm_ext is 572 bytes
    SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (01 5144) [dpxxdisp.c   1237]
         shared lib "dw_xml.dll" version 75 successfully loaded
         shared lib "dw_xtc.dll" version 75 successfully loaded
         shared lib "dw_stl.dll" version 75 successfully loaded
         shared lib "dw_gui.dll" version 75 successfully loaded
         shared lib "dw_mdm.dll" version 75 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3901
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: start server >blrkecesbibw_BW7_01                     <
    DpShMCreate: sizeof(wp_adm)          22528     (1408)
    DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    DpShMCreate: sizeof(comm_adm)          528064     (1048)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm)          0     (72)
    DpShMCreate: sizeof(vmc_adm)          0     (1440)
    DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    DpShMCreate: sizeof(gw_adm)     48
    DpShMCreate: SHM_DP_ADM_KEY          (addr: 07080040, size: 4657592)
    DpShMCreate: allocated sys_adm at 07080040
    DpShMCreate: allocated wp_adm at 07081E40
    DpShMCreate: allocated tm_adm_list at 07087640
    DpShMCreate: allocated tm_adm at 07087670
    DpShMCreate: allocated wp_ca_adm at 07456910
    DpShMCreate: allocated appc_ca_adm at 0745C6D0
    DpShMCreate: allocated comm_adm at 0745E610
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 074DF4D0
    DpShMCreate: allocated gw_adm at 074DF510
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated ca_info at 074DF540
    DpShMCreate: allocated wall_adm at 074DF548
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> InitFreeList
    <ES> block size is 1024 kByte.
    Using implementation flat
    <EsNT> Memory Reset disabled as NT default
    <ES> 2047 blocks reserved for free list.
    ES initialized.
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 8188
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1629
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 3.0 3.0 4.0.1) [dpxxdisp.c   1623]
    ***LOG Q0K=> DpMsAttach, mscon ( blrkecesbibw) [dpxxdisp.c   11586]
    DpStartStopMsg: send start message (myname is >blrkecesbibw_BW7_01                     <)
    DpStartStopMsg: start msg sent
    CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    CCMS: Initalizing shared memory of size 60000000 for monitoring segment.
    CCMS: start to initalize 3.X shared alert area (first segment).
    DpMsgAdmin: Set release to 7000, patchlevel 0
    MBUF state PREPARED
    MBUF component UP
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1050]
    DpMsgAdmin: Set patchno for this platform to 75
    Release check o.K.
    Mon Apr 23 13:25:48 2007
    MBUF state ACTIVE
    DpModState: change server state from STARTING to ACTIVE
    Mon Apr 23 13:26:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:26:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3764
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1713
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:27:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:27:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 5504
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1719
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:27:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:28:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6008
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1730
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:28:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:28:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 1900
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1735
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:29:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:29:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7468
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1741
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:29:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:30:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 8000
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1750
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:30:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:30:45 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 7668
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1757
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:31:05 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:31:25 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 3868
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1764
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:31:45 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN
    Mon Apr 23 13:32:05 2007
    J2EE server info
      start = TRUE
      state = STARTED
      pid = 6640
      argv[0] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[1] = D:\usr\sap\BW7\DVEBMGS01\exe\jcontrol.EXE
      argv[2] = pf=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[3] = -DSAPSTART=1
      argv[4] = -DCONNECT_PORT=1773
      argv[5] = -DSAPSYSTEM=01
      argv[6] = -DSAPSYSTEMNAME=BW7
      argv[7] = -DSAPMYNAME=blrkecesbibw_BW7_01
      argv[8] = -DSAPPROFILE=D:\usr\sap\BW7\SYS\profile\BW7_DVEBMGS01_blrkecesbibw
      argv[9] = -DFRFC_FALLBACK=ON
      argv[10] = -DFRFC_FALLBACK_HOST=localhost
      start_lazy = 0
      start_control = SAP J2EE startup framework
    DpJ2eeStart: j2ee state = STARTED
    Mon Apr 23 13:32:25 2007
    DpJ2eeEmergencyShutdown: j2ee state = SHUTDOWN

    the following is teh Dev_wo trace file
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Mon Apr 23 13:51:31 2007
    B  create_con (con_name=R/3)
    B  Loading DB library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' ...
    B  Library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' loaded
    B  Version of 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll' is "700.08", patchlevel (0.72)
    B  New connection 0 created
    M sysno      01
    M sid        BW7
    M systemid   560 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    75
    M intno      20050900
    M make:      multithreaded, Unicode, optimized
    M pid        3012
    M
    M  kernel runs with dp version 217000(ext=109000) (@(#) DPLIB-INT-VERSION-217000-UC)
    M  length of sys_adm_ext is 572 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 3012) [dpxxdisp.c   1299]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active

    M Mon Apr 23 13:51:32 2007
    M  DpShMCreate: sizeof(wp_adm)          22528     (1408)
    M  DpShMCreate: sizeof(tm_adm)          3994272     (19872)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/8/528056/528064
    M  DpShMCreate: sizeof(comm_adm)          528064     (1048)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1440)
    M  DpShMCreate: sizeof(wall_adm)          (38456/34360/64/184)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 07880040, size: 4657592)
    M  DpShMCreate: allocated sys_adm at 07880040
    M  DpShMCreate: allocated wp_adm at 07881E40
    M  DpShMCreate: allocated tm_adm_list at 07887640
    M  DpShMCreate: allocated tm_adm at 07887670
    M  DpShMCreate: allocated wp_ca_adm at 07C56910
    M  DpShMCreate: allocated appc_ca_adm at 07C5C6D0
    M  DpShMCreate: allocated comm_adm at 07C5E610
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 07CDF4D0
    M  DpShMCreate: allocated gw_adm at 07CDF510
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 07CDF540
    M  DpShMCreate: allocated wall_adm at 07CDF548
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    M  ThInit: running on host blrkecesbibw

    M Mon Apr 23 13:51:33 2007
    M  calling db_connect ...
    C  Thread ID:5412
    C  Thank You for using the SLOLEDB-interface
    C  Using dynamic link library 'D:\usr\sap\BW7\DVEBMGS01\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    patchlevel   0
    C    patchno      72
    C    patchcomment MSSQL: Thread check in DbSlDisconnect (969143)
    C  np:(local) connection used on BLRKECESBIBW
    C  CopyLocalParameters: dbuser is 'bw7'
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  OpenOledbConnection: MARS property was not set.
    C  Provider Release:08.10.1830
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    C  Cache sizes: header 68 bytes, 20000 names (31520000 bytes), 500 dynamic statements (2844000 bytes), total 34364068 bytes
    C  Using shared procedure name cache BLRKECESBIBW_BW7BW7_BW7_MEM initialized by another process.
    C  Connected to db server : [BLRKECESBIBW] server_used : [np:(local)], dbname: BW7, dbuser: bw7
    C  pn_id:BLRKECESBIBW_BW7BW7_BW7
    C  Not using MARS (on sql 8.0)
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20070423 135133 BLRKECESBIBW   
    C  The IRow interface is supported by this OLEDB provider
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Mon Apr 23 13:51:35 2007
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0CD00040, size: 4400000)
    M  SHM_ROLL_AREA          (addr: A2110040, size: 143360000)
    M  SHM_PAGING_AREA          (addr: 103F0040, size: 65536000)
    M  SHM_ROLL_ADM               (addr: 0D140040, size: 1432040)
    M  SHM_PAGING_ADM          (addr: 0D2A0040, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0D330040
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12160 bytes (50 server) at 0D3C0040
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation flat
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 16, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 154200C8, size: 30000000, end: 170BC448)
    B  dbtbxbuf: Buffer TABLP (addr: 170C00C8, size: 10240000, end: 17A840C8)
    B  dbexpbuf: Buffer EIBUF (addr: 17A900D0, size: 4194304, end: 17E900D0)
    B  dbexpbuf: Buffer ESM   (addr: 17EA00D0, size: 4194304, end: 182A00D0)
    B  dbexpbuf: Buffer CUA   (addr: 0FC200D0, size: 3072000, end: 0FF0E0D0)
    B  dbexpbuf: Buffer OTR   (addr: 182B00D0, size: 4194304, end: 186B00D0)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    C  Provider SQLNCLI could not be initialized. See note #734034 for more information.
    C  Using provider SQLOLEDB instead.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 05C427B0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 1C7200A8
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 1C7204F0
    S    using messages for server info
    S  size of spec char cache entry: 297028 bytes (timeout 100 sec)
    S  size of open spool request entry: 2132 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Fragment Size too small: 21 MB, reducing # of fragments
    A  System page size: 4kb, total admin_size: 11740kb, dir_size: 11676kb.
    A  Attached to PXA (address AA9E0040, size 350000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=5731C000 leng=20955136 end=58718000)
    A  >> Shm MMADM area (addr=57791EB8 leng=126176 end=577B0B98)
    A  >> Shm MMDAT area (addr=577B1000 leng=16150528 end=58718000)
    A  RFC Destination> destination blrkecesbibw_BW7_01 host blrkecesbibw system BW7 systnr 1 (blrkecesbibw_BW7_01)
    A  RFC Options> H=blrkecesbibw,S=01,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 16892 bytes at 0FF90040
    N  SsfSapSecin: putenv(SECUDIR=D:\usr\sap\BW7\DVEBMGS01\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is D:\usr\sap\BW7\DVEBMGS01\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...sucessfully completed.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [MSSQL:700.08]):
    B     max_blocking_factor =  50,  max_in_blocking_factor      = 255,
    B     min_blocking_factor =   5,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          = STD / []:X,
    B     use_hints           = abap->1, dbif->0x1, upto->0, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.75.20050900]
    W    ITS Plugin: Int.version, [32]
    W    ITS Plugin: Feature set: [10]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    S Mon Apr 23 13:51:36 2007
    S  server @>SSRV:blrkecesbibw_BW7_01@< appears or changes (state 1)
    C  The IRow interface is supported by this OLEDB provider

    M Mon Apr 23 13:51:37 2007
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 06060040
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 060607A8
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 060607E0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 060607EC

    B Mon Apr 23 13:51:51 2007
    B  table logging switched off for all clients

    S Mon Apr 23 13:56:51 2007
    S  found spool memory service RSPO-ACTIONS at 1C729BB8

  • Sap-nw:3300 not reached error in gateway

    Dear experts,
    I am facing a strange problem after a successful installation of netweaver Java+abap.
    when i start the server i found this error
    **** ERROR file opened at 20100131 114242 Arab Standard T, SAP-REL 700,0,113 RFC-VER 3 911150 MT-SL
    T:2844 Error in program 'igsmux': ======> CPIC-CALL: 'SAP_CMNOREGTP'
    LOCATION    CPIC (TCP/IP) on local host
    ERROR       partner 'sap-nw:3300' not reached
    TIME        Sun Jan 31 11:42:42 2010
    RELEASE     700
    COMPONENT   NI (network interface)
    VERSION     38
    RC          -10
    MODULE      nixxi.cpp
    LINE        2770
    DETAIL      NiPConnect2
    SYSTEM CALL connect
    ERRNO       10061
    ERRNO TEXT  WSAECONNREFUSED: Connection refused
    COUNTER     1
    i ignore the error and i tried to login
    after successful login to the portal server when i access the user administration tab. the explorer show
    SAP WebAS Engine is starting...
    If this state does not change within a few minutes,
    please contact your system administrator.
    Check the recommendations in SAP Notes: 943498, 764417
    Message: Dispatcher running but no server connected!
    and the server turns to yellow again when it turns to green again
    i checked dev_rd
    Sun Jan 31 13:11:15 2010
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 9 / sock 268
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1205) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 6 / sock 304
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1148) [nixxi.cpp    4424]
    ***LOG S23=> GwIDisconnectClient, client disconnected (006) [gwxxrd.c     11592]
    ***LOG S74=> GwIDisconnectClient, client disconnected ( sap-nw) [gwxxrd.c     11603]
    ***LOG S0R=> GwIDisconnectClient, client disconnected () [gwxxrd.c     11638]
    ***LOG S0I=> GwIDisconnectClient, client disconnected ( jlaunch) [gwxxrd.c     11651]
    *  LOCATION    SAP-Gateway on host sap-nw / sapgw00
    *  ERROR       connection to partner 'sap-nw:1148' broken
    *  TIME        Sun Jan 31 13:11:15 2010
    *  RELEASE     700
    *  COMPONENT   NI (network interface)
    *  VERSION     38
    *  RC          -6
    *  MODULE      nixxi.cpp
    *  LINE        4424
    *  DETAIL      NiIRead
    *  SYSTEM CALL recv
    *  ERRNO       10054
    *  ERRNO TEXT  WSAECONNRESET: Connection reset by peer
    *  COUNTER     232
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 10 / sock 256
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1206) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 11 / sock 244
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1208) [nixxi.cpp    4424]
    ***LOG Q0I=> NiIRead: recv (10054: WSAECONNRESET: Connection reset by peer) [nixxi.cpp 4424]
    *** ERROR => NiIRead: SiRecv failed for hdl 12 / sock 232
        (SI_ECONN_BROKEN/10054; I4; ST; 127.0.0.1:1207) [nixxi.cpp    4424]
    then i try to login again with the browser it give me
    Portal Runtime Error
    An exception occurred while processing your request
    Exception id: 01:27_31/01/10_6192950
    See the details for the exception ID in the log file.
    any help would be appreciated
    <br>
    i also wanted to add that telnet 3300 works fine ping to host name is ok
    my os win2003 sap 2004s sr3
    Edited by: ebrahime on Jan 31, 2010 11:37 AM

    thanks for your reply. i wanted to add 2 thing after the installation the password i entered in installation was not working  for all the super users that is why i had to delete SAP* from database and change the j2ee_Admin password.
    you mentioned that the java stack is unable to communicate with abap stack but i can login to portal by j2ee_admin user. but when i go to identity management then it give the error i gave you earlier.
    any way the dev_w0 file contents is bellow
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ

    B Tue Feb 02 10:23:01 2010
    B  create_con (con_name=R/3)
    B  Loading DB library 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' ...
    B  Library 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' loaded
    B  Version of 'F:\usr\sap\ENP\DVEBMGS00\exe\dbdb6slib.dll' is "700.08", patchlevel (0.144)
    C  DbSl trace SM50: switch request to level 1
    B  New connection 0 created
    M sysno      00
    M sid        ENP
    M systemid   562 (PC with Windows NT)
    M relno      7000
    M patchlevel 0
    M patchno    144
    M intno      20050900
    M make:      multithreaded, Unicode, 64 bit, optimized
    M pid        1604
    M
    M  kernel runs with dp version 232000(ext=109000) (@(#) DPLIB-INT-VERSION-232000-UC)
    M  length of sys_adm_ext is 576 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1604) [dpxxdisp.c   1305]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpShMCreate: sizeof(wp_adm)          25168     (1480)
    M  DpShMCreate: sizeof(tm_adm)          5652128     (28120)
    M  DpShMCreate: sizeof(wp_ca_adm)          24000     (80)
    M  DpShMCreate: sizeof(appc_ca_adm)     8000     (80)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/552064/552080
    M  DpShMCreate: sizeof(comm_adm)          552080     (1088)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm)          0     (104)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm)          0     (72)
    M  DpShMCreate: sizeof(vmc_adm)          0     (1864)
    M  DpShMCreate: sizeof(wall_adm)          (41664/36752/64/192)
    M  DpShMCreate: sizeof(gw_adm)     48
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 0000000010E70050, size: 6348592)
    M  DpShMCreate: allocated sys_adm at 0000000010E70050
    M  DpShMCreate: allocated wp_adm at 0000000010E72150
    M  DpShMCreate: allocated tm_adm_list at 0000000010E783A0
    M  DpShMCreate: allocated tm_adm at 0000000010E78400
    M  DpShMCreate: allocated wp_ca_adm at 00000000113DC2A0
    M  DpShMCreate: allocated appc_ca_adm at 00000000113E2060
    M  DpShMCreate: allocated comm_adm at 00000000113E3FA0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 000000001146AC30
    M  DpShMCreate: allocated gw_adm at 000000001146ACB0
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 000000001146ACE0
    M  DpShMCreate: allocated wall_adm at 000000001146ACF0
    M  ThTaskStatus: rdisp/reset_online_during_debug 0
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.

    M Tue Feb 02 10:23:02 2010
    M  ThInit: running on host ENP

    M Tue Feb 02 10:23:03 2010
    M  calling db_connect ...
    C  Registering callback for dynamic profile parameters
    C  DB2 library successfully loaded DB2 library 'F:\usr\sap\ENP\DVEBMGS00\exe/db6_clidriver\bin\db2app64.dll' successfully loaded

    C  DB6 (DB2 UDB) UNICODE database interface 700.08 [opt]

    C  DB6 shared library (dbdb6slib) patchlevels
    C    (0.8) DB6: V8.2.2 optguidelines in OPEN SQL (note 150037)
    C    (0.8) Support of SDBUPDEXCL (note 847616)
    C    (0.9) DB6: use export file for dbdb6slib (note 835135)
    C    (0.9) DB6: Core in getAndBindSQLDA (note 833183)
    C    (0.10) DB6: link dbdb6slib.dll on windows with libdb6.obj (note 761159)
    C    (0.10) DB6: DUPLICATE_KEY on MERGE -> repeat (note 851474)
    C    (0.15) DB6: wrong CAST for short string ABAP type (note 861905)
    C    (0.17) DB6: special characters in sidadm passwd (note 865839)
    C    (0.21) DB6: no SAP_INFO comments (note 873889)
    C    (0.22) DB6: hints: get correlation names from view texts (note 868888)
    C    (0.23) DB6: hints: get correlation names from view texts (note 868888)
    C    (0.26) DB6: DB6_DBSL_CLP_COMMAND STRING_BAD_REF (note 883402)
    C    (0.27) DB6: activate value compression (note 886231)
    C    (0.28) DB6: optimization guidelines on views part 2 (note 868888)
    C    (0.30) DB6: no SQL trace for SQLCancel (note 892111)
    C    (0.33) DB6: append SAP_TA comment (note 873889)
    C    (0.34) DB6: activate value compression with quoted names (note 886231)
    C    (0.36) DB6: Repeat isolated DDL statements after SQL0911 (note 901338)
    C    (0.41) DB6: add V9 to list of supported DB2 releases (note 912386)
    C    (0.50) DB6: reread passwords for secondary connections (note 931742)
    C    (0.52) DB6: double quote table names in optguidelines (note 868888)
    C    (0.54) DB6: error handling in DBSL CLP (note 940260)
    C    (0.69) DB6: technical support of DB2 CLI driver (note 962892)
    C    (0.73) DB6: log table name on TRUNCATE failure (note 970743)
    C    (0.79) DB6: column type XML in index size calculation (note 982993)
    C    (0.82) DB6: CAST for SSTRING data types (note 989568)
    C    (0.86) DB6: long runtimes for R3szchk (note 1000847)
    C    (0.88) DB6: patch collection Dec 06 (note 1005574)
    C    (0.96) DB6: patch collection Jan 07 (note 1017852)
    C    (0.97) DB6: CLP commands with DB2 CLI Driver (note 1024102)
    C    (0.99) DB6: SUBSTITUTE VALUES with FAE statements (note 1028779)
    C    (0.107) DB6: patch collection Apr 07 (note 1047194)
    C    (0.110) DB6: SAP user names ending with non-ASCII char (note 1054555)
    C    (0.113) DB6: work process type in application snapshot (note 1059905)
    C    (0.114) DB6: connect using SAPDBHOST and DB2DB6_SVCENAME (note 1062049)
    C    (0.117) DB6: patch for execution of long DDL statements (note 1069658)
    C    (0.122) DB6: SNAPSHOT_TBS_CFG table function is deprecated (note 1077963)
    C    (0.123) DB6: CLP commands on Windows with V9.1 (note 1080149)
    C    (0.124) DB6: Set DB2CODEPAGE=819 for non-Unicode (note 1084400)
    C    (0.126) DB6: reuse optguidelines on FAE statements (note 1087375)
    C    (0.126) DB6: Enforce DB2CODEPAGE=819 for non-Unicode environments (note 1084400)
    C    (0.128) DB6: db6_free on invalid memory area (note 1092030)
    C    (0.133) DB6: statement cache enhancements (note 1101031)
    C    (0.136) DB6: change for enhancement pack installer (note 1111536)
    C    (0.138) DB6: improoved table size estimate for DB8 V8 (note 1119934)
    C    (0.144) I5/OS ldappasswd support for 5250 terminal. (note 1129573)
    C    (0.144) MSSQL: ODBC fastload on separate connection (note 1131805)

    C  Supported features:

    C  ..retrieving configuration parameters
    C  ..done
    C  Running with UTF-8 Unicode

    C Tue Feb 02 10:23:04 2010
    C  Running with CLI driver
    C  DB2 client driver version '09.01.0007'
    C  Connected to DB2 server type 'DB2/NT64'
    C  Connected to DB2 version '09.01.0007'
    C  Connect to 'ENP' as 'SAPENP' schema 'SAPENP' o.k.; con_hdl=0
    C  Database code page is ok.
    C  Database collating sequence is ok.
    C  DB2_WORKLOAD=SAP is set in DB2 registry as required.
    C  CLI Insert Buffering is disabled on single partition databases.
    C  DbSl trace SM50: switch request to level 1
    C  DbSlControl: returning SAPDBHOST='ENP'
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20100202 102303 ENP            
    C  DbSlControl: returning SAPDBHOST='ENP'
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif

    I Tue Feb 02 10:23:05 2010
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 0000000015400050, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 000007FFDDA80050, size: 268435456)
    M  SHM_PAGING_AREA          (addr: 0000000015840050, size: 134217728)
    M  SHM_ROLL_ADM               (addr: 000000001D850050, size: 2678942)
    M  SHM_PAGING_ADM          (addr: 000000001DAE0050, size: 525344)
    M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 000000001DB70050
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 12176 bytes (50 server) at 000000000AE50050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 17, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0000000021540160, size: 30000000, end: 00000000231DC4E0)
    B  dbtbxbuf: Buffer TABLP (addr: 00000000231E0160, size: 10240000, end: 0000000023BA4160)
    B  dbexpbuf: Buffer EIBUF (addr: 0000000023BC0170, size: 4194304, end: 0000000023FC0170)
    B  dbexpbuf: Buffer ESM   (addr: 0000000023FD0170, size: 4194304, end: 00000000243D0170)
    B  dbexpbuf: Buffer CUA   (addr: 00000000243E0170, size: 3072000, end: 00000000246CE170)
    B  dbexpbuf: Buffer OTR   (addr: 00000000246D0170, size: 4194304, end: 0000000024AD0170)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 00000000128BEA10
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 000000002DDF00D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 000000002DDF0610
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2272 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 11460kb, dir_size: 11392kb.
    A  Attached to PXA (address 000007FFEDAB0050, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=000007FF35ED5000 leng=20955136 end=000007FF372D1000)
    A  >> Shm MMADM area (addr=000007FF363AEF10 leng=244096 end=000007FF363EA890)
    A  >> Shm MMDAT area (addr=000007FF363EB000 leng=15622144 end=000007FF372D1000)
    A  RFC Destination> destination ENP_ENP_00 host ENP system ENP systnr 0 (ENP_ENP_00)
    A  RFC Options> H=ENP,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 35354 bytes at 000000002DF60050
    N  SsfSapSecin: putenv(SECUDIR=F:\usr\sap\ENP\DVEBMGS00\sec): ok

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is F:\usr\sap\ENP\DVEBMGS00\exe\sapsecu.dll .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .
    N  ===...completed with return code 5.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [DB6:700.08]):
    B     max_blocking_factor =  30,  max_in_blocking_factor      =  60,
    B     min_blocking_factor =   1,  min_in_blocking_factor      =   1,
    B     prefer_union_all    =   1,  prefer_join                 =   1,
    B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   0,
    B     convert AVG         =   1,  alias table FUPD            =   0,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x0f,  character encoding          = STD / <none>:-,
    B     use_hints           = abap->1, dbif->0x3, upto->2147483647, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 700, [7000.0.144.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [16]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0
    E  Enqueue Info: rdisp/wp_no_enq=1, rdisp/enqname=<empty>, assume ENP_ENP_00
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.

    M Tue Feb 02 10:23:06 2010
    M  SecAudit(RsauShmInit): WP attached to existing shared memory.
    M  SecAudit(RsauShmInit): addr of SCSA........... = 000000000A960050
    M  SecAudit(RsauShmInit): addr of RSAUSHM........ = 000000000A9607C0
    M  SecAudit(RsauShmInit): addr of RSAUSLOTINFO... = 000000000A960800
    M  SecAudit(RsauShmInit): addr of RSAUSLOTS...... = 000000000A96080C

    M Tue Feb 02 10:23:28 2010
    M  rdisp/rb_cleaned_rfc = 0

    A Tue Feb 02 10:23:34 2010
    A  RFC FRFC> fallback on the central gateway ENP sapgw00 activ

  • Print process deadlock

    Hi All,
    <br/>
    <br/>We are now facing some problems on our smartform printing programs, sometimes some of the smartform programs look getting stuck, from SM50, the processing time is endless, and from the detailed tracing log, there are repeated messages like below for every ONE MINUTE:
    <br/>I  WARNING: MtxLock 0x70000000636197c rrol0046 owner=33 deadlock ?
    <br/>
    <br/>I've searched the forum and also did google and SAP notes but can not get useful information match with my error, so could anyone please help to analyse what exact cause of this problem? Any suggestions is highly appreciated.
    <br/>
    <br/>The smartform program itself is simple and correct, just has one header and several items and uses normal SSF_FUNCTION_MODULE_NAME and CALL FNAME to do the print work, in most of time it works correct, but sometimes it just has problem and then the deadlock error occurred. I guess maybe it's because user tried to print too fast than the capability of the printer and then user canceled the job, then in some situations, the upcoming printing jobs get blocked and then get stuck, but it's just a guess, i've no proof to identify it.
    <br/>
    <br/>Here I attached the full trace log, hope someone could give me a idea, thank you very much!
    <br/>
    <br/>----
    <br/>trc file: "dev_w38", trc level: 1, release: "701"
    <br/>----
    <br/>M Thu Dec  9 14:03:55 2010
    <br/>M  db_connect o.k.
    <br/>M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip
    <br/>I  MtxInit: 38 0 0
    <br/>M  SHM_PRES_BUF               (addr: 0x700001050000000, size: 44000000)
    <br/>M  SHM_ROLL_AREA          (addr: 0x700001060000000, size: 536870912)
    <br/>M  SHM_PAGING_AREA          (addr: 0x700001080000000, size: 536870912)
    <br/>M  SHM_ROLL_ADM               (addr: 0x700000006221000, size: 5506336)
    <br/>M  SHM_PAGING_ADM          (addr: 0x7000010a0000000, size: 1311776)
    <br/>M  ThCreateNoBuffer          allocated 544152 bytes for 1000 entries at 0x7000010b0002000
    <br/>M  ThCreateNoBuffer          index size: 3000 elems
    <br/>M  ThCreateVBAdm          allocated 11776 bytes (50 server) at 0x7000010d0000000
    <br/>X  EmInit: MmSetImplementation( 2 ).
    <br/>X  MM global diagnostic options set: 0
    <br/>X  EM/TOTAL_SIZE_MB = 262144
    <br/>X  mm.dump: set maximum dump mem to 96 MB
    <br/>M  Deactivate statistics hyper index locking
    <br/>I  *** INFO  Shm 44 in Pool 40    18928 KB estimated     14500 KB real (   -4427 KB    -24 %)
    <br/>I  *** INFO  Shm 45 in Pool 40    12928 KB estimated      8500 KB real (   -4427 KB    -35 %)
    <br/>B  dbntab: NTAB buffers attached
    <br/>B  dbntab: Buffer FTAB(hash header)  (addr: 0x7000010b0088088, size: 584)
    <br/>B  dbntab: Buffer FTAB(anchor array) (addr: 0x7000010b00882d0, size: 1280008)
    <br/>B  dbntab: Buffer FTAB(item array)   (addr: 0x7000010b01c0ad8, size: 5120000)
    <br/>B  dbntab: Buffer FTAB(data area)    (addr: 0x7000010b06a2ad8, size: 122880000)
    <br/>B  dbntab: Buffer IREC(hash header)  (addr: 0x7000010b7bd4088, size: 584)
    <br/>B  dbntab: Buffer IREC(anchor array) (addr: 0x7000010b7bd42d0, size: 1280008)
    <br/>B  dbntab: Buffer IREC(item array)   (addr: 0x7000010b7d0cad8, size: 1280000)
    <br/>B  dbntab: Buffer IREC(data area)    (addr: 0x7000010b7e452d8, size: 12288000)
    <br/>B  dbntab: Buffer STAB(hash header)  (addr: 0x7000010b89ff088, size: 584)
    <br/>B  dbntab: Buffer STAB(anchor array) (addr: 0x7000010b89ff2d0, size: 1280008)
    <br/>B  dbntab: Buffer STAB(item array)   (addr: 0x7000010b8b37ad8, size: 1280000)
    <br/>B  dbntab: Buffer STAB(data area)    (addr: 0x7000010b8c702d8, size: 6144000)
    <br/>B  dbntab: Buffer TTAB(hash header)  (addr: 0x7000010b924e088, size: 6720)
    <br/>B  dbntab: Buffer TTAB(anchor array) (addr: 0x7000010b924fac8, size: 1280008)
    <br/>B  dbntab: Buffer TTAB(item array)   (addr: 0x7000010b93882d0, size: 3200000)
    <br/>B  dbntab: Buffer TTAB(data area)    (addr: 0x7000010b96956d0, size: 23360000)
    <br/>B  db_con_shm_ini:  WP_ID = 38, WP_CNT = 59, CON_ID = -1
    <br/>B  dbstat: TABSTAT buffer attached (addr: 0x7000010f002d2d0)
    <br/>B  dbtbxbuf: Buffer TABL  (addr: 0x700001100000100, size: 180000000, end: 0x70000110aba9600)
    <br/>B  dbtbxbuf: Buffer TABLP (addr: 0x700000006763100, size: 20480000, end: 0x700000007aeb100)
    <br/>B  dbexpbuf: Buffer EIBUF (addr: 0x700000007aec108, size: 67108864, end: 0x70000000baec108)
    <br/>B  dbexpbuf: Buffer ESM   (addr: 0x700001110000108, size: 4194304, end: 0x700001110400108)
    <br/>B  dbexpbuf: Buffer CUA   (addr: 0x7000010bace2108, size: 18432000, end: 0x7000010bbe76108)
    <br/>B  dbexpbuf: Buffer OTR   (addr: 0x700001120000108, size: 4194304, end: 0x700001120400108)
    <br/>B  dbcalbuf: Buffer CALE  (addr: 0x70000000baee000, size: 500000, end: 0x70000000bb68120)
    <br/>M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    <br/>S  *** init spool environment
    <br/>S  TSPEVJOB updates inside critical section: event_update_nocsec = 0
    <br/>S  initialize debug system
    <br/>T  Stack direction is downwards.
    <br/>T  debug control: prepare exclude for printer trace
    <br/>T  new memory block 0x114388060
    <br/>S  spool kernel/ddic check: Ok
    <br/>S  using table TSP02FX for frontend printing
    <br/>S  1 spool work process(es) found
    <br/>S  frontend print via spool service enabled
    <br/>S  printer list size is 150
    <br/>S  printer type list size is 50
    <br/>S  queue size (profile)   = 300
    <br/>S  hostspool list size = 3000
    <br/>S  option list size is 30
    <br/>I  *** INFO  Shm 49 in Pool 40     2898 KB estimated      1632 KB real (   -1266 KB    -44 %)
    <br/>S      found processing queue enabled
    <br/>S  found spool memory service RSPO-RCLOCKS at 0x7000010bbe77070
    <br/>S  doing lock recovery
    <br/>S  setting server cache root
    <br/>S  found spool memory service RSPO-SERVERCACHE at 0x7000010bbe78160
    <br/>S    using messages for server info
    <br/>S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    <br/>S  size of open spool request entry: 2512 bytes
    <br/>S  immediate print option for implicitely closed spool requests is disabled
    <br/>A  **GENER Trace switched on ***
    <br/>A
    <br/>A  -PXA--
    <br/>A  PXA INITIALIZATION
    <br/>A  PXA: Locked PXA-Semaphore.
    <br/>A  System page size: 4kb, total admin_size: 237304kb, dir_size: 58960kb.
    <br/>A  Attached to PXA (address 0x700001130000000, size 3000000K, 4 fragments of 690676K )
    <br/>A
    <br/>A Thu Dec  9 14:03:59 2010
    <br/>A  abap/pxa = shared unprotect gen_remote
    <br/>A  PXA INITIALIZATION FINISHED
    <br/>A  -PXA--
    <br/>A
    <br/>A  ABAP ShmAdm attached (addr=0x700000f4046c000 leng=20955136 end=0x700000f41868000)
    <br/>A  >> Shm MMADM area (addr=0x700000f40915418 leng=247168 end=0x700000f40951998)
    <br/>A  >> Shm MMDAT area (addr=0x700000f40952000 leng=15818752 end=0x700000f41868000)
    <br/>A  RFC rfc/signon_error_log = -1
    <br/>A  RFC rfc/dump_connection_info = 0
    <br/>A  RFC rfc/dump_client_info = 0
    <br/>A  RFC rfc/cp_convert/ignore_error = 1
    <br/>A  RFC rfc/cp_convert/conversion_char = 23
    <br/>A  RFC rfc/wan_compress/threshold = 251
    <br/>A  RFC rfc/recorder_pcs not set, use defaule value: 2
    <br/>A  RFC rfc/delta_trc_level not set, use default value: 0
    <br/>A  RFC rfc/no_uuid_check not set, use default value: 0
    <br/>A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    <br/>A  RFC Method> initialize RemObjDriver for ABAP Objects
    <br/>M  ThrCreateShObjects          allocated 122630 bytes at 0x70000000c124000
    <br/>N  SsfSapSecin: putenv(SECUDIR=/usr/sap/PRD/DVEBMGS00/sec): ok
    <br/>N
    <br/>N  =================================================
    <br/>N  === SSF INITIALIZATION:
    <br/>N  ===...SSF Security Toolkit name SAPSECULIB .
    <br/>N  ===...SSF library is /usr/sap/PRD/DVEBMGS00/exe/libsapcrypto.o .
    <br/>N  ===...SSF default hash algorithm is SHA1 .
    <br/>N  ===...SSF default symmetric encryption algorithm is DES-CBC .
    <br/>N  ===...SECUDIR="/usr/sap/PRD/DVEBMGS00/sec"
    <br/>N  ===...loading of Security Toolkit successfully completed.
    <br/>N  ===   SAPCRYPTOLIB  5.5.5C pl29  (Jan 30 2010) MT-safe
    <br/>N  =================================================
    <br/>N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    <br/>N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    <br/>M  JrfcVmcRegisterNativesDriver o.k.
    <br/>W  =================================================
    <br/>W  === ipl_Init() called
    <br/>B    dbtran INFO (init_connection '<DEFAULT>' [ORACLE:700.08]):
    <br/>B     max_blocking_factor =   5,  max_in_blocking_factor      =   5,
    <br/>B     min_blocking_factor =   5,  min_in_blocking_factor      =   5,
    <br/>B     prefer_union_all    =   0,  prefer_join                 =   0,
    <br/>B     prefer_fix_blocking =   0,  prefer_in_itab_opt          =   1,
    <br/>B     convert AVG         =   0,  alias table FUPD            =   0,
    <br/>B     escape_as_literal   =   1,  opt GE LE to BETWEEN        =   0,
    <br/>B     select *            =0x0f,  character encoding          = STD / <none>:-,
    <br/>B     use_hints           = abap->1, dbif->0x1, upto->2147483647, rule_in->0,
    <br/>B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    <br/>W    ITS Plugin: Path dw_gui
    <br/>W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    <br/>W    ITS Plugin: sizeof(SAP_UC) 2
    <br/>W    ITS Plugin: Release: 701, [7010.0.97.20020600]
    <br/>W    ITS Plugin: Int.version, [33]
    <br/>W    ITS Plugin: Feature set: [22]
    <br/>W    ===... Calling itsp_Init in external dll ===>
    <br/>W      PpioRecoverLocks, table: 0x700000f418f2778
    <br/>W      PpioRecoverLocks, number of file locks 256
    <br/>W      PpioRecoverLocks: file lock set to: (nil)
    <br/>W      PpioRecoverLocks: directory lock set to: (nil)
    <br/>W      PpioRecoverLocks: global lock set to: (nil)
    <br/>W      PpioRecoverLocks() done
    <br/>W      PprcRecoverLocks, table: 0x700000f418f27e8
    <br/>W      PprcRecoverLocks: directory lock set to: (nil)
    <br/>W      PprcRecoverLocks() done
    <br/>W  === ipl_Init() returns 0, ITSPE_OK: OK
    <br/>W  =================================================
    <br/>N  VSI: WP init in ABAP VM completed with rc=0
    <br/>E  Profile-Parameter: enque/deque_wait_answer = FALSE
    <br/>E  Profile-Parameter: enque/sync_dequeall = 0
    <br/>E  EnqId_SuppressIpc: local EnqId initialization o.k.
    <br/>E  EnqCcInitialize: local enqueue client init o.k.
    <br/>M  ThCheckPrevUser: previous user was T78/M0, clean counter 0
    <br/>M  ThCheckPrevUser: clean previous user T78/U26013/M0/I2/V-1
    <br/>M
    <br/>M  Modeinfo for User T78/M0
    <br/>M
    <br/>M    tm state = 4
    <br/>M    uid = 26013
    <br/>M    term type = 0x4
    <br/>M    display = 0x8
    <br/>M    cpic_no = 0
    <br/>M    cpic_idx = -1
    <br/>M    usr = >8000199     <
    <br/>M    terminal = >ceegsap20           <
    <br/>M    client = >800<
    <br/>M    conversation_ID = >        <
    <br/>M    appc_tm_conv_idx = -1
    <br/>M    its_plugin = NO
    <br/>M    allowCreateMode = YES
    <br/>M    wp_ca block = -1
    <br/>M    appc_ca block = -1
    <br/>M    blockSoftCanel = NO
    <br/>M    session_id = >4CFF77CE4A6A0068E10080000A04C87E<
    <br/>M    ext_session_id = >4CFF77CE4A6A0068E10080000A04C87E<
    <br/>M    imode = 2
    <br/>M    mode state = 0x1a
    <br/>M    mode clean_state = 2
    <br/>M    task_type = ZTTADIA
    <br/>M    lastThFc = THFCTERM
    <br/>M    lastAction = TH_IACT_NO_ACTION
    <br/>M    th_errno = 0
    <br/>M    rollout_reason = 1
    <br/>M    last_rollout_level = 7
    <br/>M    async_receives = 0
    <br/>M    cpic_receive = 0
    <br/>M    em handle = 67
    <br/>M    roll state = 3
    <br/>M    abap state = 3
    <br/>M    em state = 2
    <br/>M    eg state = 1
    <br/>M    spa state = 3
    <br/>M    enq state = 0
    <br/>M    softcancel = 1
    <br/>M    cancelInitiator = DISPATCHER
    <br/>M    clean_state = DP_SOFTCANCEL
    <br/>M    next hook = T-1/U-1/M255
    <br/>M    master hook = T-1/U-1/M255
    <br/>M    slave hook = T-1/U-1/M255
    <br/>M    debug_tid = 255
    <br/>M    debug_mode = 0
    <br/>M    mode type = 0x1
    <br/>M    debug = 0
    <br/>M    msg_count = 6
    <br/>M    tcode = >ZPP015              <
    <br/>M    last_wp = 38
    <br/>M    client conversation_ID = >        <
    <br/>M    server conversation_ID = >        <
    <br/>M    lock = 0
    <br/>M    max enq infos = 0
    <br/>M    act enq infos = 0
    <br/>M    em_hyper_hdl = 0x700000f41d918e8
    <br/>M    plugin_info = NULL
    <br/>M    act_plugin_hdl = -1
    <br/>M    act_plugin_no  = 0
    <br/>M    max_plugin_no  = 0
    <br/>M
    <br/>M  ThCheckPrevUser: reset spa state for user T78/U26013/M0
    <br/>M  ThSetDoSafeCleanup: th_do_safe_cleanup = FALSE (wanted FALSE)
    <br/>M  LOCK WP ca_blk 44
    <br/>M  ThAtWpBlk: set zttatiln to zero
    <br/>M  ThAtWpBlk: set zttatoln to zero
    <br/>M  DpVmcGetVmByTmAdm: no VM found for T78/M0/I2
    <br/>M  LOCK APPC ca_blk 640
    <br/>M  set task type ZTTADIA
    <br/>M  ThCleanPrevUser: clean U26013 T78 M0 I2 no VM clean state DP_SOFTCANCEL clean counter 1
    <br/>M  ThCleanPrevUser: saved MODE_REC = 10
    <br/>M  PfStatDisconnect: disconnect statistics
    <br/>M  ThCleanPrevUser: found soft cancel flag
    <br/>M  ThSoftCancel: set clean state of T78/M0 to DP_DEFAULT_CLEANING
    <br/>M  ThSoftCancel session in state TM_DISCONNECTED, delete mode
    <br/>M  ThIAMDel: delete tid/mode 78/0 (th_errno 47, release 1)
    <br/>M  ThIDeleteMode (78, 0, 3, ><, 0, 255, TRUE)
    <br/>M  ThIDeleteMode: no modes found ..
    <br/>M    no sub modes
    <br/>M  ThCheckMemoryState (0, 0, 1)
    <br/>M  ThRollIn: roll in T78/U26013/M0/I2 (level=7, abap_level=1, attach_em=1)
    <br/>M  ThCheckEmState: check ATTACH for em hdl 67
    <br/>M  ThCheckEmState: call EmContextAttach (em_hdl=67)
    <br/>I Thu Dec  9 14:05:00 2010
    <br/>I  WARNING: MtxLock 0x70000000636197c rrol0046 owner=33 deadlock ?
    <br/>I Thu Dec  9 14:06:00 2010
    <br/>I  WARNING: MtxLock 0x70000000636197c rrol0046 owner=33 deadlock ?
    <br/>I Thu Dec  9 14:07:00 2010
    <br/>I  WARNING: MtxLock 0x70000000636197c rrol0046 owner=33 deadlock ?
    <br/>I Thu Dec  9 14:08:00 2010
    <br/>I  WARNING: MtxLock 0x70000000636197c rrol0046 owner=33 deadlock ?

    Hi Sitarama,
    <br/>
    <br/>Thanks very much for your fast reply. Yes, the smartforms are custom-built. Besides the deadlock error, there still has some errors in SP01 says "Could not pass request to host spool system". But it previews wonderfully in SP01. The detailed SP01 error log is like below:
    Print request processing log
    Errors occurred processing this print request
    Error during print request output. l_rc = 99
    There may be no printout
    Most important attributes of spool request
    Request number 2828
    Request name SMART  LOCA 8000199
    Client 800
    Owner 8000199
    Request attributes
    Time created   2010120906014800
    Remaining life  +00007235800
    Dispo 1 (Go/Hold) G
    Dispo 2 (Keep/Delete)     D
    Dispo 3 (Indirect/Direct) D
    Default output device LOCA
    Default no. copies  1
    Format ZTEST
    Main print request characteristics
    Spool request number 2828
    Print request number 1
    Print request attributes
    Time created   2010120906020500
    Output device LOCA
    Format ZTEST
    What do you mean parallel processing on table level? The smartforms extract data from different SAP tables and then transfer to smartform interface, then they can added in form pages. Do you think this results parallel processing towards tables?
    <br/>
    Thank you and hope to hear more from you.
    Best Regards,
    Jeff

  • Work processes ended by itself

    Hi all
    Yesterday, in our BI system, all of a sudden in the evening all our work processes went into the end state and the system froze.
    We did not issue a endsap or anything like that.
    We tried looking into the files but are not sure what exactly happened.
    In the DSPLOG QHST,
    We see the work proocess WP00 ended abnormally and then everything went down after that.
    We saved the files to investigate.
    Here is the trace file for WP00 :
    C Thu Jul 17 17:32:18 2008
    C  Secondary DB connect, Service connection
    C  === Secondary DB connect successfull! ===
    C  === Connection settings ===
    C  connected               = TRUE
    C  con_hdl                 = 1
    C  db_handle               = 3
    C  dbhost                  = biprd
    C  rdbname                 =                  
    C  dblib                   = R3BIPDATA
    C  r3sysle_changed         = FALSE
    C  query_compl_reval       = O
    C  dbconnecttype           = L
    C  user                    = BIP00    
    C  qaqqinilib              = Default (QUSRSYS)
    C  dbjobname               = QXDARECVR
    C  dbjobuser               = QUSER    
    C  dbjobno                 = 083090
    C  rmtexelib               = SAPBIPNUC
    C  parallel_alter_tables   = *OFF
    C  ===========================
    C  Query options file QUSRSYS/QAQQINI not found.
    B  Connection 1 opened (DBSL handle 1)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080715 082859 biprd          
    B  000 001 R/3*BWMON        000001505 ACTIVE       NO  NO  NO  004 255 255 20080717 173218 biprd          
    B  000 002 R/3*TIMESTAMP    000001504 DISCONNECTED NO  NO  NO  004 255 255 20080717 163325 biprd          
    B  000 003 R/3*             000001500 DISCONNECTED NO  NO  NO  002 255 255 20080717 163316 biprd          
    B  000 004 R/3*DTPLOG       000001497 DISCONNECTED NO  NO  NO  002 255 255 20080717 155733 biprd          
    B  000 005 R/3*RSAPOADM     000000954 DISCONNECTED NO  NO  NO  000 255 255 20080716 171044 biprd          
    B  000 006 R/3*BWDIM        000001422 DISCONNECTED NO  NO  NO  004 255 255 20080717 070217 biprd          

    M Thu Jul 17 17:46:40 2008
    M  ThLocalRes: trace flag = 0
    M  DpSigInt: caught signal 15
    M  in_ThErrHandle: 1
    M  ThResetEmMagic: reset em magic for T32/M0/I0
    M  ThSigHandler: signal (step 4, th_errno 11, action 2)

    M  Info for wp 0

    M    pid = 1070
    M    severity = 0
    M    status = 0
    M    stat = WP_RUN
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = DP_RQ_DIAWP
    M    rq_info = 0
    M    tid = 32
    M    mode = 0
    M    len = 168
    M    rq_id = 2155
    M    rq_source = FROM_WP_CA
    M    last_tid = 32
    M    last_mode = 0
    M    semaphore = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 20000
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 1
    M    ext_checked_resource(HTTP) = 1
    M    report = >                                        <
    M    action = 11
    M    tab_name = >/BI0/D0SD_C035                <
    M    attachedVm = no VM

    M  Modeinfo for User T32/M0

    M    tm state = 2
    M    uid = 10845
    M    term type = 0xca
    M    display = 0x0
    M    cpic_no = 0
    M    cpic_idx = -1
    M    usr = >PMCGARTY    <
    M    terminal = >10.54.6.53          <
    M    client = >300<
    M    conversation_ID = >        <
    M    appc_tm_conv_idx = -1
    M    its_plugin = NO
    M    allowCreateMode = YES
    M    blockSoftCanel = NO
    M    session_id = >487E8451D9FE042EE10080010A36FF71<
    M    ext_session_id = >487E8451D9FE042EE10080010A36FF71<
    M    imode = 0
    M    mode state = 0x42
    M    mode clean_state = 2
    M    task_type = 0
    M    lastThFc = THFCMPIINIT
    M    lastAction = TH_IACT_NO_ACTION
    M    th_errno = 11
    M    rollout_reason = 0
    M    last_rollout_level = 0
    M    async_receives = 0
    M    cpic_receive = 0
    M    em handle = 3
    M    roll state = 2
    M    abap state = 2
    M    em state = 3
    M    eg state = 1
    M    spa state = 3
    M    enq state = 0
    M    softcancel = 1
    M    cancelInitiator = IC_MAN
    M    clean_state = DP_SOFTCANCEL
    M    next hook = T-1/U-1/M255
    M    master hook = T-1/U-1/M255
    M    slave hook = T-1/U-1/M255
    M    debug_tid = 255
    M    debug_mode = 0
    M    mode type = 0x1
    M    debug = 0
    M    msg_count = 3
    M    tcode = >                    <
    M    last_wp = 0
    M    client conversation_ID = >        <
    M    server conversation_ID = >        <
    M    lock = 0
    M    max enq infos = 9
    M    act enq infos = 2
    M    em_hyper_hdl = 7000000b1965600
    M    plugin_info = 7000000b193a300
    M    act_plugin_hdl = 0
    M    act_plugin_no  = 1
    M    max_plugin_no  = 1

    M  Adresse   Offset  Data from input buffer
    M  -
    M  700000070000000  000000  00000000 6e000000 44000101 00000000 |....n...D.......|
    M  700000070000010  000016  00000000 00000000 00000000 00000000 |................|
    M  700000070000020  000032  00000000 00000000 00000000 00000000 |................|
    M  700000070000030  000048  00000000 00000004 0000000c 6d732f68 |............ms/h|
    M  700000070000040  000064  7474705f 706f7274 66666666 66666667 |ttp_portfffffffg|
    M  700000070000050  000080  09001000 a005a170 07000003 55196850 |.......p....U.hP|
    M  700000070000060  000096  00000000 00000000 00000001 80083218 |..............2.|
    M  700000070000070  000112  0fffffff ffffafe8 00000000 00000054 |...............T|
    M  700000070000080  000128  00000001 8063f4b8 0fffffff ffffacc0 |.....c..........|
    M  700000070000090  000144  00000000 00000080 00000001 004ac160 |.............J.`|
    M  7000000700000a0  000160  00000004 38313030                   |....8100        |
    M  -

    M  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server biprd_BIP_00 on host biprd (wp 0)
    M  *  ERROR       ThSigHandler: signal
    M  *
    M  *  TIME        Thu Jul 17 17:46:45 2008
    M  *  RELEASE     700
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          11
    M  *  MODULE      thxxhead.c
    M  *  LINE        10713
    M  *  COUNTER     6
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >SAP-Trace buffer write< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  ThrSaveSPAFields: save spa fields
    M  Entering ThSetStatError
    M  ThIErrHandle: incomplete previous roll out, do a full roll out
    M  ThRollOut: roll out T32/U10845/M0/I0 (level=7, short_roll_out=0)
    M  ThRollOut: call rrol_out (1)
    M  ThRollOut: act roll state = DP_ROLLED_OUT
    M  ThRollOut: roll level <> 0, don't call ab_rollout
    M  ThRollOut: full roll out of U10845 M0 I0 (Level 7) ok
    M  ThIErrHandle: prv_action of W0: 0xa
    M  ThIErrHandle: don't try rollback again
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=1)
    M  ThIErrHandle: Entering ThReplyToMsg
    M  ThIErrHandle: Entering ThErrHdlUser
    M  ThErrHdlUser: set th_errno (11)
    M  ThErrHdlUser: save context
    M  ThEmContextDetach2: detach T32/M0 from em memory (em_hdl=3, force=0)
    M  ThEmContextDetach2: reset local em info
    M  call ThrShutDown ...
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       YES YES NO  000 255 255 20080715 082859 biprd          
    B  000 001 R/3*BWMON        000001507 DISCONNECTED NO  NO  NO  001 255 255 20080717 174636 biprd          
    B  000 002 R/3*TIMESTAMP    000001508 DISCONNECTED NO  NO  NO  004 255 255 20080717 173227 biprd          
    B  000 003 R/3*             000001509 INACTIVE     NO  NO  NO  004 255 255 20080717 174636 biprd          
    B  000 004 R/3*DTPLOG       000001497 DISCONNECTED NO  NO  NO  002 255 255 20080717 155733 biprd          
    B  000 005 R/3*RSAPOADM     000000954 DISCONNECTED NO  NO  NO  000 255 255 20080716 171044 biprd          
    B  000 006 R/3*BWDIM        000001422 DISCONNECTED NO  NO  NO  004 255 255 20080717 070217 biprd          
    B  Disconnected from connection 0
    B  Disconnected from connection 3
    B  statistics db_con_commit (com_total=125160, com_tx=49059)
    B  statistics db_con_rollback (roll_total=2545, roll_tx=3)
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 1070) [dpuxtool.c   269]
    trc file: "dev_w0", trc level: 1, release: "700"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        BIP
    M systemid   324 (IBM iSeries with OS400)
    M relno      7000
    M patchlevel 0
    M patchno    154
    M intno      20050900
    M make:      single threaded, ASCII, 64 bit, optimized
    M pid        2490
    M

    M Thu Jul 17 17:48:57 2008
    M  kernel runs with dp version 235(ext=110) (@(#) DPLIB-INT-VERSION-235)
    M  length of sys_adm_ext is 364 bytes
    M  ***LOG Q01=> ThInit, WPStart (Workproc 0 4 2490) [thxxhead.c   1281]
    M  ThInit: running on host biprd
    M  calling db_connect ...
    C  DB4 SQL Reparse Activated
    C  R3INLPGM: RmtExeLib from /usr/sap/BIP/SYS/exe/run/DBSLDB4RMT
    C  R3INLPGM: RmtExeLib is SAPBIPNUC
    C  DBSLENCWT: rc=0, msg=CPF9897 CONCURRENT WRITE IS ENABLED.                                   
    C  DbSl/DB codepage check: OK - (ASCII).
    C  === Central DB connect successfull! ===
    C  === Connection settings ===
    C  connected               = TRUE
    C  con_hdl                 = 0
    C  db_handle               = 1
    C  dbhost                  = biprd
    C  rdbname                 =                  
    C  dblib                   = R3BIPDATA
    C  r3sysle_changed         = TRUE
    C  query_compl_reval       = O
    C  dbconnecttype           = L
    C  user                    = BIP00    
    C  qaqqinilib              = Default (QUSRSYS)
    C  dbjobname               = WP00     
    C  dbjobuser               = BIP00    
    C  dbjobno                 = 083100
    C  rmtexelib               = SAPBIPNUC
    C  parallel_alter_tables   = *OFF
    C  ===========================
    C  Query options file QUSRSYS/QAQQINI not found.
    C  -
    C  -
    DbSl EGO Structure
    C  -
    C     SAPSYSTEMNAME               = BIP
    C     Character encoding          = ASCII
    C     process class               = dialog process
    C     workprocess id              = 0
    C     local host                  = biprd
    C     dbhost                      = biprd
    C     rdbname                     =                  
    C     dbname                      = BIPbiprd
    C     dblib                       = R3BIPDATA
    C     application server          = DVEBMGS00
    C     Connect type                = LOCAL
    C     pid                         = 2490
    C     wpjobname                   = WP00
    C     wpjobuser                   = BIP00
    C     wpjobno                     = 083100
    C     DB2/400 vers. appl. server  = PASE 4
    C     DB2/400 vers. DB server     = V5R4
    C     da_cache_size               = 100
    C     reopen                      = ON
    C     timeout_retry               = 3
    C     ODP threshold               = 800
    C     ODP commit thresh.          = 810
    C     ODP open thresh.            = 850
    C     QAQQINI library             = Default (QUSRSYS)
    C     Alternate QAQQINI library   = Not specified
    C     use_lobs_for_long           = ON
    C     use_lobs_for_short          = OFF
    C     single_execution_threshold  = 2000
    C     single_execution_reuse      = OFF
    C     keep_tmp_SQLpkgs            = OFF
    C     dbsl_trace                  = OFF
    C     allow_cancel                = Try (Unspecified)
    C     nqe_optimize_method         = O - All I/O (compatibility mode)
    C     nte_list_size               = 10
    C     dbsl_alternate_package      = OFF
    C  -
    C  SQL monitor started for job
    B  Connection 0 opened (DBSL handle 0)
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 ACTIVE       NO  YES NO  000 255 255 20080717 174857 biprd          
    M  db_connect o.k.
    M  ICT: exclude compression: .zip,.cs,.rar,.arj,.z,.gz,.tar,.lzh,.cab,.hqx,.ace,.jar,.ear,.war,.css,.pdf,.js,.gzip,.uue,.bz2,.iso,.sda,.sar,.gif
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 7000001e0000000, size: 4400000)
    M  SHM_ROLL_AREA          (addr: 7000001f0000000, size: 268435456)
    M  SHM_PAGING_AREA          (addr: 700000200000000, size: 268435456)
    M  SHM_ROLL_ADM               (addr: 700000210000000, size: 2672386)
    M  SHM_PAGING_ADM          (addr: 700000220000000, size: 656416)

    M Thu Jul 17 17:48:58 2008
    M  ThCreateNoBuffer          allocated 324144 bytes for 1000 entries at 700000230000000
    M  ThCreateNoBuffer          index size: 3000 elems
    M  ThCreateVBAdm          allocated 7440 bytes (50 server) at 700000240000000
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation std
    X  <ES> Info: use normal pages (no huge table support available)
    X  ES initialized.
    B  dbntab: NTAB buffers attached
    B  dbntab: Buffer FTAB(hash header)  (addr: 700000260000088, size: 496)
    B  dbntab: Buffer FTAB(anchor array) (addr: 700000260000278, size: 320072)
    B  dbntab: Buffer FTAB(item array)   (addr: 70000026004e4c0, size: 1280000)
    B  dbntab: Buffer FTAB(data area)    (addr: 700000260186cc0, size: 30720000)
    B  dbntab: Buffer IREC(hash header)  (addr: 700000270000088, size: 496)
    B  dbntab: Buffer IREC(anchor array) (addr: 700000270000278, size: 320072)
    B  dbntab: Buffer IREC(item array)   (addr: 70000027004e4c0, size: 320000)
    B  dbntab: Buffer IREC(data area)    (addr: 70000027009c6c0, size: 6144000)
    B  dbntab: Buffer STAB(hash header)  (addr: 700000280000088, size: 496)
    B  dbntab: Buffer STAB(anchor array) (addr: 700000280000278, size: 320072)
    B  dbntab: Buffer STAB(item array)   (addr: 70000028004e4c0, size: 320000)
    B  dbntab: Buffer STAB(data area)    (addr: 70000028009c6c0, size: 3072000)
    B  dbntab: Buffer TTAB(hash header)  (addr: 700000290000088, size: 2160)
    B  dbntab: Buffer TTAB(anchor array) (addr: 7000002900008f8, size: 320072)
    B  dbntab: Buffer TTAB(item array)   (addr: 70000029004eb40, size: 800000)
    B  dbntab: Buffer TTAB(data area)    (addr: 700000290112040, size: 3760000)
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 16, CON_ID = 1510
    B  dbstat: TABSTAT buffer attached (addr: 7000002a0007808)
    B  dbtbxbuf: Buffer TABL  (addr: 7000002b0000100, size: 64000000, end: 7000002b3d09100)
    B  dbtbxbuf: Buffer TABLP (addr: 7000002c0000100, size: 16776192, end: 7000002c0fffd00)
    B  dbexpbuf: Buffer EIBUF (addr: 7000002e0000108, size: 4194304, end: 7000002e0400108)
    B  dbexpbuf: Buffer ESM   (addr: 7000002f0000108, size: 4194304, end: 7000002f0400108)
    B  dbexpbuf: Buffer CUA   (addr: 700000300000108, size: 16776192, end: 700000300fffd08)
    B  dbexpbuf: Buffer OTR   (addr: 700000310000108, size: 4194304, end: 700000310400108)
    B  dbcalbuf: Buffer CALE  (addr: 700000320000000, size: 500000, end: 70000032007a120)
    M  CCMS: AlInitGlobals : alert/use_sema_lock = TRUE.
    S  *** init spool environment
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 182d471b0
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 700000340000060
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 7000003400004a8
    S    using messages for server info
    S  size of spec char cache entry: 165024 bytes (timeout 100 sec)
    S  size of open spool request entry: 1248 bytes
    S  immediate print option for implicitely closed spool requests is disabled

    A Thu Jul 17 17:49:03 2008

    A  -PXA--
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 21192kb, dir_size: 10540kb.
    A  Attached to PXA (address 700000350000000, size 600000K, 2 fragments of 289404K )
    A  abap/pxa = shared unprotect gen_remote
    A  PXA INITIALIZATION FINISHED
    A  -PXA--

    A  ABAP ShmAdm attached (addr=7000000b053b000 leng=20955136 end=7000000b1937000)
    A  >> Shm MMADM area (addr=7000000b09071d0 leng=261120 end=7000000b0946dd0)
    A  >> Shm MMDAT area (addr=7000000b0947000 leng=16711680 end=7000000b1937000)
    A  RFC Destination> destination biprd_BIP_00 host biprd system BIP systnr 0 (biprd_BIP_00)
    A  RFC Options> H=biprd,S=00,d=1,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A   
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 1
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    A  RFC rfc/bc_ignore_thcmaccp_retcode not set, use default value: 0
    A  RFC Method> initialize RemObjDriver for ABAP Objects
    M  ThrCreateShObjects          allocated 33072 bytes at 700000380000000

    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF trace level is 0 .
    N  ===...SSF library is /usr/sap/BIP/SYS/exe/run/libsapsecu.o .
    N  ===...SSF hash algorithm is SHA1 .
    N  ===...SSF symmetric encryption algorithm is DES-CBC .

    N Thu Jul 17 17:49:04 2008
    N  ===...completed with return code 5.
    N  =================================================
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    B    dbtran INFO (init_connection '<DEFAULT>' [DB400:700.08]):
    B     max_blocking_factor =  20,  max_in_blocking_factor      =  40,
    B     min_blocking_factor =  10,  min_in_blocking_factor      =  10,
    B     prefer_union_all    =   0,  prefer_join                 =   0,
    B     prefer_fix_blocking =   1,  prefer_in_itab_opt          =   1,
    B     convert AVG         =   1,  alias table FUPD            =   1,
    B     escape_as_literal   =   0,  opt GE LE to BETWEEN        =   0,
    B     select *            =0x00,  character encoding          =SBCS / <none>:-,
    B     use_hints           = abap->1, dbif->0x3, upto->2147483647, rule_in->0,
    B                           rule_fae->0, concat_fae->0, concat_fae_or->0
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 1
    W    ITS Plugin: Release: 700, [7000.0.154.20050900]
    W    ITS Plugin: Int.version, [33]
    W    ITS Plugin: Feature set: [16]
    W    ===... Calling itsp_Init in external dll ===>
    W      PpioRecoverLocks, table: 7000000b05352f8
    W      PpioRecoverLocks, number of file locks 256
    W      PpioRecoverLocks: file lock set to: 0
    W      PpioRecoverLocks: directory lock set to: 0
    W      PpioRecoverLocks: global lock set to: 0
    W      PpioRecoverLocks() done
    W      PprcRecoverLocks, table: 7000000b05357c0
    W      PprcRecoverLocks: directory lock set to: 0
    W      PprcRecoverLocks() done
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  VSI: WP init in ABAP VM completed with rc=0
    E  Replication is disabled
    E  EnqCcInitialize: local lock table initialization o.k.
    E  EnqId_SuppressIpc: local EnqId initialization o.k.
    E  EnqCcInitialize: local enqueue client init o.k.
    M  ThCheckPrevUser: previous user was T32/M0, clean counter 0
    M  ThCheckPrevUser: clean previous user T32/U10845/M0/I0/V-1

    M  Modeinfo for User T32/M0

    M    tm state = 2
    M    uid = 10845
    M    term type = 0xca
    M    display = 0x0
    M    cpic_no = 0
    M    cpic_idx = -1
    M    usr = >PMCGARTY    <
    M    terminal = >10.54.6.53          <
    M    client = >300<
    M    conversation_ID = >        <
    M    appc_tm_conv_idx = -1
    M    its_plugin = NO
    M    allowCreateMode = YES
    M    blockSoftCanel = NO
    M    session_id = >487E8451D9FE042EE10080010A36FF71<
    M    ext_session_id = >487E8451D9FE042EE10080010A36FF71<
    M    imode = 0
    M    mode state = 0x42
    M    mode clean_state = 2
    M    task_type = 0
    M    lastThFc = THFCMPIINIT
    M    lastAction = TH_IACT_NO_ACTION
    M    th_errno = 11
    M    rollout_reason = 0
    M    last_rollout_level = 7
    M    async_receives = 0
    M    cpic_receive = 0
    M    em handle = 3
    M    roll state = 3
    M    abap state = 3
    M    em state = 2
    M    eg state = 1
    M    spa state = 3
    M    enq state = 0
    M    softcancel = 1
    M    cancelInitiator = IC_MAN
    M    clean_state = DP_SOFTCANCEL
    M    next hook = T-1/U-1/M255
    M    master hook = T-1/U-1/M255
    M    slave hook = T-1/U-1/M255
    M    debug_tid = 255
    M    debug_mode = 0
    M    mode type = 0x1
    M    debug = 0
    M    msg_count = 3
    M    tcode = >                    <
    M    last_wp = 0
    M    client conversation_ID = >        <
    M    server conversation_ID = >        <
    M    lock = 0
    M    max enq infos = 9
    M    act enq infos = 2
    M    em_hyper_hdl = 7000000b1965600
    M    plugin_info = 7000000b193a300
    M    act_plugin_hdl = 0
    M    act_plugin_no  = 1
    M    max_plugin_no  = 1

    M  ThCheckPrevUser: reset spa state for user T32/U10845/M0
    M  LOCK WP ca_blk 7
    M  ThAtWpBlk: set zttatiln to zero
    M  ThAtWpBlk: set zttatoln to zero
    M  DpVmcGetVmByTmAdm: no VM found for T32/M0/I0
    M  LOCK APPC ca_blk 11
    M  set task type 0
    M  ThCleanPrevUser: clean U10845 T32 M0 I0 no VM clean state DP_SOFTCANCEL clean counter 1
    M  ThCleanPrevUser: saved MODE_REC = 40
    M  PfStatDisconnect: disconnect statistics
    M  ThCleanPrevUser: found soft cancel flag
    M  ThSoftCancel: set clean state of T32/M0 to DP_DEFAULT_CLEANING
    M  ThSoftCancel: soft cancel of T32/M0
    M  set DbgError 0
    M  ThSoftCancel: set rq_id_last_softcancel to 2155
    M  ThCheckMemoryState (0, 0, 0)
    M  ThRollIn: roll in T32/U10845/M0/I0 (level=7, abap_level=1, attach_em=1)
    M  ThCheckEmState: check ATTACH for em hdl 3
    M  ThCheckEmState: call EmContextAttach (em_hdl=3)
    M  ThRollIn: U10845 M0 I0 (Level 7) ok
    M  ThRollIn: roll in abap store
    M  ThIncrSpaVers: spavers of T32/M0 is 2
    M  ThDequeueCurrentLocks: delete current locks (force=0)
    M  ThDelEnqInfo: del enq_own >20080717174632922051000000biprd...........................</1
    M  ThDelEnqInfo: act enq info: 1
    M  ThDelEnqInfo: del enq_own >20080717174632922065000000biprd...........................</2
    M  ThDelEnqInfo: act enq info: 0
    M  ThIAMDel: delete tid/mode 32/0 (th_errno 0, release 1)
    M  ThTSCancel: set T32/M0 in status MODE_CANCEL
    M  ThIDeleteMode (32, 0, 3, ><, 0, 255, TRUE)
    M  ThIDeleteMode: no modes found ..
    M    no sub modes
    M  ThCheckMemoryState (0, 0, 1)
    M  ThIAMDel2: last active mode (0) delete tid (32)
    M  ThIUsrDel (0, 1)
    M  ThCheckMemoryState (0, 0, 1)
    M  ThIUsrDel: set status of T32 to TM_NEND
    M  ThResFree: free resources of U10845 M0 I0 (normal mode, complete free) at level 3, errno=0, db_action=TH_DB_ROLLBACK, pooling=1
    M  ThResFree: reset spa state for user T32/U10845/M0
    M  ThCheckMemoryState (0, 0, 1)
    M  ThCallHooks: call hook >SAP-Trace RFC save< for event BEFORE_SESSION_END
    M  TrThHookFunc: called for session end
    M  ThLocalContextId: create local context id
    M  NiIMyHostName: hostname = 'biprd.nycus.pharma'
    M  NiHsLGetNodeAddr: found hostname 'biprd.nycus.pharma' in cache
    M  NiIGetNodeAddr: hostname 'biprd.nycus.pharma' = addr 10.54.255.113
    M  ThGetTransId2: got trans id (spa) >487E8456D9FE042EE10080010A36FF71< (32)
    M  ThCallHooks: call hook >abTpdaThHook_EModeEnded< for event BEFORE_SESSION_END
    M  ThCallHooks: call hook >ITSP: EndOfSession< for event BEFORE_SESSION_END
    M  ThCallHooks: call hook >HttpClearSession< for event BEFORE_SESSION_END
    M  ThCallHooks: call hook >DbgBeforeSessionEnd< for event BEFORE_SESSION_END
    M  ThCallHooks: call hook >abRtmClearSession< for event BEFORE_SESSION_END
    M  ThCallHooks: call hook >SpoolHandleHook< for event BEFORE_SESSION_END
    M  ThIRollBack
    M  ThIRollBack: call db_rollback
    M  ThCheckComOrRb (event=0, full_commit=1)
    M  ThCallHooks: call hook >ab_SosRfcBeforeRollback< for event BEFORE_ROLLBACK
    M  ThCallHooks: call hook >ASTAT-collect commit handling< for event BEFORE_ROLLBACK
    M  PfAStatRevertCollected: nothing to do
    M  ThCallHooks: call hook >dyKeyTableReset< for event BEFORE_ROLLBACK
    M  ThCallHooks: call hook >SpoolHandleHook< for event BEFORE_ROLLBACK
    M  ThCheckComOrRb (event=2, full_commit=1)
    M  ThCallHooks: call hook >ThNoClearPrevErr< for event AFTER_ROLLBACK
    M  ThNoClearPrevErr: clear prev no err
    M  ThCallHooks: call hook >ThNoResetMutex< for event AFTER_ROLLBACK
    M  ThNoCheckMutex: check for remaining locked intervals
    M  ThCallHooks: call hook >rsts_after_rollback< for event AFTER_ROLLBACK
    M  ThCallHooks: call hook >SpoolHandleHook< for event AFTER_ROLLBACK
    M  ThVBIRollBack: initialize TH-hooks
    M  SosRegisterHook: add hook >ThVBICmRbHook(1804e1b10)< for event AFTER_COMMIT
    M  SosRegisterHook: add hook >ThVBICmRbHook(1804e1b10)< for event AFTER_ROLLBACK
    M  ThICommit3: full commit, set time, free resources, redispatch
    M  ThICommit3: commit and free resources
    M  ThCheckComOrRb (event=1, full_commit=1)
    M  ThCallHooks: call hook >ab_SosShmBeforeCommit< for event BEFORE_COMMIT
    M  ThCallHooks: call hook >ab_SosRfcBeforeCommit< for event BEFORE_COMMIT
    M  ThCallHooks: call hook >ASTAT-collect commit handling< for event BEFORE_COMMIT
    M  ThCallHooks: call hook >rsts_before_commit< for event BEFORE_COMMIT
    M  ThCheckComOrRb (event=3, full_commit=1)
    M  ThCallHooks: call hook >ThVBICmRbHook< for event AFTER_COMMIT
    M  ThVBICmRbHook: called for commit
    M  ThCallHooks: call hook >dyKeyTableReset< for event AFTER_COMMIT
    M  ThCallHooks: call hook >rsts_after_commit< for event AFTER_COMMIT
    M  ThCallHooks: call hook >ThNoClearPrevErr< for event AFTER_COMMIT
    M  ThNoClearPrevErr: clear prev no err
    M  ThCallHooks: call hook >SpoolHandleHook< for event AFTER_COMMIT
    M  ThrClearMemory o.k.
    M  ThCallHooks: call hook >db_x_short_mem_sync_point< for event AFTER_STORAGE_FREE
    M  ThCallHooks: call hook >rsts_storage_free< for event AFTER_STORAGE_FREE
    M  ThAlarm: set alarm to 600 sec
    M  ThICommit3 o.k.
    M  PfClearAllRec: clear statistic area
    M  PfStatDisconnect: disconnect statistics
    M  rdisp/cpic_snc_delete2: -1 -> 0
    M  ThDealComm: T32/U10845/M0 has no cpic conns
    M  clean up all internal modes of T32/U10845/M0
    M  call ab_endmode (END_MODE_CLEAR_ALL)
    M  ThVmcCleanMode (deleteOfMainMode=1, AoS=0)
    M  DpVmcGetVmByTmAdm: no VM found for T32/M0/I0
    M  ThSesGetSessionType: no associated entry
    M  ThSesIsJavaSessionId: no associated entry
    M  ThVmcCleanMode o.k.
    M  ThGetEnqInfo: no enq info found
    M  rdisp/cpic_snc_delete: -1 -> 0
    M  ThRmLocQueue: no async request found
    M  ThPlgCleanAll: clean all plugins of T32/M0/I0 (th_errno=0, level=3)
    M  ThPlgClean: clean plugin 0 of T32/M0 (th_errno=0)
    M  ThPlgClean: call cleanup handler
    M  ThPlgClean: clean server plugin
    M  DpSetContextCounter: num_used_contexts[1] = 0
    M  ThPageFree: free (10845,0,0, mode = 3)
    M  ThRollFree: free (10845,0,0, mode = 3)
    M  ThRmFree:  cleanup resources for T32 M0
    M  RmCleanUpResources3: hdr/tbl/ext_tbl/free/keep = 7000000600c9718/7000000b193bf50/0/1/0
    M  RmCleanUpResources3: call resource handler 180510808 for key/entry 10/0
    M  RmInitResourceTblEntry: free resource description  at 7000000b1940fc0 (ext_tbl=0)
    M  RmIFreeTable: free resource table at 7000000b193bf50 (ext_tbl=0)
    M  ThRmFree: reset eg state of T32 M0
    M  ThRmFree cleanup resources for T32
    M  RmCleanUpResources3: hdr/tbl/ext_tbl/free/keep = 7000000600cf348/0/1/1/0
    M  RmCleanUpResources3: no resources registered
    M  ThRmFree: reset eg state of T32
    M  ThInvalidateEnqMem: reset enq memory 7000000b193ccf0 of T32/M0
    M  ThIEmFree: delete hyper context (hyperHdl=7000000b1965600)
    M  ThIEmFree: call EmContextDelete (em_hdl=3)
    M  ThResFree: save spa pointer 1825d05d0 and install dummy spa
    M  ThClearMode: clear tid/mode 32/0 (next/prev 0/0)
    M  ThIUsrDel: set state of term T32 to TM_NEND
    M  ThISend: (tm/user/type/info = 32/PMCGARTY    /0x41/0x0, mode_deleted=1)
    M    TASK_SWITCH
    M    DISP
    M  in_ThErrHandle: 1
    M  ThIErrHandle: new stat of W0 is WP_SHUTDOWN   
    M  ThIErrHandle: I'm during shutdown
    M  PfStatDisconnect: disconnect statistics
    M  Entering ThSetStatError
    M  invalidate act fields from T32/M0
    M  ThCallDbBreak: use db_sqlbreak
    M  ThIErrHandle: don't try rollback again
    M  ThShutDownServer: shutdown server
    M  PfStatIndInit: Initializing Index-Record
    M  PfWriteIntoFile: copied shared buf (0 bytes) to local buf
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  NiIWrite: hdl 5 sent data (wrt=72,pac=1,MESG_IO)
    M  NiICloseHandle: shutdown and close hdl 5 / sock 9
    M  call ThrShutDown (1)...
    M  ThDBDisconnect: disconnect from data base
    B  Disconnecting from ALL connections:
    B  Wp  Hdl ConName          ConId     ConState     TX  PRM RCT TIM MAX OPT Date     Time   DBHost         
    B  000 000 R/3              000000000 INACTIVE     NO  YES NO  000 255 255 20080717 174857 biprd          
    C  SQL monitor stopped for job
    B  Disconnected from connection 0
    B  statistics db_con_commit (com_total=3, com_tx=0)
    B  statistics db_con_rollback (roll_total=1, roll_tx=0)
    M  ThDBDisconnect: disconnect o.k.
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 2490) [dpuxtool.c   269]
    M  Good Bye (-1).....
    The DEV_DISP trace fie show the following :
    Thu Jul 17 14:12:25 2008
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 27 (60secs)-> disconnecting [dpxxdisp.c   12401]
    RM-T27, U10596, 300       KPATIL, IBM-0C94DFEA52A, 13:10:38, M0, W0, RSA1, 2/2
    Thu Jul 17 14:37:27 2008
    ERROR => DpCheckTerminals: NiCheck2(rc=-23) failed for tid: 38 (60secs)-> disconnecting [dpxxdisp.c   12401]
    RM-T38, U10342, 300    RPYNDUPAL, IBM-4C1A50FA72C, 13:35:25, M1, W0, LIST, 3/2
    Thu Jul 17 17:46:41 2008
    SoftCancel request for T32 U10845 M0 received from IC_MAN
    Thu Jul 17 17:46:47 2008
    DpSigInt: caught signal 2
    DpHalt: shutdown server >biprd_BIP_00                            < (normal)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=91)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    Stop work processes
    Thu Jul 17 17:46:54 2008
    ERROR => DpWPCheck: W7 (pid 101) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=101) exited with exit code 255
    my types changed after wp death/restart 0xbf --> 0xb9
    ERROR => DpWPCheck: W8 (pid 104) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=104) exited with exit code 255
    ERROR => DpWPCheck: W10 (pid 106) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=106) exited with exit code 255
    my types changed after wp death/restart 0xb9 --> 0xa9
    my types changed after wp death/restart 0xa9 --> 0x89
    Thu Jul 17 17:46:59 2008
    ERROR => DpWPCheck: W9 (pid 105) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=105) exited with exit code 255
    Thu Jul 17 17:47:02 2008
    J2EE server info
      start = TRUE
      state = INACTIVE
      pid = 91
      start_lazy = 0
      start_control = SAP J2EE startup framework
    ERROR => DpWPCheck: W6 (pid 100) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=100) exited with exit code 255
    Thu Jul 17 17:47:08 2008
    ERROR => DpWPCheck: W1 (pid 95) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=95) exited with exit code 255
    ERROR => DpWPCheck: W2 (pid 96) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=96) exited with exit code 255
    ERROR => DpWPCheck: W11 (pid 107) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=107) exited with exit code 255
    Thu Jul 17 17:47:24 2008
    my types changed after wp death/restart 0x89 --> 0x81
    ERROR => DpWPCheck: W3 (pid 97) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=97) exited with exit code 255
    ERROR => DpWPCheck: W4 (pid 98) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=98) exited with exit code 255
    ERROR => DpWPCheck: W12 (pid 108) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=108) exited with exit code 255
    ERROR => DpWPCheck: W13 (pid 109) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=109) exited with exit code 255
    Thu Jul 17 17:47:50 2008
    Stop gateway
    Stop icman
    Terminate gui connections
    wait for end of work processes
    waiting for termination of work processes ...
    Thu Jul 17 17:47:51 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:51 2008
    ERROR => DpIcmMsgProcess: IcmRecMsg (rc=-8,-6) [dpxxdisp.c   18205]
    Thu Jul 17 17:47:52 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:52 2008
    ERROR => gateway (pid 89) died [dpxxdisp.c   15725]
    ERROR => Internet Communication Manager (pid 90) died [dpxxdisp.c   15811]
    MPI: emergency cleanup
    Thu Jul 17 17:47:53 2008
    DpSetProcessPriority: Run priority for icman adjusted to 12
    Thu Jul 17 17:47:53 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:54 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:55 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:56 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:57 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:58 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:47:59 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:00 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:01 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:02 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:03 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:04 2008
    ERROR => Got data for TM 38 in state != TM_CONNECTED/TM_NEND(stat=4) [dpxxdisp.c   2112]
    Thu Jul 17 17:48:04 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:05 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:06 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:07 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:08 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:09 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:10 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:11 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:12 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:13 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:15 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:16 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:17 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:18 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:19 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:20 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:21 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:22 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:23 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:24 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:25 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:26 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:27 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:28 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:29 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:30 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:31 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:32 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:33 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:34 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:35 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:36 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:37 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:38 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:39 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:40 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:41 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:42 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:43 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:44 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:45 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:46 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:47 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:48 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:49 2008
    waiting for termination of work processes ...
    Thu Jul 17 17:48:51 2008
    ERROR => DpHalt: W0 (pid 2483) still alive ... [dpxxdisp.c   10124]
    Thu Jul 17 17:48:56 2008
    DpJ2eeMsgProcess: j2ee state = INACTIVE (NIECONN_BROKEN)
    DpIJ2eeShutdown: send SIGINT to SAP J2EE startup framework (pid=91)
    DpIJ2eeShutdown: j2ee state = SHUTDOWN
    ERROR => DpWPCheck: W0 (pid 2483) died (severity=0, status=589833) [dpxxdisp.c   14923]
    child (pid=2483) killed with signal 9
    Thu Jul 17 17:48:57 2008
    DpSetProcessPriority: Run priority for work process startup adjusted to 20
    Thu Jul 17 17:49:13 2008
    ERROR => DpWPCheck: W0 (pid 2490) died (severity=0, status=65280) [dpxxdisp.c   14923]
    child (pid=2490) exited with exit code 255
    my types changed after wp death/restart 0x81 --> 0x80
    DP_FATAL_ERROR => DpWPCheck: no more work processes
    DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=21
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Thu Jul 17 17:49:23 2008
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long)               Thu Jul 17 21:49:23 2008
    ========================
    No Ty. Pid      Status  Cause Start Err Sem CPU    Time  Program          Cl  User         Action                    Table
    0 DIA     2490 Ended         no      4   0        0                                      Sequential Read           /BI0/D0SD_
    1 DIA       95 Ended         no      9   0        0                                                                         
    2 DIA       96 Ended         no      9   0        0                                                                         
    3 DIA       97 Ended         no      8   0        0                                                                         
    4 DIA       98 Ended         no      8   0        0                                                                         
    5 DIA       99 Ended         no      9   0        0                                                                         
    6 DIA      100 Ended         no     11   0        0                                                                         
    7 UPD      101 Ended         no     13   0        0                                                                         
    8 ENQ      104 Ended         no     13   0        0                                                                         
    9 BTC      105 Ended         no     12   0        0                                                                         
    10 BTC      106 Ended         no     13   0        0                                                                         
    11 BTC      107 Ended         no      9   0        0                                                                         
    12 BTC      108 Ended         no      8   0        0                                                                         
    13 BTC      109 Ended         no      8   0        0                                                                         
    14 SPO      110 Ended         no     13   0        0                                                                         
    15 UP2      111 Ended         no     13   0        0                                                                         
    Dispatcher Queue Statistics               Thu Jul 17 21:49:23 2008
    ===========================
    --------++++--
    +
    Typ
    now
    high
    max
    writes
    reads
    --------++++--
    +
    NOWP
    0
    5
    2000
    336608
    336608
    --------++++--
    +
    DIA
    20
    22
    2000
    94495
    94475
    --------++++--
    +
    UPD
    0
    1
    2000
    4
    4
    --------++++--
    +
    ENQ
    0
    0
    2000
    0
    0
    --------++++--
    +
    BTC
    0
    2
    2000
    9554
    9554
    --------++++--
    +
    SPO
    0
    2
    2000
    6561
    6561
    --------++++--
    +
    UP2
    0
    0
    2000
    0
    0
    --------++++--
    +
    max_rq_id          2200
    wake_evt_udp_now     0
    wake events           total387923,  udp369152 ( 95%),  shm 18771 (  4%)
    since last update     total387923,  udp369152 ( 95%),  shm 18771 (  4%)
    Dump of tm_adm structure:               Thu Jul 17 21:49:23 2008
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    AP-T23, U10717, 300   WKACZMAREK, 127.0.1.15, 15:28:40, M0, W1,     , 1/0
    AP-T31, U10833, 000       TMSADM, DmcmorrisLT1, 17:41:18, M0, W0,     , 1/0
    AP-T33, U10843, 300       SAPJSF, biprd.nycus.pharma, 17:42:01, M0, W0,     , 1/0
    RM-T39, U10847,                 , MNYLT0004, 17:48:19, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks               Thu Jul 17 21:49:23 2008
    =============================
    Slots: 300, Used: 5, Max: 21
    --------++--
    +
    id
    owner
    pid
    eyecatcher
    ---

    Hi Ingrid
    Thanks a lot for the response.
    That parameter is right now set to "0".
    But on reading the documentation for that parameter, it says you should change it only if SAP recommends you to do so.
    We checked in our other systems as well and all that is set to "0" as well.
    Will that be Ok to change the parameter to a different value?
    If yes, what is the value to be used?
    Thanks a lot

  • Ssl vpn

    Hi,
    We have ASA 5505 and working ok with remote VPN as well. but one of our user bought windows8 laptop and said Ciscp VPN does not work and need SSL VPN.
    We only had two anyconnect license so I configured anyconnect as well for him to use but he gets error Login Denied , unauthorized connection mechanism , contact your administrator 
    I looked on the net and found one of the suggestion to add
    vpn-tunnel-protocol svc webvpn
    I am not sure whether it would fix the problem or not. Plus I do not know how to inform the user to connect on the web to download the client.
    Please help.
    Thanks

    Have you gone through the troubleshooting section on this link? I would start making assesment, for example update the machines Java or at least that the machine meets Java requirements listed in link bellow troubleshooting section , also try using the latest rdp-plugin release 080506.
    Go over this
    http://www.cisco.com/en/US/products/ps6120/products_configuration_example09186a00808c0603.shtml
    Some more info here
    http://www.cisco.com/en/US/docs/security/asa/asa80/configuration/guide/webvpn.html#wp1292863
    Rgds
    Jorge

  • Disp+work stop because of shared memory?

    Hello Gurus, I have an SAP server that will not start. It was running previously, but after a parameter update and an instance restart, I cannot get the dispatcher running.
    System is Windows 2012 Server, MSSQL 2008 R2, 16 Core 132 GB RAM.
    I believe it is related to shared memory overlapping somehow, but  I am not sure how to resolve or investigate. I have had issues previously with memory overlap halting SAP servers with Diagnostics Agents, but this server is not currently running any DAA. It is running SAPRouter and some SAP Web Dispatcher instances.
    I will include my trace files below:
    Please help!
    DEV_W0:
    trc file: "dev_w0", trc level: 1, release: "721"
    *  ACTIVE TRACE LEVEL           1
    *  ACTIVE TRACE COMPONENTS      all, MJ
    M sysno      00
    M sid        PRD
    M systemid   562 (PC with Windows NT)
    M relno      7210
    M patchlevel 0
    M patchno    100
    M intno      20020600
    M make       multithreaded, Unicode, 64 bit, optimized
    M profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    M pid        7668
    M
    M  kernel runs with dp version 137000(ext=119000) (@(#) DPLIB-INT-VERSION-137000-UC)
    M  length of sys_adm_ext is 588 bytes
    M  ***LOG Q0Q=> tskh_init, WPStart (Workp. 0 7668) [dpxxdisp.c   1376]
    I  MtxInit: 30000 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    M  DpIPCInit2: read dp-profile-values from sys_adm_ext
    M  DpShMCreate: sizeof(wp_adm) 42864 (2256)
    M  DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    M  DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    M  DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    M  DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    M  DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    M  DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    M  DpShMCreate: sizeof(slock_adm) 0 (296)
    M  DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    M  DpShMCreate: sizeof(file_adm) 0 (80)
    M  DpShMCreate: sizeof(vmc_adm) 0 (2160)
    M  DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    M  DpShMCreate: sizeof(gw_adm) 48
    M  DpShMCreate: sizeof(j2ee_adm) 3952
    M  DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000000200050, size: 7174832)
    M  DpShMCreate: allocated sys_adm at 0000000000200060
    M  DpShMCreate: allocated wp_adm_list at 00000000002030B0
    M  DpShMCreate: allocated wp_adm at 00000000002032A0
    M  DpShMCreate: allocated tm_adm_list at 000000000020DA20
    M  DpShMCreate: allocated tm_adm at 000000000020DA70
    M  DpShMCreate: allocated wp_ca_adm at 0000000000750980
    M  DpShMCreate: allocated appc_ca_adm at 0000000000760390
    M  DpShMCreate: allocated comm_adm at 000000000076FDA0
    M  DpShMCreate: system runs without slock table
    M  DpShMCreate: system runs without file table
    M  DpShMCreate: allocated vmc_adm_list at 00000000008C1C40
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated gw_adm at 00000000008C1CF0
    M  DpShMCreate: allocated j2ee_adm at 00000000008C1D30
    M  DpShMCreate: allocated ca_info at 00000000008C2CB0
    M  DpShMCreate: allocated wall_adm at 00000000008C2D40
    M  DpCommAttachTable: attached comm table (header=000000000076FDA0/ft=000000000076FDB0)
    M  DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    M  rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  <ES> EsILock: use spinlock for locking
    X  Using implementation view
    X  <EsNT> Using memory model view.
    M  <EsNT> Memory Reset disabled as NT default
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    M  DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    M
    M Fri May 16 01:23:14 2014
    M  ThStart: taskhandler started
    M  ThInit: initializing DIA work process W0
    M
    M Fri May 16 01:23:15 2014
    M  ThInit: running on host SAPERP
    M
    M Fri May 16 01:23:16 2014
    M  calling db_connect ...
    B  Loading DB library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' ...
    B  Library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' loaded
    B  Version of 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll' is "721.02", patchlevel (0.44)
    C  Callback functions for dynamic profile parameter registered
    C  Thread ID:4168
    C  Thank You for using the SLODBC-interface
    C  Using dynamic link library 'E:\usr\sap\PRD\DVEBMGS00\exe\dbmssslib.dll'
    C  dbmssslib.dll patch info
    C    SAP patchlevel  0
    C    SAP patchno  100
    C    Last MSSQL DBSL patchlevel 0
    C    Last MSSQL DBSL patchno         44
    C    Last MSSQL DBSL patchcomment DBSL support for Microsoft ODBC Driver 11 for SQL Server (1816426)
    C  ODBC Driver chosen: SQL Server Native Client 11.0 native
    C  lpc:(local) connection used on SAPERP
    C  lpc:(local) connection used on SAPERP
    C  Driver: sqlncli11.dll Driver release: 11.00.3000
    C  GetDbRelease: 11.00.3339.00
    C  GetDbRelease: Got DB release numbers (11,0,3339,0)
    B  Connection 0 opened (DBSL handle 0)
    M  ThInit: db_connect o.k.
    M  ICT: exclude compression: *.zip,*.rar,*.arj,*.z,*.gz,*.tar,*.lzh,*.cab,*.hqx,*.ace,*.jar,*.ear,*.war,*.css,*.pdf,*.gzip,*.uue,*.bz2,*.iso,*.sda,*.sar,*.gif,*.png,*.swc,*.swf
    I
    I Fri May 16 01:23:17 2014
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF (addr: 0000000018030050, size: 4400000)
    M  SHM_ROLL_AREA (addr: 000007FFDDAB0050, size: 268435456)
    M  SHM_PAGING_AREA (addr: 0000000018470050, size: 134217728)
    M  SHM_ROLL_ADM (addr: 0000000020480050, size: 2767448)
    M  SHM_PAGING_ADM (addr: 0000000020730050, size: 787488)
    M  ThCreateNoBuffer allocated 548152 bytes for 1000 entries at 0000000020800050
    M  ThCreateNoBuffer index size: 3000 elems
    M  ThCreateVBAdm allocated 31056 bytes (50 server) at 0000000000910050
    X  EmInit: MmSetImplementation( 2 ).
    X  MM global diagnostic options set: 0
    X  <ES> client 0 initializing ....
    X  Using implementation view
    X  ES initialized.
    X  mm.dump: set maximum dump mem to 96 MB
    B
    B Fri May 16 01:23:18 2014
    B  db_con_shm_ini:  WP_ID = 0, WP_CNT = 19, CON_ID = -1
    B  dbtbxbuf: Buffer TABL  (addr: 0000000027280160, size: 90000000, end: 000000002C854BE0)
    B  dbtbxbuf: Buffer TABLP (addr: 000000002C860160, size: 20480000, end: 000000002DBE8160)
    B  dbsync[db_syinit]: successfully attached to shared memory, sync_adm_p = 0000000011BE0050
    B  dbsync[db_syinit]: Buffer synchronisation started with
    B    sync_concept      = SEQ_NR
    B    sendon            = 1
    B    bufreftime        = 120
    B    max_gap_wait_time = 60
    B    ddlog_del_time    = 60
    B    last_counter      = 702514
    B    oldest_gap        = (2147483647,00000000000000)
    B    time_of_last_sync = 20140516012317
    B    MySysId           = 'SAPERP              00'
    B  dbexpbuf[EXP_SHB]: buffer EIBUF installed with
    B    semkey             = 35
    B    shmkey             = 54
    B    wp_n               = 19
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 16384
    B    free_vec_lg        = 65
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_SHM]: buffer ESM   installed with
    B    semkey             = 56
    B    shmkey             = 65
    B    wp_n               = 19
    B    sclass             = 0
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 16384
    B    free_vec_lg        = 65
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_CUA]: buffer CUA   installed with
    B    semkey             = 30
    B    shmkey             = 47
    B    wp_n               = 19
    B    sclass             = 10
    B    block_length       = 512
    B    max_objects        = 1500
    B    max_obj_size       = 626016
    B    pref_obj_size      = 0
    B    est_large_obj_size = 98304
    B    free_vec_lg        = 193
    B    hash_vec_size      = 3001
    B    buffer_l           = 3072000
    B    max_blocks         = 4892
    B    free_blocks        = 4892
    B    mutex_n            = 3001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    B  dbexpbuf[EXP_OTR]: buffer OTR   installed with
    B    semkey             = 55
    B    shmkey             = 64
    B    wp_n               = 19
    B    sclass             = 13
    B    block_length       = 256
    B    max_objects        = 2000
    B    max_obj_size       = 859872
    B    pref_obj_size      = 0
    B    est_large_obj_size = 20480
    B    free_vec_lg        = 81
    B    hash_vec_size      = 4001
    B    buffer_l           = 4194304
    B    max_blocks         = 13438
    B    free_blocks        = 13438
    B    mutex_n            = 4001
    B    max_mtx_wait_time  = 17000
    B    recovery_delay     = 500000
    B    tracing            = 0
    B    force_checks       = 0
    B    protect_shm        = 0
    I  MPI: dynamic quotas disabled.
    I  MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    M  rdisp/thwpsf_critical_path : -1 -> 0
    M  CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    M  CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    G  RelWritePermissionForShm( pLocation = 120, pEnforce = 0 )
    G  GetWritePermissionForShm( pLocation =  99, pEnforce = 1 )
    G  RelWritePermissionForShm( pLocation = 100, pEnforce = 1 )
    S  *** init spool environment
    S  TSPEVJOB updates outside critical section: event_update_nocsec = 1
    S  initialize debug system
    T  Stack direction is downwards.
    T  debug control: prepare exclude for printer trace
    T  new memory block 0000000034052380
    S  spool kernel/ddic check: Ok
    S  using table TSP02FX for frontend printing
    S  1 spool work process(es) found
    S  frontend print via spool service enabled
    S  printer list size is 150
    S  printer type list size is 50
    S  queue size (profile)   = 300
    S  hostspool list size = 3000
    S  option list size is 30
    S      found processing queue enabled
    S  found spool memory service RSPO-RCLOCKS at 00000000382B00D0
    S  doing lock recovery
    S  setting server cache root
    S  found spool memory service RSPO-SERVERCACHE at 00000000382B06A0
    S    using messages for server info
    S  size of spec char cache entry: 297032 bytes (timeout 100 sec)
    S  size of open spool request entry: 2512 bytes
    S  immediate print option for implicitely closed spool requests is disabled
    A  ***GENER* Trace switched on ***
    A
    A  ---PXA-------------------------------------------
    A  PXA INITIALIZATION
    A  PXA: Locked PXA-Semaphore.
    A  System page size: 4kb, total admin_size: 23104kb, dir_size: 22312kb.
    A  Attached to PXA (address 000007FFEDAE0050, size 300000K, 1 fragments of 276896K )
    A  PXA allocated (address 000007FFEDAE0050, size 300000K)
    A  abap/pxa = shared protect gen_remote
    A  PXA: checking structure sizes: 752|272|16
    A  PXA INITIALIZATION FINISHED
    A  ---PXA-------------------------------------------
    A
    A  ATRA: pfclock execution time = 0
    A  abap/force_local_update_task=0
    A  ABAP ShmAdm attached (addr=000007DFDF142000 leng=20955136 end=000007DFE053E000)
    A  >> Shm MMADM area (addr=000007DFDF639B80 leng=242240 end=000007DFDF674DC0)
    A  >> Shm MMDAT area (addr=000007DFDF675000 leng=15503360 end=000007DFE053E000)
    A  RFC Destination> destination SAPERP_PRD_00 host SAPERP system PRD systnr 0 (SAPERP_PRD_00)
    A  RFC Options> H=SAPERP,S=00,d=2,
    A  RFC FRFC> fallback activ but this is not a central instance.
    A  
    A  RFC rfc/signon_error_log = -1
    A  RFC rfc/dump_connection_info = 0
    A  RFC rfc/dump_client_info = 0
    A  RFC rfc/cp_convert/ignore_error = 1
    A  RFC rfc/cp_convert/conversion_char = 23
    A  RFC rfc/wan_compress/threshold = 251
    A  RFC rfc/recorder_pcs not set, use defaule value: 2
    A  RFC rfc/delta_trc_level not set, use default value: 0
    A  RFC rfc/no_uuid_check not set, use default value: 0
    H  HTTP> Parameter icf/ssocookie_mandatory set to 0
    B  dbtran INFO (init_connection '<DEFAULT>' [MSSQL:721.02]):
    B   max_blocking_factor       =  50,  min_blocking_factor         =   5,
    B   max_in_blocking_factor    = 255,  min_in_blocking_factor      =  10,
    B   max_union_blocking_factor =  50,  min_union_blocking_factor   =   5,
    B   prefer_union_all          =   1,  prefer_join                 =   1,
    B   prefer_fix_blocking       =   0,  prefer_in_itab_opt          =   0,
    B   convert AVG               =   1,  alias table FUPD            =   0,
    B   escape_as_literal         =   0,                                 
    B   select *                  =0x00,  character encoding          = STD / []:X,
    B   use_hints                 = abap->1, dbif->0x1, upto->0
    M  ThrCreateShObjects allocated 39514 bytes at 0000000011C00050
    Y  dyWpInit
    Y    ztta/dynpro_ara 800000
    Y    ztta/cua_ara    500000
    Y    ztta/diag_ara   250000
    N  SsfSapSecin: getenv(SECUDIR)=="E:\usr\sap\PRD\DVEBMGS00/sec"
    N
    N  =================================================
    N  === SSF INITIALIZATION:
    N  ===...SSF Security Toolkit name SAPSECULIB .
    N  ===...SSF library is E:\usr\sap\PRD\DVEBMGS00\exe\sapcrypto.dll .
    N  ===...SSF default hash algorithm is SHA1 .
    N  ===...SSF default symmetric encryption algorithm is DES-CBC .
    N  ===...SECUDIR="E:\usr\sap\PRD\DVEBMGS00/sec"
    N  ===...loading of Security Toolkit successfully completed.
    N  ===   SAPCRYPTOLIB  5.5.5C pl32  (Apr  2 2011) MT-safe
    N  =================================================
    N
    N Fri May 16 01:23:20 2014
    N  MskiInitLogonTicketCacheHandle: Logon Ticket cache pointer retrieved from shared memory.
    N  MskiInitLogonTicketCacheHandle: Workprocess runs with Logon Ticket cache.
    M  JrfcVmcRegisterNativesDriver o.k.
    W  =================================================
    W  === ipl_Init() called
    W    ITS Plugin: Path dw_gui
    W    ITS Plugin: Description ITS Plugin - ITS rendering DLL
    W    ITS Plugin: sizeof(SAP_UC) 2
    W    ITS Plugin: Release: 721, [7210.0.100.20020600]
    W    ITS Plugin: Int.version, [34]
    W    ITS Plugin: Feature set: [31]
    W    ===... Calling itsp_Init in external dll ===>
    W  === ipl_Init() returns 0, ITSPE_OK: OK
    W  =================================================
    N  SignInit: successfully obtained handle for Security Context cache
    N  SPNegoInit: SPNego disabled ("spnego/enable" not set to 1)
    N  VSI: WP init in ABAP VM completed with rc=0
    E  EnqLockTableSizeCalculate: session quota = 100%
    E  EnqLockTableAttach2: attach to lock table (size = 33554432)
    E  EnqLockTableMapToLocalContext: enque/use_pfclock2 = FALSE
    E  EnqId_Initialize: local EnqId initialization o.k.
    M
    M Fri May 16 01:23:40 2014
    M  *** ERROR => ThPlgConnectToIcm: IcmReadAck failed (-8, ni_rc=-6) [thxxplg.c    5172]
    M  in_ThErrHandle: 1
    M  *** ERROR => ThStart: connect to icman (step 1, th_errno 2, action 3, level 1) [thxxhead.c   11348]
    M
    M  Info for wp 0
    M
    M    pid = 7668
    M    severity = 0
    M    status = 0
    M    stat = WP_NEW
    M    waiting_for = NO_WAITING
    M    reqtype = DP_RQ_DIAWP
    M    act_reqtype = NO_REQTYPE
    M    req.req_info =
    M    req.tid = -1
    M    req.uid = 4294967295
    M    req.mode = 255
    M    req.len = 0
    M    req.rq_id = 65535
    M    req.rq_source =
    M    last_tid = 0
    M    last_uid = 0
    M    last_mode = 0
    M    act_cs_count = 0
    M    csTrack = 0
    M    csTrackRwExcl = 0
    M    csTrackRwShrd = 0
    M    mode_cleaned_counter = 0
    M    control_flag = 0
    M    int_checked_resource(RFC) = 0
    M    ext_checked_resource(RFC) = 0
    M    int_checked_resource(HTTP) = 0
    M    ext_checked_resource(HTTP) = 0
    M    report = >                                        <
    M    action = 0
    M    tab_name = >                              <
    M    attachedVm = no VM
    M
    M  ThIErrHandle: current request:
    M
    M  -IN-- sender_id ?                 tid  -1    wp_ca_blk   -1      wp_id -1
    M  -IN-- action    -                 uid  -1    appc_ca_blk -1      type  -  
    M  -IN-- new_stat  NO_CHANGE         mode 255   len         0       rq_id -1
    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >TrThHookFunc< for event BEFORE_DUMP
    M  TrThHookFunc: called for WP dump
    M  ThCallHooks: hook >TrThHookFunc< o.k.
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  ThrSaveSPAFields: save spa fields
    M  ThrSaveSPAFields: not an update task, no update info saved
    M  ThrSaveSPAFields: not a batch task, field zttabtckey not saved
    M  ThCallHooks: hook >ThrSaveSPAFields< o.k.
    M  ThCallHooks: call hook >ThrBtcCallLgCl< for event BEFORE_DUMP
    M  ThCallHooks: hook >ThrBtcCallLgCl< o.k.
    M  ThIErrHandle: entering ThSetStatError
    M  ThIErrHandle: do not call ThrCoreInfo (no_core_info=0, in_dynp_env=0)
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workp. 0 7668) [dpnttool.c   339]
    DEV_DISP:
    trc file: "dev_disp", trc level: 1, release: "721"
    sysno      00
    sid        PRD
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    100
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    pid        4924
    kernel runs with dp version 137000(ext=119000) (@(#) DPLIB-INT-VERSION-137000-UC)
    length of sys_adm_ext is 588 bytes
    *** SWITCH TRC-HIDE on ***
    ***LOG Q00=> DpSapEnvInit, DPStart (00 4924) [dpxxdisp.c   1314]
      shared lib "dw_xml.dll" version 100 successfully loaded
      shared lib "dw_xtc.dll" version 100 successfully loaded
      shared lib "dw_stl.dll" version 100 successfully loaded
      shared lib "dw_gui.dll" version 100 successfully loaded
      shared lib "dw_mdm.dll" version 100 successfully loaded
      shared lib "dw_rndrt.dll" version 100 successfully loaded
      shared lib "dw_abp.dll" version 100 successfully loaded
      shared lib "dw_sym.dll" version 100 successfully loaded
      shared lib "dw_aci.dll" version 100 successfully loaded
    rdisp/softcancel_sequence :  -> 0,5,-1
    use internal message server connection to port 3900
    rdisp/dynamic_wp_check : 1
    rdisp/calculateLoadAverage : 1
    Fri May 16 01:23:12 2014
    *** WARNING => DpNetCheck: NiAddrToHost(1.0.0.0) took 4 seconds
    ***LOG GZZ=> 1 possible network problems detected - check tracefile and adjust the DNS settings [dpxxtool2.c  6438]
    MtxInit: 30000 0 0
    DpSysAdmExtInit: ABAP is active
    DpSysAdmExtInit: VMC (JAVA VM in WP) is not active
    DpIPCInit2: write dp-profile-values into sys_adm_ext
    DpIPCInit2: start server >SAPERP_PRD_00                           <
    DpShMCreate: sizeof(wp_adm) 42864 (2256)
    DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    DpShMCreate: sizeof(slock_adm) 0 (296)
    DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    DpShMCreate: sizeof(file_adm) 0 (80)
    DpShMCreate: sizeof(vmc_adm) 0 (2160)
    DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    DpShMCreate: sizeof(gw_adm) 48
    DpShMCreate: sizeof(j2ee_adm) 3952
    DpShMCreate: SHM_DP_ADM_KEY (addr: 0000000005460050, size: 7174832)
    DpShMCreate: allocated sys_adm at 0000000005460060
    DpShMCreate: allocated wp_adm_list at 00000000054630B0
    DpShMCreate: allocated wp_adm at 00000000054632A0
    DpShMCreate: allocated tm_adm_list at 000000000546DA20
    DpShMCreate: allocated tm_adm at 000000000546DA70
    DpShMCreate: allocated wp_ca_adm at 00000000059B0980
    DpShMCreate: allocated appc_ca_adm at 00000000059C0390
    DpShMCreate: allocated comm_adm at 00000000059CFDA0
    DpShMCreate: system runs without slock table
    DpShMCreate: system runs without file table
    DpShMCreate: allocated vmc_adm_list at 0000000005B21C40
    DpShMCreate: system runs without vmc_adm
    DpShMCreate: allocated gw_adm at 0000000005B21CF0
    DpShMCreate: allocated j2ee_adm at 0000000005B21D30
    DpShMCreate: allocated ca_info at 0000000005B22CB0
    DpShMCreate: allocated wall_adm at 0000000005B22D40
    DpCommAttachTable: attached comm table (header=00000000059CFDA0/ft=00000000059CFDB0)
    DpSysAdmIntInit: initialize sys_adm
    rdisp/test_roll : roll strategy is DP_NORMAL_ROLL
    dia token check not active (10 token)
    MBUF state OFF
    DpCommInitTable: init table for 500 entries
    DpRqQInit: keep protect_queue / slots_per_queue 0 / 2001 in sys_adm
    Fri May 16 01:23:13 2014
    rdisp/queue_size_check_value :  -> on,50,30,40,500,50,500,80
    EmInit: MmSetImplementation( 2 ).
    MM global diagnostic options set: 0
    <ES> client 0 initializing ....
    <ES> EsILock: use spinlock for locking
    <ES> InitFreeList
    <ES> block size is 4096 kByte.
    <ES> Info: em/initial_size_MB( 134981MB) not multiple of em/blocksize_KB( 4096KB)
    <ES> Info: em/initial_size_MB rounded up to 134984MB
    Using implementation view
    <EsNT> Using memory model view.
    <EsNT> Memory Reset disabled as NT default
    <ES> 33745 blocks reserved for free list.
    ES initialized.
    mm.dump: set maximum dump mem to 96 MB
    DpVmcSetActive: set vmc state DP_VMC_NOT_ACTIVE
    MPI: dynamic quotas disabled.
    MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    rdisp/http_min_wait_dia_wp : 1 -> 1
    ***LOG CPS=> DpLoopInit, ICU ( 4.0.1 4.0.1 5.1) [dpxxdisp.c   1700]
    Fri May 16 01:23:40 2014
    ***LOG Q0K=> DpMsAttach, mscon ( SAPERP) [dpxxdisp.c   12667]
    MBUF state LOADING
    DpStartStopMsg: send start message (myname is >SAPERP_PRD_00                           <)
    DpStartStopMsg: start msg sent
    CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    DpMBufHwIdSet: set Hardware-ID
    ***LOG Q1C=> DpMBufHwIdSet [dpxxmbuf.c   1296]
    MBUF state ACTIVE
    DpWpBlksLow: max wp blocks in queue is 800 (80 %)
    MBUF component UP
    DpMsgProcess: 1 server in MBUF
    DpAppcBlksLow: max appc blocks in queue is 500 (50 %)
    *** ERROR => DpIcmMsgProcess: IcmRecMsg (rc=-8,-6) [dpxxdisp.c   19121]
    Fri May 16 01:24:20 2014
    *** ERROR => DpHdlDeadWp: W0 (pid 7668) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W1 (pid 7456) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W2 (pid 8096) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W3 (pid 4376) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W4 (pid 3000) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W5 (pid 3520) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W6 (pid 7024) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W7 (pid 6172) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W8 (pid 6576) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W9 (pid 7756) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W10 (pid 624) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W11 (pid 7468) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W12 (pid 1176) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W13 (pid 6812) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W14 (pid 6968) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W15 (pid 5036) died (severity=0, status=0) [dpxxwp.c     1729]
    *** ERROR => DpHdlDeadWp: W16 (pid 5576) died (severity=0, status=0) [dpxxwp.c     1729]
    *** DP_FATAL_ERROR => DpWPCheck: no more work processes
    *** DISPATCHER EMERGENCY SHUTDOWN ***
    increase tracelevel of WPs
    NiWait: sleep (10000ms) ...
    NiISelect: timeout 10000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:30 2014
    NiISelect: TIMEOUT occured (10000ms)
    dump system status
    Workprocess Table (long) Fri May 16 07:24:30 2014
    ========================
    No Type  Pid    Status  Cause Start Rstr  Err Sem Time Program          Cl  User         Action                    Table
    0 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    1 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    2 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    3 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    4 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    5 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    6 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    7 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    8 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    9 DIA       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    10 UPD       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    11 ENQ       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    12 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    13 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    14 BTC       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    15 SPO       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    16 UP2       -1 Ended         no    no     1   0    0                                    NO_ACTION                         
    Dispatcher Queue Statistics Fri May 16 07:24:30 2014
    ===========================
    +------+--------+--------+--------+------------+------------+
    |  Typ |    now |   high |    max | writes     |  reads     |
    +------+--------+--------+--------+------------+------------+
    | NOWP |      1 |     33 |   2000 |         43 |         42 |
    +------+--------+--------+--------+------------+------------+
    |  DIA |      5 |      5 |   2000 |          5 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UPD |      1 |      1 |   2000 |          1 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  ENQ |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  BTC |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  SPO |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    |  UP2 |      0 |      0 |   2000 |          0 |          0 |
    +------+--------+--------+--------+------------+------------+
    max_rq_id 40
    wake_evt_udp_now 0
    wake events       total    40,  udp     5 ( 12%),  shm    35 ( 87%)
    since last update total    40,  udp     5 ( 12%),  shm    35 ( 87%)
    DpGetLoadAverage: la1[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[1] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[1] = 0.055556 / -1.000000 %
    Dispatcher Load Statistics
    +------+---------+---------+---------+
    |  Typ |     LA1 |     LA5 |    LA15 |
    +------+---------+---------+---------+
    |  DIA |   0.000 |   0.000 |   0.056 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[2] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[2] = 0.011111 / -1.000000 %
    |  UPD |   0.000 |   0.000 |   0.011 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[3] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[3] = 0.000000 / -1.000000 %
    |  ENQ |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[4] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[4] = 0.000000 / -1.000000 %
    |  BTC |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[5] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[5] = 0.000000 / -1.000000 %
    |  SPO |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    DpGetLoadAverage: la1[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la5[6] = 0.000000 / -1.000000 %
    DpGetLoadAverage: la15[6] = 0.000000 / -1.000000 %
    |  UP2 |   0.000 |   0.000 |   0.000 |
    +------+---------+---------+---------+
    Dump of tm_adm structure: Fri May 16 07:24:30 2014
    =========================
    Term    uid  man user    term   lastop  mod wp  ta   a/i (modes)
    RM-T19, U20,                 , , 01:23:40, M0, W-1,     , 1/0
    Workprocess Comm. Area Blocks Fri May 16 07:24:30 2014
    =============================
    Slots: 1000, Used: 2, Max: 46
    +------+--------------+----------+-------------+
    |   id | owner        |   pid    | eyecatcher  |
    +------+--------------+----------+-------------+
    |    0 | DISPATCHER   |       -1 | 0xdeadbeef |
    |  546 | DISPATCHER   |       -1 | 0xdeadbeef |
    NiWait: sleep (5000ms) ...
    NiISelect: timeout 5000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:35 2014
    NiISelect: TIMEOUT occured (5000ms)
    DpHalt: shutdown server >SAPERP_PRD_00                           < (normal)
    DpJ2eeDisableRestart
    DpMBufRead: read server list from MBUF (1 entries)
    DpMBufMod: name [SAPERP_PRD_00                           ], types 191 state 3 (0x0 0x0 0x0 0x0)
    DpMBufMod: call hooks for event MBUF_DPEVT_DSTATE (5->3)
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/limit/max = 2/800/1000
    DpLockWpBlkEx: lock wp ca_blk 1
    make DISP owner of wp_ca_blk 1
    DpRqIPutIntoQ: put elem in queue DIA, elems=6
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 41)
    MBUF server state SHUTDOWN
    DpModState: change state STARTING -> SHUTDOWN
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIModState: change state to SHUTDOWN
    DpModState: change server state from STARTING to SHUTDOWN
    DpHalt: switch off Shared memory profiling
    ShmProtect( 57, 3 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RW
    ShmProtect( 57, 1 )
    ShmProtect(SHM_PROFILE, SHM_PROT_RD
    DpWakeUpWps: wake up all wp's
    DpHalt: stop work processes
    DpHalt: stop gateway
    killing process (7752) (SOFT_KILL)
    DpHalt: stop icman
    killing process (5940) (SOFT_KILL)
    DpHalt: terminate gui connections
    send SHUTDOWN to REM TM 19
    DpWpBlksLow: wp_blks_in_queue/limit/max = 3/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    return errno (-17) to T19
    DpTmSend: errormsg without overhead: use mode 0
    NiBufIAlloc: malloc NiBufadm, to 0 bytes
    DpTmSend: try to send 14 bytes to T19/M0
    NiBufSend starting
    NiIWrite: hdl 25 sent data (wrt=14,pac=1,MESG_IO)
    REL WP ca_blk 2
    set status of T19 to TM_DISCONNECTED
    NiBufISelUpdate: new MODE -- (r-) for hdl 25 in set0
    SiSelNSet: set events of sock 1440 to: ---
    NiBufISelRemove: remove hdl 25 from set0
    SiSelNRemove: removed sock 1440 (pos=3)
    SiSelNRemove: removed sock 1440
    NiSelIRemove: removed hdl 25
    DpDelSocketInfo: del info for nihdl 25 (pos/type=3/3)
    NiICloseHandle: shutdown and close hdl 25/sock 1440
    NiBufIClose: clear extension for hdl 25
    dp_tm_adm[19].stat = DP_SLOT_FREE
    DpGetSchedule: next schedule 1400225080/234000
    DpGetSchedule: no schedule found
    DpITmSlotRelease: release slot 19
    DpListRemove: remove elem 19 from tmadm_inuse_list
    DpListRemove: 19 elems in tmadm_inuse_list
    DpListInsert: insert elem 19 into tmadm_free_list (at begin)
    DpListInsert: 182 elems in tmadm_free_list
    DpHalt: wait for end of work processes
    DpHalt: wait for end of gateway
    [DpProcDied] Process lives  (PID:7752  HANDLE:1300)
    DpHalt: waiting for termination of gateway ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:36 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:7752  HANDLE:1300  rc:0x0) [dpnttool2.c  147]
    DpHalt: wait for end of icman
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:37 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:38 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:39 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:40 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:41 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:42 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:43 2014
    NiISelect: TIMEOUT occured (1000ms)
    [DpProcDied] Process lives  (PID:5940  HANDLE:1296)
    DpHalt: waiting for termination of icman ...
    NiWait: sleep (1000ms) ...
    NiISelect: timeout 1000ms
    NiISelect: maximum fd=1445
    NiISelect: read-mask is NULL
    NiISelect: write-mask is NULL
    Fri May 16 01:24:44 2014
    NiISelect: TIMEOUT occured (1000ms)
    *** ERROR => [DpProcDied] Process died  (PID:5940  HANDLE:1296  rc:0x0) [dpnttool2.c  147]
    DpStartStopMsg: send stop message (myname is >SAPERP_PRD_00                           <)
    DpStartStopMsg: Write AD_STARTSTOP message with type=  0, name=SAPERP_PRD_00       , sapsysnr= 0, hostname=SAPERP                                                        
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 4 (AD_STARTSTOP), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 4
    AdCallRegisteredCvtToExt: opcode 4 call 000007F7B2BB1470
    AdCallRegisteredCvtToExt: opcode 4 exit rc=SAP_O_K
    DpConvertRequest: net size = 189 bytes
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=562,pac=1,MESG_IO)
    MsINiWrite: sent 562 bytes
    MsISnd2: send msg (ms hdr/msg 110/452 bytes) to name                    -, type 4, key -
    DpStartStopMsg: stop msg sent
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 17 received data (rcd=274,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=274
    NiBufIIn: packet complete for hdl 17
    NiBufReceive starting
    MsINiRead: received 274 bytes
    MsIReceive: received msg (ms hdr/msg 110/164 bytes), flag 1, from MSG_SERVER          , typ 0, key -
    DpHalt: received 164 bytes from message server
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    NiIRead: read for hdl 17 timed out (0ms)
    DpHalt: more messages from the message server
    DpHalt: send keepalive to synchronize with the message server
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=114,pac=1,MESG_IO)
    MsINiWrite: sent 114 bytes
    MsISnd2: send msg (ms hdr/msg 110/4 bytes) to name           MSG_SERVER, type 0, key -
    MsSndName: MS_NOOP ok
    Send 4 bytes to MSG_SERVER
    NiBufIAlloc: malloc MSLIB-BUF, to 32110 bytes
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    NiIPeek: peek successful for hdl 17 (r)
    NiBufIAlloc: malloc NIBUF-IN, to 32110 bytes
    NiIRead: hdl 17 received data (rcd=114,pac=1,MESG_IO)
    NiBufIIn: NIBUF len=114
    NiBufIIn: packet complete for hdl 17
    NiBufReceive starting
    MsINiRead: received 114 bytes
    MsIReceive: received msg (ms hdr/msg 110/4 bytes), flag 3, from MSG_SERVER          , typ 0, key -
    Received 4 bytes from MSG_SERVER                            
    Received opcode MS_NOOP from msg_server, reply MSOP_OK
    MsOpReceive: ok
    MsISendKeepalive : keepalive sent to message server
    NiIRead: hdl 17 recv would block (errno=EAGAIN)
    Fri May 16 01:24:45 2014
    NiIPeek: peek for hdl 17 timed out (r; 1000ms)
    NiIRead: read for hdl 17 timed out (1000ms)
    DpHalt: no more messages from the message server
    DpHalt: sync with message server o.k.
    DpHalt: detach from message server
    ***LOG Q0M=> DpMsDetach, ms_detach () [dpxxdisp.c   13064]
    NiBufSend starting
    NiIWrite: hdl 17 sent data (wrt=110,pac=1,MESG_IO)
    MsINiWrite: sent 110 bytes
    MsIDetach: send logout to msg_server (SAPERP / 3900)
    MsIDetach: call exit function
    DpMsShutdownHook called
    NiBufISelUpdate: new MODE -- (r-) for hdl 17 in set0
    SiSelNSet: set events of sock 1400 to: ---
    NiBufISelRemove: remove hdl 17 from set0
    SiSelNRemove: removed sock 1400 (pos=2)
    SiSelNRemove: removed sock 1400
    NiSelIRemove: removed hdl 17
    DpDelSocketInfo: del info for nihdl 17 (pos/type=2/4)
    MBUF state OFF
    AdGetSelfIdentRecord: >                                                                           <
    AdCvtRecToExt: opcode 60 (AD_SELFIDENT), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 60
    AdCallRegisteredCvtToExt: opcode 60 call 000007F7B2B8B6E0
    AdCallRegisteredCvtToExt: opcode 60 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    AdCvtRecToExt: opcode 40 (AD_MSBUF), ser 0, ex 0, errno 0
    AdCallRegisteredCvtToExt: opcode 40
    AdCallRegisteredCvtToExt: opcode 40 call 000007F7B3297650
    AdCallRegisteredCvtToExt: opcode 40 exit rc=SAP_O_K
    DpWpBlksLow: wp_blks_in_queue/limit/max = 3/800/1000
    DpLockWpBlkEx: lock wp ca_blk 2
    make DISP owner of wp_ca_blk 2
    DpRqIPutIntoQ: put elem in queue DIA, elems=7
    DpRqPutIntoQueue: put request into queue (reqtype 1, prio LOW, rq_id 44)
    MBUF component DOWN
    NiICloseHandle: shutdown and close hdl 17/sock 1400
    NiBufIClose: clear extension for hdl 17
    MsIDetach: detach MS-system (SAPERP / 3900)
    DpHalt: cleanup EM
    EsCleanup( )
    EsCleanup ....
    EmCleanup() -> 0
    Es2Cleanup: Cleanup ES2
    ***LOG Q05=> DpHalt, DPStop ( 4924) [dpxxdisp.c   11574]
    DpHalt: Good Bye .....
    SAPSTARTSRV
    trc file: "sapstartsrv.log", trc level: 0, release: "721"
    pid        6196
    [Thr 6528] Fri May 16 00:38:09 2014
    SAP HA Trace: SAP Microsoft Cluster library '721, patch 100, changelist 1397439' initialized
    CCMS agent initialization for instance type ABAP: return code 0.
    CCMS agent start: return code 0.
    Initializing SAPControl Webservice
    Starting AutoRestart thread
    AutoRestart thread started, version check is enabled
    SapSSLInit failed => https support disabled
    Starting WebService Named Pipe thread
    Starting WebService thread
    Webservice named pipe thread started, listening on port \\.\pipe\sapcontrol_00
    Webservice thread started, listening on port 50013
    \sapadmin is starting SAP System at 2014/05/16  0:38:18
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is stopping SAP System at 2014/05/16  0:49:10
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is starting SAP System at 2014/05/16  0:50:47
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \sapadmin is stopping SAP System at 2014/05/16  1:21:22
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]
    \prdadm is starting SAP System at 2014/05/16  1:23:04
    SAP HA Trace: FindClusterResource: OpenCluster failed: 1753 [sapwinha.cpp, line 213]
    SAP HA Trace: SAP_HA_FindSAPInstance returns: SAP_HA_FAIL [sapwinha.cpp, line 920]

    Hi Alwina, here is the DEV_ICM trace:
    From this trace, it appears that it is listening to 65000?
    Netstat shows that the system is listening to 127.0.0.1:65000 .
    Other SAP ports show listening on 0:0:0:0:xxxx , is ICM listening on 127 a problem?
    trc file: "dev_icm", trc level: 1, release: "721"
    sysno      00
    sid        PRD
    systemid   562 (PC with Windows NT)
    relno      7210
    patchlevel 0
    patchno    43
    intno      20020600
    make       multithreaded, Unicode, 64 bit, optimized
    profile    \\SAPERP\sapmnt\PRD\SYS\profile\PRD_DVEBMGS00_SAPERP
    pid        5940
    [Thr 1812] Fri May 16 01:23:13 2014
    [Thr 1812] Parameter system/type has value: "ABAP"
    [Thr 1812] started security log to file ./dev_icm_sec
    [Thr 1812] ICM running on:
    [Thr 1812] MtxInit: 30001 0 2
    [Thr 1812] ***LOG IM1=> IcmInit, Startup (ICM&SAPERP.CORP.CANSEL.CA&5940&) [icxxman.c    1934]
    [Thr 1812] IcmInit: listening to admin port: 65000
    [Thr 1812] DpSysAdmExtCreate: ABAP is active
    [Thr 1812] DpSysAdmExtCreate: VMC (JAVA VM in WP) is not active
    [Thr 1812] DpIPCInit2: read dp-profile-values from sys_adm_ext
    [Thr 1812] DpShMCreate: sizeof(wp_adm) 42864 (2256)
    [Thr 1812] DpShMCreate: sizeof(tm_adm) 5517056 (27448)
    [Thr 1812] DpShMCreate: sizeof(wp_ca_adm) 64000 (64)
    [Thr 1812] DpShMCreate: sizeof(appc_ca_adm) 64000 (64)
    [Thr 1812] DpCommTableSize: max/headSize/ftSize/tableSize=500/16/1384064/1384080
    [Thr 1812] DpShMCreate: sizeof(comm_adm) 1384080 (2744)
    [Thr 1812] DpSlockTableSize: max/headSize/ftSize/fiSize/tableSize=0/0/0/0/0
    [Thr 1812] DpShMCreate: sizeof(slock_adm) 0 (296)
    [Thr 1812] DpFileTableSize: max/headSize/ftSize/tableSize=0/0/0/0
    [Thr 1812] DpShMCreate: sizeof(file_adm) 0 (80)
    [Thr 1812] DpShMCreate: sizeof(vmc_adm) 0 (2160)
    [Thr 1812] DpShMCreate: sizeof(wall_adm) (41664/42896/64/192)
    [Thr 1812] DpShMCreate: sizeof(gw_adm) 48
    [Thr 1812] DpShMCreate: sizeof(j2ee_adm) 3952
    [Thr 1812] DpShMCreate: SHM_DP_ADM_KEY (addr: 00000000022F0050, size: 7174832)
    [Thr 1812] DpShMCreate: allocated sys_adm at 00000000022F0060
    [Thr 1812] DpShMCreate: allocated wp_adm_list at 00000000022F30B0
    [Thr 1812] DpShMCreate: allocated wp_adm at 00000000022F32A0
    [Thr 1812] DpShMCreate: allocated tm_adm_list at 00000000022FDA20
    [Thr 1812] DpShMCreate: allocated tm_adm at 00000000022FDA70
    [Thr 1812] DpShMCreate: allocated wp_ca_adm at 0000000002840980
    [Thr 1812] DpShMCreate: allocated appc_ca_adm at 0000000002850390
    [Thr 1812] DpShMCreate: allocated comm_adm at 000000000285FDA0
    [Thr 1812] DpShMCreate: system runs without slock table
    [Thr 1812] DpShMCreate: system runs without file table
    [Thr 1812] DpShMCreate: allocated vmc_adm_list at 00000000029B1C40
    [Thr 1812] DpShMCreate: system runs without vmc_adm
    [Thr 1812] DpShMCreate: allocated gw_adm at 00000000029B1CF0
    [Thr 1812] DpShMCreate: allocated j2ee_adm at 00000000029B1D30
    [Thr 1812] DpShMCreate: allocated ca_info at 00000000029B2CB0
    [Thr 1812] DpRqQInit: use protect_queue / slots_per_queue 0 / 2001 from sys_adm
    [Thr 1812] MPI: dynamic quotas disabled.
    [Thr 1812] MPI init: pipes=4000 buffers=1279 reserved=383 quota=10%
    [Thr 1812] CCMS: initialize CCMS Monitoring for ABAP instance with J2EE addin.
    [Thr 1812] CCMS: SemInMgt: Semaphore Management initialized by AlAttachShm_Doublestack.
    [Thr 1812] Fri May 16 01:23:14 2014
    [Thr 1812] CCMS: SemInit: Semaphore 38 initialized by AlAttachShm_Doublestack.
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 0
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 1
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 2
    [Thr 6912] IcmProxyWatchDog: proxy watchdog started
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 3
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 4
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 5
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 6
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 7
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 8
    [Thr 1812] IcmCreateWorkerThreads: created worker thread 9
    [Thr 4024] IcmMpiWatchDogThread: MPI watchdog started
    [Thr 4400] IcmWatchDogThread: watchdog started
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpFileAccessHandler(000000000C2E2750), slot=0, flags=4098) for /sap/public/icmandir/, active: 1, table 000000000C2E24C0
    [Thr 6524] ISC: created 400 MB disk cache.
    [Thr 6524] ISC: created 50 MB memory cache.
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpCacheHandler(000000000C3EB4B0), slot=1, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpExtractArchive: files from archive E:\usr\sap\PRD\DVEBMGS00\exe/icmadmin.SAR in directory E:/usr/sap/PRD/DVEBMGS00/data/icmandir are up to date
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpAdminHandler(000000000C461480), slot=2, flags=36869) for /sap/admin, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpModHandler(000000000C461570), slot=3, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] CsiInit(): Initializing the Content Scan Interface
    [Thr 6524]            PC with Windows NT (mt,unicode,SAP_CHAR/size_t/void* = 16/64/64)
    [Thr 6524] CsiInit(): CSA_LIB = "E:\usr\sap\PRD\DVEBMGS00\exe\sapcsa.dll"
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpAuthHandler(000000000C4615F0), slot=4, flags=12293) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] HttpISubHandlerAdd: Added handler HttpSAPR3Handler(000000000C4AFAE0), slot=5, flags=1052677) for /, active: 1, table 000000000C2E24C0
    [Thr 6524] Started service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 6524] Started service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 6524] Fri May 16 01:23:18 2014
    [Thr 6524] IcmNetCheck: network check passed without detecting problems
    [Thr 4268] Fri May 16 01:23:24 2014
    [Thr 4268] HttpExtractArchive: files from archive E:\usr\sap\PRD\DVEBMGS00\exe/ITS.SAR in directory E:/usr/sap/PRD/DVEBMGS00/data/icmandir are up to date
    [Thr 8156] Fri May 16 01:24:14 2014
    [Thr 8156] *** WARNING => IcmCallAllSchedules: Schedule func 1 already running - avoid recursion [icxxsched.c  481]
    [Thr 5948] Fri May 16 01:24:24 2014
    [Thr 5948] *** WARNING => IcmJ2EEScheduleFunc: Cannot access "/sap/public/icman" (rc=500)- please check node in TA sicf [icxxman.c    2598]
    [Thr 6912] Fri May 16 01:24:44 2014
    [Thr 6912] IcmProxyWatchDog: Shutdown request received
    [Thr 4400] IcmWatchDogThread: Shutdown request received
    [Thr 6912] *** IcmProxyWatchDog: exit thread ***
    [Thr 4024] *** IcmMpiWatchDogThread: exit thread ***
    [Thr 4400] *** IcmWatchDogThread: exit thread ***
    [Thr 1812] IcmLoop: Shutdown request received
    [Thr 1812] Deactivated service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 1812] Deactivated service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 1812] Removed service PORT=8000,PROT=HTTP,TIMEOUT=60,PROCTIMEOUT=60
    [Thr 1812] Removed service PORT=0,PROT=SMTP,TIMEOUT=120,PROCTIMEOUT=120
    [Thr 1812] *** ICM shutdown completed (pid: 5940) ***

Maybe you are looking for

  • Can you have more than one alert at a time show up on the lock screen?

    When i recieve a new message, this shows up as an alert on the lock screen when my phone is locked, as its supposed to. However, if a new alert comes through before i open the previous one, only the most recent one will appear on the lock screen. Is

  • IPhone video stream?

    Looking forward to all the futuristic capabilities of the iPhone will it be possible to watch live streaming CCTV through it. 1. So I might have a channel that is my desktop iSight camera streaming a series of live snapshots or video from it. 2. A re

  • Wired Network setup OfficeJet Pro 8500 no IP address 0.0.0.0

    During wired netowrk setup on a PC running through a Belkin router. When I get to the section of the set up CD a dialog box pops up with the message "The gateway IP address 0.0.0.0 of the printer does not match your router. Reconfigure the setting on

  • WPA security with both time capsule and airport express not working together

    I want to set WPA security on my time capsule so that my teenager can not access wireless with out permission but when I add a security key my airport express disappears from list. I have tried setting a password then the time capsule restarts and wh

  • Migration from WCS to NCS

    Hello, I've valid SAU service contract with WCS. Can I migrate from WCS (7.0.230..0) to latest version of NCS by downloading it from software center or I should purchase some SKU for upgrading to NCS? Any help welcome.