JVM (JVM 1.4.x) process terminates by itself on w2k

Hi All,
We have a java application which somehow terminates on its own, sporadically, with JVM 1.4.x. The problem doesn't manifest with JVM 1.3.x at all. When the JVM terminates, there is no error msgs & the JVM simply terminates without any hint on what caused it to terminate.
Here is the info:
- Microsoft Windows 2000 [Version 5.00.2195]
- Sun jvm (1.4.2_01-b06)
How can we figure out exactly why the JVM would die on windows?
We tried the following:
1. Turn on -Xrs along with other flags (-Xjni:check)
2. Install shutdown hook (Runtime.getRuntime().addShutdownHook(hook)) and have the hook print the stack trace (to see if someone is calling System.exit)
3. Make sure the main() method thread doesn't exit/end
Thanks for any info!
Andy

What about installing a security manager?Yes, we also installed a SecurityManager which implements the checkExit and checkPermission methods in which we print the stack trace. However, nothing was spitted out to stderr/stdout at the time when the JVM terminates by itself.
Thanks.

Similar Messages

  • Whre the data is stored when the process terminates in the GP

    Hi Experts,
    I have a requirement to maintain data even when the process terminates in GP. I want to use those data for reporting purpose.
    There is 1 approach to achieve above requirement
    1) Create a ztable in R/3 and store the information at each action in GP. so that using function modules i can get those data for reporting.
    But i just don't want to use the above approach. I just want to know is there any feature available in CAF, so that i can get the data of process, which is already terminated. Can anybody give me the suggestion regarding this???
    Regards,
    Shyam Prasad

    Hi,
       You can try out this code:
    IGPRuntimeManager rt = GPProcessFactory.getRuntimeManager();
    IGPProcessInstanceInfo[] completedInstances = rt.getCompletedInstances(GPSearchRole searchRole, Date startDate, Date endDate, IGPUserContext userContext) ;
       Also please see the javadoc.
    Regards,
    Satyajit.

  • PRODUCTION ISSUE - Java process terminates unexpectedly

    Hello,
    I realize this is a BEA forum, however, we are perplexed by this issue and perhaps someone here has experienced something similar. Apologies if this topic is out of context to BEA.
    We are trying to troubleshoot a production issue where the JAVA process terminates without any debugging information available to try and understand the cause. This is a Windows 2K3 Server running JAVA 1.4.2_04 using native C++. (We are **NOT** running Weblogic on this server)
    Can anyone provide insight into how to debug this problem? Specifically, do any management beans exist to where we can track the crashing process or perhaps any tools? This is occurring frequently and we have no means of debugging this issue all while this is occurring on a PRODUCTION server.
    Any help would be greatly appreciated!
    Regards,
    -Nader

    what heap size are you providing while running your app ?

  • How to wait till a process terminates?

    How do I guarantee that a process terminates before another one starts?
    I know Process.waitFor() may do the trick, but I don't know how to use it.
    Please help!

    p.waitFor() will do the trick for sure and here is how to use it...
    Runtime run = Runtime.getRuntime();
    Process p = null;
    p= run.exec("the_new_process.exe");
    p.waitFor();
    Hope this helps
    Regards
    Akshat Joshi

  • Oracle 11g terminate by itself

    Hi All,
    i have installed ora 11g on win xp
    i notice that many times it terminates from itself , one time after create and index and insert inot the table , this time , without doing anything , as i am the only one who connected
    this is the alert log
    Dump file d:\app\admin\product\11.1.0\db11g\rdbms\trace\alert_sydhq30.log
    Thu Sep 11 11:53:47 2008
    ORACLE V11.1.0.6.0 - Production vsnsta=0
    vsnsql=15 vsnxtr=3
    Windows XP Version V5.1
    CPU : 1 - type 586
    Process Affinity : 0x00000000
    Memory (Avail/Total): Ph:598M/2015M, Ph+PgF:2594M/3912M, VA:1206M/2047M
    Thu Sep 11 11:53:47 2008
    Errors in file d:\app\admin\diag\rdbms\sydhq30\sydhq30\cdump\sydhq30core.log
    ORA-07445: caught exception [ACCESS_VIOLATION] at [{empty}] [0x77F517E2]
    any suggestions?
    Thanks

    ORA-07445: caught exception ACCESS_VIOLATION at {empty} 0x77F517E2ORA 7745 is Oracle internal error. you need to work with Oracle support or use metalink doc tool to find more info
    Note 153788.1 Troubleshoot an ORA-600 or ORA-7445 Error Using the Error Lookup Tool .
    Customer Introduction to ORA-7445 Errors
    Doc ID: Note:211909.1

  • JVM terminated when opening a process

    I applied the add-on to LC Workbench 9.0.0.1 on Windows 7.
    After launching Workbench as administrator, I got "JVM terminated" error when I open (or create) a process.
    "JVM terminated. Exit code = -1073740940 ....." - error dialog.
    Why is that?
    Thx,
    K7

    This is the error log when JVM termination occurs.
    !ENTRY com.adobe.ide.singlesignon 1 1 2010-07-14 17:42:08.511
    !MESSAGE User 'administrator' logged in to server 'k7es2mcry' (hostname: 'k7es2mcry')
    !SESSION 2010-07-14 17:42:33.835 -----------------------------------------------
    eclipse.buildId=unknown
    java.version=1.6.0_14
    java.vendor=Sun Microsystems Inc.
    BootLoader constants: OS=win32, ARCH=x86, WS=win32, NL=ja_JP
    Framework arguments:  #Product Runtime Configuration File
    Command-line arguments:  -os win32 -ws win32 -arch x86 #Product Runtime Configuration File
    !ENTRY org.eclipse.core.resources 2 10035 2010-07-14 17:42:35.484
    !MESSAGE The workspace exited with unsaved changes in the previous session; refreshing workspace to recover changes.
    !ENTRY com.adobe.ide.singlesignon 1 1 2010-07-14 17:42:36.427
    !MESSAGE LiveCycle Workbench ES version '9.1.0.v201006272231'
    !ENTRY org.eclipse.equinox.p2.ui.sdk 2 0 2010-07-14 17:42:39.870
    !MESSAGE Could not locate the running profile instance. The eclipse.p2.data.area and eclipse.p2.profile properties may not be set correctly in this application's config.ini file.

  • BUG? Can't exit JVM until native Runtime.exec() process exited.

    Hi,
    Before reporting this as a bug I wanted to hear some opinion.
    The problem :
    I start a win32 native appllication and then I have to close the VM and leaving the process running.
    But inpite any Runtime.exit() or Runtime.halt() call, the vm won't not exit until the proces ends.
    Having seen that there could be some issue with the output stream of the process and the VM I tried to redirect it to a file. But still the same.
    Any opinion?
    Dikran

    You have something else going on.
    The following code exits and leaves the app running...
        public class TTest
            public static void main(String[] args) throws Exception
            Runtime.getRuntime().exec("notepad");
        }

  • Task process terminates after 1 day

    Hello,
    I am trying to find out why a listening process associated with a task is terminating after one day. The listening process is defined by a JPD that initially creates the task and then waits for an event from the task. If the task is created and nothing is done with it for one day, then the associated process that is waiting on the task terminates. I've looked for a server setting that may be controlling this, but cannot find one. Does anyone know what may be causing this process to terminate?
    Thanks

    The resolution to this problem is the one found in Solution ID S-20589. We set "max-age" to 0 and it fixed the problem. It was interesting to note that this appears to happen only on production mode servers as this problem did not occur when running in development mode with the same code.

  • Disp_work process terminates

    Dear All,
    I have done a refresh and prior to refresh I have installed the sap software. its a high end server with 16cpu and 16gb RAM.The system is PRD( copy from HD1)
    I have copied the following profile parameter from HD1,
    rdisp/max_alt_modes = 2
    rdisp/max_wprun_time = 316000
    rtbb/max_tables = 500
    rsdb/ntab/ftabsize = 40000
    rsdb/ntab/entrycount = 30000
    rsdb/obj/max_objects = 20000
    rsdb/obj/buffersize = 40000
    rsdb/obj/large_object_size = 8192
    rdisp/gui_auto_logout = 72000
    rdisp/bufrefmode = sendoff,exeauto
    rdisp/appc_ca_blk_no = 100
    rsdb/cua/buffersize = 5000
    rtbb/buffer_length = 30000
    login/disable_multi_gui_login = 0
    login/fails_to_user_lock = 3
    login/password_expiration_time = 15
    login/min_password_lng = 8
    login/system_client = 500
    enque/table_size = 4096
    em/max_size_MB = 20000
    ztta/roll_area = 15 000 000
    zcsa/db_max_buftab = 10000
    zcsa/installed_languages = DE
    zcsa/system_language = E
    ztta/roll_extension = 500 000 000
    zcsa/presentation_buffer_area = 20000000
    zcsa/table_buffer_area = 50000000
    sap/bufdir_entries = 10000
    install/codepage/appl_server = 1100
    icm/server_port_1 = PORT=HTTP,PORT=8000
    1.em/address_space_MB = 512
    2.em/stat_log_timeout = 0
    3.em/stat_log_size_MB = 20
    4.em/blocksize_KB = 1024
    5.em/initial_size_MB = 2246
    1.abap/buffersize = 500000
    2.abap/swap_reserve = 20971520
    3.abap/heaplimit = 40894464 should be less then 5 6
    4.abap/heap_area_total = 2 000 000 000
    5.abap/heap_area_nondia = 2000000000
    6.abap/heap_area_dia = 2000000000
    Also when I have installed sap the instance profile had 6 dailogue processes set. I have changed it to 26 thinking the server can handle the load. But when I have copied the above parameter in instance profile of PRD, the disp_work terminates.
    It shows me 2 error.
    1. PXA_NO_SHARED_MEMORY
    2. SYSTEM_NO_ROLL
    I have checked for those error and the first one is related to abap/buffersize = 500000. But what is the problem with it???
    and do all the parameter fits in with the new server?

    Dear Markus,
    I will brief you before I paste the dev_w0 file details.
    We have a high end server 16GB RAM and 16CPU. The profile parameter which I have pasted before was from the instance profile of previous prod server(BOS). I tried to put the same value, I mean the same parameter with the values in PRD but gave problem, which I reverted and carried on with default. Today I have changed the dia instance from 26 to 16 thinking it might be the problem, but its all memory related. The first error file is
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Tue Jun 10 13:25:01 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' ...
    B  Library 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.172)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    196
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        1844
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1844) [dpxxdisp.c   1162]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active

    M Tue Jun 10 13:25:02 2008
    M  DpShMCreate: sizeof(wp_adm)          24960     (832)
    M  DpShMCreate: sizeof(tm_adm)          2379840     (11840)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (364)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04830040, size: 2683792)
    M  DpShMCreate: allocated sys_adm at 04830040
    M  DpShMCreate: allocated wp_adm at 048317D8
    M  DpShMCreate: allocated tm_adm_list at 04837958
    M  DpShMCreate: allocated tm_adm at 04837980
    M  DpShMCreate: allocated wp_ca_adm at 04A7C9C0
    M  DpShMCreate: allocated appc_ca_adm at 04A81010
    M  DpShMCreate: allocated comm_adm_list at 04A82780
    M  DpShMCreate: allocated comm_adm at 04A82798
    M  DpShMCreate: allocated vmc_adm_list at 04AB1598
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 04AB15C0
    M  DpShMCreate: allocated wall_adm at 04AB15C8
    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 Tue Jun 10 13:25:03 2008
    M  calling db_connect ...
    C  Prepending d:\oracle\ora92 to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.WE8DEC' from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPBOS's password
    C  Connecting as /@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   045B8FF8   07F250E4   07F24B88
    C  Attaching to DB Server PRD (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4)
    C  Starting user session (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4,usrhp=045C5DAC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4502]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11408]
    C  Try to connect with default password
    C  Connecting as SAPBOS/<pwd>@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   045B8FF8   07F250E4   07F24B88
    C  Starting user session (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4,usrhp=045C5DAC)
    C  Now 'SAPBOS/<pwd>@PRD' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.WE8DEC
    C  DB instance PRD is running on PROD with ORACLE version 9.2.0.2.1 since JUN 07, 2008, 13:23:54
    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 20080610 132503 PROD           
    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 Jun 10 13:25:10 2008
    I  MtxInit: 0 0 0
    M  SHM_PRES_BUF               (addr: 082B0040, size: 20000000)
    M  SHM_ROLL_AREA          (addr: 61AF0040, size: 268435456)
    I  *** ERROR => [MapOsShm] Can't find free space for Shared Memory (Size=131072 KB)
                   [shmnt.c      2130]
    I  *** ERROR => [CreateOsShm] MapViewOfFile(Key=8,Handle=0x000004C4) failed with Err=0
                   [shmnt.c      2130]
    I  *** ERROR => ShmCreate: Create (8,134217728,3) failed [shmnt.c      469]
    Memory diagnostic                                 *
    Systeminformation
    Processor-Typ             : Intel unknown
    Processor-Count           : 16
    Operating System          : NT 5.2, Build 3790
    Service Pack              : Service Pack 1
    NT Pagefile Informations
    Config. minimum size      : 31455232 K
    Config. maximum size      : 48230400 K
    Avail.  maximum size      : 48230400 K
    Num
    Pagefile
    Min.Size
    Max.Size
    Avail.Max
    Curr.Size
    1
    c:\pagefile.sys
    2095104 K
    4190208 K
    4190208 K
    2095104 K
    2
    d:\pagefile.sys
    4194304 K
    6291456 K
    6291456 K
    3145728 K
    3
    e:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    12582912 K
    4
    f:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    12582912 K
    5
    g:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    4177920 K
    NT Task Manager Informations
    Total Handles             :    16830
    Total Threads             :      636
    Total Processes           :       54
    Commit Charge Total       : 12306368 K
    Commit Charge Limit       : 25591708 K
    Commit Charge Peak        : 15128288 K
    Phys.Memory Total         : 16770260 K
    Phys.Memory Available     : 14566972 K
    File Cache                :   139296 K
    Kernel Memory Total       :    90656 K
    Kernel Memory Paged       :    66604 K
    Kernel Memory Nonpaged    :    24052 K
    Memory usage of current process
    Total virt.address space  :  2097024 K
    Avail.virt.address space  :   500168 K
    Private Pages             :        0 K
    Total heap size           :    18264 K
    Virtual memory regions    :        0 K
    Uncommitted heap memory   :    11824 K
    Allocated heap memory     :     5171 K
    Moveable heap memory      :        0 K
    DDE shared heap memory    :        0 K
    Memory usage of all processes
    PID
    Image
    Instance
    Work.Set
    WS Peak
    Priv.Pages
    PP Peak
    Pg Fault
    4
    236 K
    2096 K
    0 K
    0 K
    5
    564
    smss.exe
    448 K
    456 K
    144 K
    160 K
    0
    700
    winlogon.exe
    6460 K
    9648 K
    7256 K
    8276 K
    9
    744
    services.exe
    5128 K
    11636 K
    4236 K
    10740 K
    9
    756
    lsass.exe
    18448 K
    18616 K
    16556 K
    16728 K
    13
    932
    svchost.exe
    2400 K
    2440 K
    760 K
    820 K
    0
    1164
    svchost.exe
    18408 K
    21780 K
    12608 K
    19352 K
    60
    1360
    spoolsv.exe
    5700 K
    6720 K
    4304 K
    5404 K
    2
    1528
    svchost.exe
    2156 K
    37488 K
    552 K
    36600 K
    112
    1576
    omtsreco.exe
    7752 K
    7768 K
    6288 K
    6320 K
    1
    1852
    agntsrvc.exe
    7688 K
    7708 K
    9096 K
    9128 K
    1
    1880
    apache.exe
    8324 K
    8664 K
    6740 K
    6812 K
    39
    1888
    cmd.exe
    1576 K
    1584 K
    1492 K
    1512 K
    0
    1928
    dbsnmp.exe
    11380 K
    11400 K
    13696 K
    40696 K
    3
    1944
    TNSLSNR.exe
    5904 K
    5932 K
    5780 K
    5792 K
    7
    536
    apache.exe
    31916 K
    31916 K
    31988 K
    31988 K
    20
    1512
    isqlplus
    7544 K
    7564 K
    7056 K
    7088 K
    1
    2860
    svchost.exe
    3764 K
    3844 K
    1436 K
    21620 K
    1
    2972
    svchost.exe
    3860 K
    3876 K
    3136 K
    3164 K
    1
    3448
    java.exe
    15724 K
    15788 K
    16108 K
    16232 K
    262
    3472
    java.exe
    8644 K
    8668 K
    7520 K
    7552 K
    260
    3200
    Explorer.EXE
    2064 K
    30856 K
    16716 K
    23512 K
    528
    256
    jusched.exe
    1820 K
    1820 K
    412 K
    412 K
    0
    2056
    ONRSD.EXE
    4764 K
    4764 K
    3916 K
    3916 K
    1
    4048
    ORACLE.EXE
    814884 K
    901416 K
    1171932 K
    1264780 K
    375
    140
    SAPSTARTSRV.EXE
    22120 K
    25780 K
    23084 K
    24232 K
    78
    4880
    nvpmgr.exe
    4560 K
    4608 K
    2368 K
    2420 K
    1
    4948
    nvstatsmngr.exe
    3940 K
    3940 K
    2112 K
    2112 K
    0
    2788
    mmc.exe
    6968 K
    21352 K
    19600 K
    21476 K
    11
    4116
    msg_server.exe
    [MS] PRD_00
    7660 K
    7660 K
    8680 K
    8680 K
    1
    5708
    disp+work.exe
    [DP] PRD_00
    81456 K
    81456 K
    62108 K
    62108 K
    19
    4672
    gwrd.EXE
    [GW] PRD_00
    9940 K
    9940 K
    8344 K
    10780 K
    2
    5856
    icman.EXE
    75708 K
    75708 K
    74184 K
    74184 K
    18
    1844
    disp+work.EXE
    36192 K
    36256 K
    69344 K
    69448 K
    9
    5036
    disp+work.EXE
    [WP] PRD_00
    34208 K
    34208 K
    67808 K
    67808 K
    8
    524
    disp+work.EXE
    [WP] PRD_00
    34204 K
    34204 K
    67808 K
    67808 K
    8
    5432
    disp+work.EXE
    [WP] PRD_00
    34204 K
    34204 K
    67808 K
    67808 K
    8
    2820
    disp+work.EXE
    [WP] PRD_00
    34208 K
    34208 K
    67808 K
    67808 K
    8
    4064
    disp+work.EXE
    [WP] PRD_00
    34188 K
    34188 K
    67808 K
    67808 K
    8
    5904
    disp+work.EXE
    [WP] PRD_00
    34212 K
    34212 K
    67808 K
    67808 K
    8
    4148
    disp+work.EXE
    [WP] PRD_00
    34212 K
    34212 K
    67808 K
    67808 K
    8
    5896
    disp+work.EXE
    [WP] PRD_00
    34212 K
    34212 K
    67808 K
    67808 K
    8
    3260
    disp+work.EXE
    [WP] PRD_00
    34200 K
    34200 K
    67808 K
    67808 K
    8
    4564
    disp+work.EXE
    [WP] PRD_00
    34212 K
    34212 K
    67808 K
    67808 K
    8
    Sum
    1587596 K
    2297632 K
    M  *** ERROR => ThShMCreate: ShmCreate SHM_PAGING_AREA failed [thxxhead.c   2411]
    M  *** ERROR => ThIPCInit: ThShMCreate [thxxhead.c   1908]
    M  ***LOG R19=> tskh_init, ThIPCInit ( TSKH-IPC-000001) [thxxhead.c   1363]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: ThIPCInit (step 1, th_errno 17, action 3, level 1) [thxxhead.c   9621]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 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  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server PROD_PRD_00 on host PROD (wp 0)
    M  *  ERROR       tskh_init: ThIPCInit
    M  *
    M  *  TIME        Tue Jun 10 13:25:10 2008
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          17
    M  *  MODULE      thxxhead.c
    M  *  LINE        9806
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  254]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 1844) [dpnttool.c   357]
    END OF FILE -
    Then I have changed the parameter abap/buffersize from 50000 to 350000. Now its working fine but then gave some more dumps like..
    trc file: "dev_w0", trc level: 1, release: "640"
    ACTIVE TRACE LEVEL           1
    ACTIVE TRACE COMPONENTS      all, M

    B Tue Jun 10 13:35:21 2008
    B  create_con (con_name=R/3)
    B  Loading DB library 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' ...
    B  Library 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' loaded
    B  Version of 'E:\usr\sap\PRD\SYS\exe\run\dboraslib.dll' is "640.00", patchlevel (0.172)
    B  New connection 0 created
    M sysno      00
    M sid        PRD
    M systemid   560 (PC with Windows NT)
    M relno      6400
    M patchlevel 0
    M patchno    196
    M intno      20020600
    M make:      multithreaded, ASCII
    M pid        1188
    M
    M  ***LOG Q0Q=> tskh_init, WPStart (Workproc 0 1188) [dpxxdisp.c   1162]
    I  MtxInit: -2 0 0
    M  DpSysAdmExtCreate: ABAP is active
    M  DpShMCreate: sizeof(wp_adm)          27456     (832)
    M  DpShMCreate: sizeof(tm_adm)          2379840     (11840)
    M  DpShMCreate: sizeof(wp_ca_adm)          18000     (60)
    M  DpShMCreate: sizeof(appc_ca_adm)     6000     (60)
    M  DpShMCreate: sizeof(comm_adm)          192000     (384)
    M  DpShMCreate: sizeof(vmc_adm)          0     (364)
    M  DpShMCreate: sizeof(wall_adm)          (22440/34344/56/100)
    M  DpShMCreate: SHM_DP_ADM_KEY          (addr: 04830040, size: 2686288)
    M  DpShMCreate: allocated sys_adm at 04830040
    M  DpShMCreate: allocated wp_adm at 048317D8
    M  DpShMCreate: allocated tm_adm_list at 04838318
    M  DpShMCreate: allocated tm_adm at 04838340
    M  DpShMCreate: allocated wp_ca_adm at 04A7D380
    M  DpShMCreate: allocated appc_ca_adm at 04A819D0
    M  DpShMCreate: allocated comm_adm_list at 04A83140
    M  DpShMCreate: allocated comm_adm at 04A83158
    M  DpShMCreate: allocated vmc_adm_list at 04AB1F58
    M  DpShMCreate: system runs without vmc_adm
    M  DpShMCreate: allocated ca_info at 04AB1F80
    M  DpShMCreate: allocated wall_adm at 04AB1F88
    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 Tue Jun 10 13:35:23 2008
    M  calling db_connect ...
    C  Prepending d:\oracle\ora92 to Path.
    C  got NLS_LANG='AMERICAN_AMERICA.WE8DEC' from environment
    C  Client NLS settings: AMERICAN_AMERICA.WE8DEC
    C  Logon as OPS$-user to get SAPBOS's password
    C  Connecting as /@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   045B8FF8   07F250E4   07F24B88
    C  Attaching to DB Server PRD (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4)
    C  Starting user session (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4,usrhp=045C5DAC)
    C  *** ERROR => OCI-call 'OCISessionBegin' failed: rc = 1017
    [dboci.c      4502]
    C  *** ERROR => CONNECT failed with sql error '1017'
    [dbsloci.c    11408]
    C  Try to connect with default password
    C  Connecting as SAPBOS/<pwd>@PRD on connection 0 (nls_hdl 0) ... (dbsl 640 250407)
    C  Nls CharacterSet                 NationalCharSet              C      EnvHp      ErrHp ErrHpBatch
    C    0 WE8DEC                                                    1   045B8FF8   07F250E4   07F24B88
    C  Starting user session (con_hdl=0,svchp=07F24ADC,srvhp=045BD5D4,usrhp=045C5DAC)
    C  Now 'SAPBOS/<pwd>@PRD' is connected (con_hdl 0, nls_hdl 0).
    C  Database NLS settings: AMERICAN_AMERICA.WE8DEC
    C  DB instance PRD is running on PROD with ORACLE version 9.2.0.2.1 since JUN 10, 2008, 13:30:28
    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 20080610 133523 PROD           
    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: 082B0040, size: 20000000)
    M  SHM_ROLL_AREA          (addr: 61AF0040, size: 268435456)
    I  *** ERROR => [MapOsShm] Can't find free space for Shared Memory (Size=131072 KB)
                   [shmnt.c      2130]
    I  *** ERROR => [CreateOsShm] MapViewOfFile(Key=8,Handle=0x000004C8) failed with Err=0
                   [shmnt.c      2130]
    I  *** ERROR => ShmCreate: Create (8,134217728,3) failed [shmnt.c      469]
    Memory diagnostic                                 *
    Systeminformation
    Processor-Typ             : Intel unknown
    Processor-Count           : 16
    Operating System          : NT 5.2, Build 3790
    Service Pack              : Service Pack 1
    NT Pagefile Informations
    Config. minimum size      : 31455232 K
    Config. maximum size      : 48230400 K
    Avail.  maximum size      : 48230400 K
    Num
    Pagefile
    Min.Size
    Max.Size
    Avail.Max
    Curr.Size
    1
    c:\pagefile.sys
    2095104 K
    4190208 K
    4190208 K
    2095104 K
    2
    d:\pagefile.sys
    4194304 K
    6291456 K
    6291456 K
    4177920 K
    3
    e:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    8372224 K
    4
    f:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    8372224 K
    5
    g:\pagefile.sys
    8388608 K
    12582912 K
    12582912 K
    8372224 K
    NT Task Manager Informations
    Total Handles             :    17427
    Total Threads             :      748
    Total Processes           :       74
    Commit Charge Total       : 13450520 K
    Commit Charge Limit       : 47562644 K
    Commit Charge Peak        : 13687088 K
    Phys.Memory Total         : 16770260 K
    Phys.Memory Available     : 14838288 K
    File Cache                :    76244 K
    Kernel Memory Total       :    59456 K
    Kernel Memory Paged       :    39500 K
    Kernel Memory Nonpaged    :    19956 K
    Memory usage of current process
    Total virt.address space  :  2097024 K
    Avail.virt.address space  :   500164 K
    Private Pages             :        0 K
    Total heap size           :    18264 K
    Virtual memory regions    :        0 K
    Uncommitted heap memory   :    11824 K
    Allocated heap memory     :     5171 K
    Moveable heap memory      :        0 K
    DDE shared heap memory    :        0 K
    Memory usage of all processes
    PID
    Image
    Instance
    Work.Set
    WS Peak
    Priv.Pages
    PP Peak
    Pg Fault
    4
    236 K
    2096 K
    0 K
    0 K
    3
    552
    smss.exe
    460 K
    820 K
    144 K
    160 K
    0
    688
    winlogon.exe
    2032 K
    9940 K
    6636 K
    7696 K
    3
    732
    services.exe
    3076 K
    3144 K
    1472 K
    1572 K
    0
    744
    lsass.exe
    15376 K
    15428 K
    14516 K
    14576 K
    4
    928
    svchost.exe
    2448 K
    2472 K
    824 K
    852 K
    0
    1148
    svchost.exe
    21800 K
    24552 K
    17088 K
    22476 K
    11
    1344
    spoolsv.exe
    5316 K
    5364 K
    4356 K
    4456 K
    1
    1512
    svchost.exe
    1832 K
    1832 K
    472 K
    472 K
    0
    1568
    nvpmgr.exe
    4416 K
    4448 K
    2340 K
    2388 K
    1
    1744
    omtsreco.exe
    7768 K
    7768 K
    6288 K
    6288 K
    1
    1856
    nvstatsmngr.exe
    3808 K
    3816 K
    2092 K
    2104 K
    0
    2044
    agntsrvc.exe
    7700 K
    7700 K
    9124 K
    9124 K
    1
    220
    apache.exe
    8324 K
    8668 K
    6740 K
    6812 K
    39
    232
    cmd.exe
    1564 K
    1564 K
    1492 K
    1492 K
    0
    264
    dbsnmp.exe
    11372 K
    11372 K
    13696 K
    40704 K
    3
    320
    TNSLSNR.exe
    5884 K
    5912 K
    5808 K
    5820 K
    1
    388
    ORACLE.EXE
    193876 K
    205696 K
    1163248 K
    1179764 K
    54
    588
    SAPSTARTSRV.EXE
    21924 K
    24100 K
    23024 K
    23772 K
    10
    1760
    apache.exe
    30016 K
    30016 K
    28892 K
    28892 K
    20
    1984
    java.exe
    15564 K
    15576 K
    16036 K
    16216 K
    5
    1996
    java.exe
    8476 K
    8488 K
    7444 K
    7508 K
    2
    2168
    isqlplus
    7504 K
    7504 K
    7056 K
    7056 K
    1
    3060
    svchost.exe
    3676 K
    3716 K
    1392 K
    21620 K
    1
    3356
    Explorer.EXE
    15688 K
    15720 K
    9924 K
    9972 K
    10
    3440
    jusched.exe
    1756 K
    1756 K
    412 K
    412 K
    0
    3784
    svchost.exe
    3772 K
    3772 K
    3136 K
    3136 K
    0
    2400
    mmc.exe
    20444 K
    20500 K
    17976 K
    18884 K
    11
    604
    msg_server.exe
    [MS] PRD_00
    7628 K
    7628 K
    8680 K
    8680 K
    1
    4076
    disp+work.exe
    [DP] PRD_00
    81456 K
    81456 K
    62108 K
    62108 K
    19
    1312
    gwrd.EXE
    [GW] PRD_00
    10040 K
    10040 K
    8344 K
    10780 K
    2
    3000
    icman.EXE
    75664 K
    75664 K
    74188 K
    74188 K
    18
    1188
    disp+work.EXE
    36140 K
    36204 K
    69344 K
    69448 K
    8
    3012
    disp+work.EXE
    [WP] PRD_00
    26072 K
    26072 K
    60364 K
    60364 K
    6
    3292
    disp+work.EXE
    [WP] PRD_00
    26136 K
    26136 K
    60368 K
    60368 K
    6
    1252
    disp+work.EXE
    [WP] PRD_00
    26088 K
    26088 K
    60364 K
    60364 K
    6
    2328
    disp+work.EXE
    [WP] PRD_00
    26136 K
    26136 K
    60368 K
    60368 K
    6
    3984
    disp+work.EXE
    [WP] PRD_00
    26128 K
    26128 K
    60368 K
    60368 K
    6
    420
    disp+work.EXE
    [WP] PRD_00
    26072 K
    26072 K
    60364 K
    60364 K
    6
    3272
    disp+work.EXE
    [WP] PRD_00
    26136 K
    26136 K
    60368 K
    60368 K
    6
    3016
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    1396
    disp+work.EXE
    [WP] PRD_00
    26124 K
    26124 K
    60368 K
    60368 K
    6
    1192
    disp+work.EXE
    [WP] PRD_00
    25936 K
    25936 K
    60348 K
    60348 K
    6
    3912
    disp+work.EXE
    [WP] PRD_00
    25936 K
    25936 K
    60348 K
    60348 K
    6
    1412
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    1260
    disp+work.EXE
    [WP] PRD_00
    26128 K
    26128 K
    60368 K
    60368 K
    6
    3572
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    3028
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    980
    disp+work.EXE
    [WP] PRD_00
    25936 K
    25936 K
    60348 K
    60348 K
    6
    3032
    disp+work.EXE
    [WP] PRD_00
    26148 K
    26148 K
    60368 K
    60368 K
    6
    244
    disp+work.EXE
    [WP] PRD_00
    25936 K
    25936 K
    60348 K
    60348 K
    6
    216
    disp+work.EXE
    [WP] PRD_00
    26148 K
    26148 K
    60368 K
    60368 K
    6
    3540
    disp+work.EXE
    [WP] PRD_00
    26148 K
    26148 K
    60368 K
    60368 K
    6
    3036
    disp+work.EXE
    [WP] PRD_00
    26124 K
    26124 K
    60368 K
    60368 K
    6
    3048
    disp+work.EXE
    [WP] PRD_00
    26088 K
    26088 K
    60364 K
    60364 K
    6
    2880
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    4032
    disp+work.EXE
    [WP] PRD_00
    26152 K
    26152 K
    60368 K
    60368 K
    6
    3516
    disp+work.EXE
    [WP] PRD_00
    26152 K
    26152 K
    60368 K
    60368 K
    6
    736
    disp+work.EXE
    [WP] PRD_00
    26148 K
    26148 K
    60368 K
    60368 K
    6
    260
    disp+work.EXE
    [WP] PRD_00
    26144 K
    26144 K
    60368 K
    60368 K
    6
    3120
    disp+work.EXE
    [WP] PRD_00
    26084 K
    26084 K
    60364 K
    60364 K
    6
    1972
    disp+work.EXE
    [WP] PRD_00
    26088 K
    26088 K
    60364 K
    60364 K
    6
    2616
    disp+work.EXE
    [WP] PRD_00
    26088 K
    26088 K
    60364 K
    60364 K
    6
    920
    disp+work.EXE
    [WP] PRD_00
    26120 K
    26120 K
    60364 K
    60364 K
    6
    Sum
    1446152 K
    3465588 K

    M Tue Jun 10 13:35:24 2008
    M  *** ERROR => ThShMCreate: ShmCreate SHM_PAGING_AREA failed [thxxhead.c   2411]
    M  *** ERROR => ThIPCInit: ThShMCreate [thxxhead.c   1908]
    M  ***LOG R19=> tskh_init, ThIPCInit ( TSKH-IPC-000001) [thxxhead.c   1363]
    M  in_ThErrHandle: 1
    M  *** ERROR => tskh_init: ThIPCInit (step 1, th_errno 17, action 3, level 1) [thxxhead.c   9621]

    M  Info for wp 0

    M    stat = 4
    M    reqtype = 1
    M    act_reqtype = -1
    M    rq_info = 0
    M    tid = -1
    M    mode = 255
    M    len = -1
    M    rq_id = 65535
    M    rq_source = 255
    M    last_tid = 0
    M    last_mode = 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  *****************************************************************************
    M  *
    M  *  LOCATION    SAP-Server PROD_PRD_00 on host PROD (wp 0)
    M  *  ERROR       tskh_init: ThIPCInit
    M  *
    M  *  TIME        Tue Jun 10 13:35:24 2008
    M  *  RELEASE     640
    M  *  COMPONENT   Taskhandler
    M  *  VERSION     1
    M  *  RC          17
    M  *  MODULE      thxxhead.c
    M  *  LINE        9806
    M  *  COUNTER     1
    M  *
    M  *****************************************************************************

    M  PfStatDisconnect: disconnect statistics
    M  Entering TH_CALLHOOKS
    M  ThCallHooks: call hook >ThrSaveSPAFields< for event BEFORE_DUMP
    M  *** ERROR => ThrSaveSPAFields: no valid thr_wpadm [thxxrun1.c   730]
    M  *** ERROR => ThCallHooks: event handler ThrSaveSPAFields for event BEFORE_DUMP failed [thxxtool3.c  254]
    M  Entering ThSetStatError
    M  Entering ThReadDetachMode
    M  call ThrShutDown (1)...
    M  ***LOG Q02=> wp_halt, WPStop (Workproc 0 1188) [dpnttool.c   357]
    ******END OF FILE**********
    In ST22 I could see more dumps like MEMORY_PGFREE_FAILED...
    Markus, please guide??
    Regards
    Prash

  • RFC execution process terminates the Java Process

    Hi All,
      we have a RFC which returns large data with export parameter. While executing JCO.client.execute(), java process is getting terminated. I tried to set the more heap size but of no use. It didn't give any OutOfMemory either.
    The JCO trace file at level 10 shows as below which clearly indicates that something is going wrong at JNI layer of JCO.
    The problem seems to be with allocation of heap size in 'C' layer of JCO.<b>The trace file has below last entries</b>
    <i>JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.Tables_C2Java()                                          enter, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.reallocRecordBuffers()                                   enter, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.reallocRecordBuffers("ZWNVPAIR"(4AB2BB8C),54D1A740) enter [SUCCESS]</i>
    It seems to suggest that reallocRecordBuffers was never completed and it is this call which could be responsible for java process getting killed.
    I think a successfull call will be recorded as below in JCO trace file:
    Completion of RFC call will be recorded as below in JCO trace file:
    <i>JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.Tables_C2Java()                                          enter, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.reallocRecordBuffers()                                   enter, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.reallocRecordBuffers("ZWNVPAIR"(4AB2BB8C),54D1A740) enter [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.reallocRecordBuffers()               with rc = RFC_OK   leave, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JNI-LAYER] RFC.Tables_C2Java()                      with rc = RFC_OK   leave, [SUCCESS]
    JMS Async S21514 [14:34:47:386]: [JAV-LAYER] JCO.Client.execute (Z_DB_READER) on handle [X] returns after XXXX ms
    </i>
    Can anyone please help me here in understanding the above behavior?

    Thanks for reply. Where can i see the timeOut ineterval for Connection or Client object? I am not able to figure out any API which can be used to set the timeout behavior.

  • Process terminates in process chain

    Hi ,
    I do have 7 Meta Chains running under one of the Process parallely in BI 7.0. Unfortunately once in a while some of the process are terminating. Its start at the same time as all other of the process, but it does not executes the chain and turns red.
    I don't even get a Process Monitor on that particular process nor a error message. i do can find the two clock symbols on that particular chain the LAST_SAVED & LAST_ACTIVATED. But the process chain does not run future.
    If i run that particular process chain manually again it works properly.
    Can you help me out, to run the process automatically .
    Thanks in advance
    Raju

    Hi Akula,
    When you Schedule a Process chain the Process will be ASSIGNED TO A WORKPROCESS OF aN Application server.
    If there is no workprocess is avaliable in the Application server. the Process will be Terminated.
    As you are scheduling Process chains there may be a Problem with Avaliability of work Processes.Check in sm50 for the no of application servers avaliable and check whether the work Processes are avaliable for each Application servers if you have more than one.
    Try to avoid scheduling the Chains at the sametime.
    hope it helps.
    Thanks,
    -Vijay

  • Some one help I'm getting crazy: Flash Builder 4.6 - debugging mobile on desktop : Process terminate

    Hi all,  I am working with FB 4.6 on a windows 7pro 64 bit I'm working at a mobile android project.  I can debug it perfectly on device but if I launch it with the desktop emulator the debugger never connects.  Once I close the AIR window I got "Process terminated without establishing connection to debugger", and all the trace commands.   I am just noticing that both Android and Desktop have the ***IDENTICAL**** version of adobe air 3.1.0.488   Anybody can help on this? I have a bunch of network connections to debug, and it would be extremely easier to test the app on the desktop FB environment  I have tried the most common things: clear project, create a new workspace and re-import the project, run FB as an admin and also re-installing the AIR runtime.  Also I have the lastest JRE  Thanks  Alfonso

    Ok, in flash builder I simply opened the project's properties panel and clicked apply. I don't get the error anymore. It's weird, I know! but it has just worked for me. Give it a go

  • Catch the process terminate from the task manager

    Is there a way to catch the event of terminating the application from the the
    processes tab in task manager?
    I have created desktop app, and if a user termintates the app in the task
    manager, I'd like to be notified. I tried windowclosing in windowlistner, but nothing seems to be
    working for an improper shutdown of application.
    Thanks in advance

    Have you tried adding a shutdown hook? There alot of subtleties to a shutdown hook. You can read the documentation for
    Runtime.addShutdownHook(Thread hook)

  • TTE Processing Terminatation

    Dear CRM Gurus,
    We received an error message when we run the simulation for Tax
    Determination and Tax Calculation for the Transaction Tax Engine. The
    error message that we received is TTE Processing Terminated: Java
    Exception Error u2018StringIndexOutOfBoundsExceptionu2019. We have TTE connected
    to an external TAXWARE system.
    TTE version: 700
    IPC version: 5.0 SP11
    BBPCRM: 5.0
    Thank You

    Yes,connection in SM59 is working fine and we are able to run the simulation of TTE in CRM, just that, one of the log message has TTE terminated. Pls help.

  • 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

Maybe you are looking for