"execute" button on configtool's java parameters

On the panel for java parameters for dispatcher and server,
there is a check box on top labeld  "execute".
What is the difference with or without it being checked?
Thanks!

Hi Lee,
    Check these files, it may give you some help:
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ff06a590-0201-0010-52a1-f3caa35f5fcf">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/ff06a590-0201-0010-52a1-f3caa35f5fcf</a>
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3729c790-0201-0010-d5b2-9fd94ad68017">https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3729c790-0201-0010-d5b2-9fd94ad68017</a>
Regards,
Subhasha Ranjan

Similar Messages

  • Capturing the values of screen elements on click of execute button

    Hello folks,
    Is there a way to capture the values entered in the screen on click of the execute button?
    What I want to do is, I have a selection screen where-in a user can fill the input fields (parameters and select-options). Now when the user clicks on the execute button, the values of all the screen elements (no matter if they are filled or empty) should be stored in variable, so that I can use these values again when I am calling this program from another program.
    I want to do something similar to saving a variant, but this save should happen on click of Execute button and user need not require to explicitly save these values as variant.
    Hope I am clear enough to put my query in front of you all.
    It would be a great thing if you could help me.
    Need your help.
    Thanks in advance.

    Hi,
    You need something like this
    REPORT A.
    TABLES: sflight.
    PARAMETERS: pa_scarr   TYPE sflight-carrid.
    SELECT-OPTIONS so_conn FOR  sflight-connid.
    DATA: BEGIN OF it_selscr_values OCCURS 0.
            INCLUDE STRUCTURE rsparams.
    DATA END OF it_selscr_values.
    START-OF-SELECTION.
      CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
        EXPORTING
          curr_report     = sy-repid
        TABLES
          selection_table = it_selscr_values.  "here you have all parameters' values from selection screen
    "later in some other program you can use this table to call report A filling its selection screen with these default values like
    SUBMIT a WITH SELECTION-TABLE it_selscr_values.
    Regards
    Marcin

  • Function code for execute button

    Hi,
    I have a requirement like this...
    there is a program for selective deletion from a data target by a transaction called delete_facts.
    this generates a program for selective deletion. when i run this report there comes one screen asks for selections fields and then again excute it then deletion will happen.
    But this program i need to modify for certain default values so as to avoid entering of the values in the selection screen.
    i will use default value this will solve my 1st purpose but since this program has to be scheduled from process chain, the 2nd execute funtionality( once the values appear in the screen) shud be automated.
    can anybody tell me how to do this that is after program runs values will be passed to selection screen and selection screen shud not be shown and execute shud happen automatically.
    this is the code generated by transaction delete_facts:
    *& Report  ZTEST_DELETE1
    REPORT  ZTEST_DELETE1.
    generated Header from i_sel_repid
    generated REPORT (RSDRD)
    (should be deleted after use)
    Generated by..: SALAGUN
    Date/Time.....: 20070322 / 051426
    *REPORT GP457FUV92GJS4663HYHXLYC9Q7 .
    generated Tables from i_t_tables
                     and  i_datatarget
    TABLES:
    SSCRFIELDS,
    /BIC/SZTESTBC
    ,/BI0/SCHNGID
    ,/BI0/SRECORDTP
    ,/BI0/SREQUID
    ,/BI0/SDATE
    ,/BI0/SUNIT
    generated DATA/TYPES
    TYPE-POOLS: RSDRD, RSDQ.
    DATA:
      L_INTERACTIVE      TYPE RS_BOOL,
      L_ANSWER(1)        TYPE C,
      L_TYPE(1)          TYPE C,
      L_PARALLEL         TYPE I,
      L_NO_OF_ROWS       TYPE I,
      L_NO_OF_ROWS_C(10) TYPE C,
      L_TITEL            TYPE RS_CHAR72,
      L_TEXT1            TYPE RS_CHAR72,
      L_TEXT2            TYPE RS_CHAR72,
      L_S_RANGE          TYPE RSDRD_S_RANGE,
      L_S_SELTXT         TYPE RSDQ_S_SELTEXT,
      L_SX_SEL           TYPE RSDRD_SX_SEL,
      L_T_MSG            TYPE RS_T_MSG,
      L_THX_SEL          TYPE RSDRD_THX_SEL,
      L_T_SELTXTS        TYPE RSDQ_T_SELTEXT
                              WITH HEADER LINE.
    generated SELECTION-SCREEN from i_t_selscr
    SELECTION-SCREEN BEGIN OF BLOCK B001 WITH FRAME TITLE T001 .
    SELECT-OPTIONS C001 FOR /BIC/SZTESTBC-/BIC/ZTESTBC
    default 'D' TO  'C'.
    SELECTION-SCREEN   END OF BLOCK B001 .
    SELECTION-SCREEN BEGIN OF BLOCK B002 WITH FRAME TITLE T002 .
    SELECT-OPTIONS C002 FOR /BI0/SCHNGID-SID .
    SELECT-OPTIONS C003 FOR /BI0/SRECORDTP-SID .
    SELECT-OPTIONS C004 FOR /BI0/SREQUID-SID .
    SELECTION-SCREEN   END OF BLOCK B002 .
    SELECTION-SCREEN BEGIN OF BLOCK B003 WITH FRAME TITLE T003 .
    SELECT-OPTIONS C005 FOR /BI0/SDATE-DATE0 .
    SELECTION-SCREEN   END OF BLOCK B003 .
    SELECTION-SCREEN BEGIN OF BLOCK B004 WITH FRAME TITLE T004 .
    SELECT-OPTIONS C006 FOR /BI0/SUNIT-UNIT .
    SELECTION-SCREEN   END OF BLOCK B004 .
    SELECTION-SCREEN BEGIN OF BLOCK B005 WITH FRAME TITLE T005 .
    PARAMETERS L_PA TYPE DBMAN_PARALLEL_DEGREE DEFAULT '01'.
    DATA L_P1(1) TYPE C.
    PARAMETERS L_NL TYPE DBMAN_NO_LOGGING AS CHECKBOX DEFAULT ' '.
    PARAMETERS L_SR TYPE DBMAN_SHOW_REPORT AS CHECKBOX DEFAULT ' '.
    SELECTION-SCREEN   END OF BLOCK B005 .
    generated body from i_t_body
    generated INITIALIZATION from i_t_init
                             and  i_t_seltexts
                             and  i_batch_allowed
                             and  i_datatarget
    INITIALIZATION.
    T001 = 'product'.
    T002 = 'Data Package'.
    T003 = 'Time'.
    T004 = 'Unit'.
    T005 = 'Options'.
    SELECTION-SCREEN FUNCTION KEY 1.
    MOVE 'Execute in Bckgrnd' TO SSCRFIELDS-FUNCTXT_01.
    PERFORM RESTRICT_SEL_OPTIONS(SAPLRSDRD).
    SET TITLEBAR 'SELECTION' OF PROGRAM 'SAPLRSDRD' WITH
    ' Delete selected entries from the data target DELETE '.
    L_S_SELTXT-NAME = 'C001'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Base Code'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'C002'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Change Run ID (SID)'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'C003'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Record type (SID)'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'C004'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Request ID (SID)'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'C005'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Calendar Day'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'C006'.
    L_S_SELTXT-KIND = 'S'.
    L_S_SELTXT-TEXT = 'Unit of measure'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'L_PA'.
    L_S_SELTXT-KIND = 'P'.
    L_S_SELTXT-TEXT = 'Parall. deg. during reconstruc'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'L_NL'.
    L_S_SELTXT-KIND = 'P'.
    L_S_SELTXT-TEXT = 'Switch off logging drng recons'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    L_S_SELTXT-NAME = 'L_SR'.
    L_S_SELTXT-KIND = 'P'.
    L_S_SELTXT-TEXT = 'Display generated report'.
    APPEND L_S_SELTXT TO L_T_SELTXTS.
    generated AT SELECTION-SCREEN OUTPUT from i_sel_repid
    AT SELECTION-SCREEN OUTPUT.
    CALL FUNCTION 'SELECTION_TEXTS_MODIFY'
         EXPORTING
              PROGRAM                     =  'GP457FUV92GJS4663HYHXLYC9Q7'
         TABLES
              SELTEXTS                    =  L_T_SELTXTS
         EXCEPTIONS
              PROGRAM_NOT_FOUND           = 1
              PROGRAM_CANNOT_BE_GENERATED = 2
              OTHERS                      = 3.
    generated AT SELECTION-SCREEN
    AT SELECTION-SCREEN.
    CASE SSCRFIELDS-UCOMM.
      WHEN 'ONLI'.
        L_INTERACTIVE = RS_C_TRUE.
      WHEN 'OPTI'.
      WHEN 'DELS'.
      WHEN 'FC01'.
        L_INTERACTIVE = RS_C_FALSE.
        SSCRFIELDS-UCOMM = 'ONLI'.
      WHEN 'OTHERS'.
    ENDCASE.
    generated END-OF-SELECTION from i_t_selopt
                               and  i_del_repid
                               and  i_datatarget
                               and  i_gen_mode
    END-OF-SELECTION.
    IF NOT C001[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = 'ZTESTBC'.
      LOOP AT C001 .
        CLEAR L_S_RANGE.
        MOVE C001-SIGN TO L_S_RANGE-SIGN.
        MOVE C001-OPTION TO L_S_RANGE-OPTION.
        MOVE C001-LOW TO L_S_RANGE-LOW.
        MOVE C001-HIGH TO L_S_RANGE-HIGH.
        MOVE RS_C_TRUE TO L_S_RANGE-KEYFL.
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
    IF NOT C002[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = '0CHNGID'.
      LOOP AT C002 .
        CLEAR L_S_RANGE.
        MOVE C002-SIGN TO L_S_RANGE-SIGN.
        MOVE C002-OPTION TO L_S_RANGE-OPTION.
        MOVE C002-LOW TO L_S_RANGE-SIDLOW.
        MOVE C002-HIGH TO L_S_RANGE-SIDHIGH.
        MOVE RS_C_FALSE TO L_S_RANGE-KEYFL.
    start change
        DESCRIBE FIELD C002-LOW TYPE l_type.
        IF l_type = 'I'.
          CONDENSE L_S_RANGE-LOW.
          CONDENSE L_S_RANGE-HIGH.
        ENDIF.
    stop change
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
    IF NOT C003[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = '0RECORDTP'.
      LOOP AT C003 .
        CLEAR L_S_RANGE.
        MOVE C003-SIGN TO L_S_RANGE-SIGN.
        MOVE C003-OPTION TO L_S_RANGE-OPTION.
        MOVE C003-LOW TO L_S_RANGE-SIDLOW.
        MOVE C003-HIGH TO L_S_RANGE-SIDHIGH.
        MOVE RS_C_FALSE TO L_S_RANGE-KEYFL.
    start change
        DESCRIBE FIELD C003-LOW TYPE l_type.
        IF l_type = 'I'.
          CONDENSE L_S_RANGE-LOW.
          CONDENSE L_S_RANGE-HIGH.
        ENDIF.
    stop change
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
    IF NOT C004[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = '0REQUID'.
      LOOP AT C004 .
        CLEAR L_S_RANGE.
        MOVE C004-SIGN TO L_S_RANGE-SIGN.
        MOVE C004-OPTION TO L_S_RANGE-OPTION.
        MOVE C004-LOW TO L_S_RANGE-SIDLOW.
        MOVE C004-HIGH TO L_S_RANGE-SIDHIGH.
        MOVE RS_C_FALSE TO L_S_RANGE-KEYFL.
    start change
        DESCRIBE FIELD C004-LOW TYPE l_type.
        IF l_type = 'I'.
          CONDENSE L_S_RANGE-LOW.
          CONDENSE L_S_RANGE-HIGH.
        ENDIF.
    stop change
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
    IF NOT C005[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = '0CALDAY'.
      LOOP AT C005 .
        CLEAR L_S_RANGE.
        MOVE C005-SIGN TO L_S_RANGE-SIGN.
        MOVE C005-OPTION TO L_S_RANGE-OPTION.
        MOVE C005-LOW TO L_S_RANGE-LOW.
        MOVE C005-HIGH TO L_S_RANGE-HIGH.
        MOVE RS_C_TRUE TO L_S_RANGE-KEYFL.
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
    IF NOT C006[] IS INITIAL.
      CLEAR L_SX_SEL.
      L_SX_SEL-IOBJNM = '0UNIT'.
      LOOP AT C006 .
        CLEAR L_S_RANGE.
        MOVE C006-SIGN TO L_S_RANGE-SIGN.
        MOVE C006-OPTION TO L_S_RANGE-OPTION.
        MOVE C006-LOW TO L_S_RANGE-LOW.
        MOVE C006-HIGH TO L_S_RANGE-HIGH.
        MOVE RS_C_TRUE TO L_S_RANGE-KEYFL.
        APPEND L_S_RANGE TO L_SX_SEL-T_RANGE.
      ENDLOOP.
      INSERT L_SX_SEL INTO TABLE L_THX_SEL.
    ENDIF.
      L_PARALLEL = L_PA.
      IF L_INTERACTIVE EQ RS_C_TRUE.
      CALL FUNCTION 'RSDRD_SEL_DELETION'
           EXPORTING
                I_DATATARGET   = 'DELETE'
                I_THX_SEL           = L_THX_SEL
                I_AUTHORITY_CHECK   = RS_C_TRUE
                I_NO_LOGGING        = L_NL
                I_PARALLEL_DEGREE   = L_PARALLEL
                I_SHOW_REPORT       = L_SR
           CHANGING
                C_T_MSG             = L_T_MSG.
      ELSE.
        CALL FUNCTION 'RSDRD_BUILD_REPORT_FOR_BATCH'
             EXPORTING
              I_REPID        = 'GP457FWJUK1J1F3ZIZZOEH9U533'
              I_DATATARGET   = 'DELETE'
              I_GEN_ONLY          = RS_C_FALSE
              I_THX_SEL           = L_THX_SEL
              I_AUTHORITY_CHECK   = RS_C_TRUE
              I_NO_LOGGING        = L_NL
              I_PARALLEL_DEGREE   = L_PARALLEL
              I_SHOW_REPORT       = L_SR
         CHANGING
              C_T_MSG             = L_T_MSG.
      ENDIF.
    Thanks in advance,
    Vijaya

    hi!
    Function code for execute button is 'ONLI'.
    try ur code using it!!
    Reward points if it helps.
    Regards,
    Neha Bansal.
    Message was edited by:
            Neha Bansal

  • Add a button near execute button

    Hello Experts,
    I want to add a button near the execute button on the selection screen.Based on this button I would be displaying some radio buttons on the selection screen.
    Kindly help me with some sample code as to how can i go about in adding a button near the execute button of the selection screen
    Definately the points would be rewarded for helpful answers

    Hi,
    Try this code:
    *& Report  ABAPMASTER
    REPORT  ABAPMASTER.
    TABLES SSCRFIELDS.               "Fields on selection screens
    SELECTION-SCREEN FUNCTION KEY 1. "button on the application toolbar
    SELECTION-SCREEN FUNCTION KEY 2. "button on the application toolbar
    PARAMETERS P_DAT LIKE SY-DATUM.
    INITIALIZATION.
    Populating button text
      MOVE 'Push Button 1' TO SSCRFIELDS-FUNCTXT_01.
      MOVE 'Push Button 2' TO SSCRFIELDS-FUNCTXT_02.
    AT SELECTION-SCREEN.
      IF SSCRFIELDS-UCOMM = 'FC01'.
        PERFORM PUSH_BUTTON_CODE_1.
      ELSEIF SSCRFIELDS-UCOMM = 'FC01'.
        PERFORM PUSH_BUTTON_CODE_2.
      ENDIF.
    START-OF-SELECTION.
    END-OF-SELECTION.
    *&      Form  Push_button_code_1
          text
    FORM PUSH_BUTTON_CODE_1.
    ENDFORM.                    "Push_button_code_1
    *&      Form  Push_button_code_2
          text
    FORM PUSH_BUTTON_CODE_2.
    ENDFORM.                    "Push_button_code_2
    Regards,
    Joy.

  • How to rset Java parameters in config tool

    Hello,
    My Java server got down after i changed some parameters in Java Heap Memory settings. I did not note down the default values also. I would like to know how to revert into default Java parameters in config tool? Is there any way ?
    Regards,
    Sankaranarayanan.G

    Hello,
    Thanks lot for your reply. Yes i changed JavaHeap memory settings as per the note 723909.
    i attached the dev_server0 log
    trc file: "E:\usr\sap\PID\DVEBMGS10\work\dev_server0", trc level: 1, release: "700"
    node name   : ID106859350
    pid         : 5668
    system name : PID
    system nr.  : 10
    started at  : Wed Nov 05 08:13:19 2008
    arguments       :
           arg[00] : E:\usr\sap\PID\DVEBMGS10\exe\jlaunch.exe
           arg[01] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[02] : -DSAPINFO=PID_10_server
           arg[03] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1247
           arg[06] : -DSAPSYSTEM=10
           arg[07] : -DSAPSYSTEMNAME=PID
           arg[08] : -DSAPMYNAME=DUSLEXPID01_PID_10
           arg[09] : -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 3864] Wed Nov 05 08:13:19 2008
    [Thr 3864] *** WARNING => INFO: Unknown property [instance.box.number=PIDDVEBMGS10duslexpid01] [jstartxx.c   841]
    [Thr 3864] *** WARNING => INFO: Unknown property [instance.en.host=DUSLEXPID01] [jstartxx.c   841]
    [Thr 3864] *** WARNING => INFO: Unknown property [instance.en.port=3220] [jstartxx.c   841]
    [Thr 3864] *** WARNING => INFO: Unknown property [instance.system.id=10] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties]
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> OS libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> os libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID10685930 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID10685935 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID106859300          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] ID106859350          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    [Thr 3864] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 3864] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 6104] JLaunchRequestFunc: Thread 6104 started as listener thread for np messages.
    [Thr 4612] WaitSyncSemThread: Thread 4612 started as semaphore monitor thread.
    [Thr 3864] NiInit3: NI already initialized; param 'maxHandles' ignored (1;10002)
    [Thr 3864] CPIC (version=700.2006.09.13)
    [Thr 3864] [Node: server0] java home is set by profile parameter
         Java Home: D:\j2sdk1.4.2_17-x64
    [Thr 3864] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID106859350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : D:\j2sdk1.4.2_17-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M      -XX:PermSize=512M -XX:NewSize=341M -XX:MaxNewSize=341M -XX:DisableExplicitGC -verbose:gc -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 51021
    -> shutdown timeout   : 120000
    [Thr 3864] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3536] JLaunchIStartFunc: Thread 3536 started as Java VM thread.
    [Thr 3536] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=512M     
    -> arg[  5]: -XX:PermSize=512M
    -> arg[  6]: -XX:NewSize=341M
    -> arg[  7]: -XX:MaxNewSize=341M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -XX:+PrintGCDetails
    -> arg[ 11]: -XX:+PrintGCTimeStamps
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -Dsun.io.useCanonCaches=false
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:SurvivorRatio=2
    -> arg[ 16]: -XX:TargetSurvivorRatio=90
    -> arg[ 17]: -Djava.security.policy=./java.policy
    -> arg[ 18]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 19]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 20]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 21]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 22]: -Dsys.global.dir=E:\usr\sap\PID\SYS\global
    -> arg[ 23]: -Dapplication.home=E:\usr\sap\PID\DVEBMGS10\exe
    -> arg[ 24]: -Djava.class.path=E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 25]: -Djava.library.path=D:\j2sdk1.4.2_17-x64\jre\bin\server;D:\j2sdk1.4.2_17-x64\jre\bin;D:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\j2sdk1.4.2_17-x64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;E:\usr\sap\PID\SYS\exe\uc\NTAMD64
    -> arg[ 26]: -Dmemory.manager=2048M
    -> arg[ 27]: -Xmx2048M
    -> arg[ 28]: -Xms2048M
    -> arg[ 29]: -DLoadBalanceRestricted=no
    -> arg[ 30]: -Djstartup.mode=JCONTROL
    -> arg[ 31]: -Djstartup.ownProcessId=5668
    -> arg[ 32]: -Djstartup.ownHardwareId=J1559017989
    -> arg[ 33]: -Djstartup.whoami=server
    -> arg[ 34]: -Djstartup.debuggable=no
    -> arg[ 35]: -Xss2m
    -> arg[ 36]: -DSAPINFO=PID_10_server
    -> arg[ 37]: -DSAPSTART=1
    -> arg[ 38]: -DCONNECT_PORT=1247
    -> arg[ 39]: -DSAPSYSTEM=10
    -> arg[ 40]: -DSAPSYSTEMNAME=PID
    -> arg[ 41]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 42]: -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
    -> arg[ 43]: -DFRFC_FALLBACK=ON
    -> arg[ 44]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=10
    -> arg[ 47]: -DSAPSYSTEMNAME=PID
    -> arg[ 48]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 49]: -DSAPDBHOST=DUSLEXPID01
    -> arg[ 50]: -Dj2ee.dbhost=DUSLEXPID01
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3536] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3556] Wed Nov 05 08:13:20 2008
    [Thr 3556] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3556] Wed Nov 05 08:13:21 2008
    [Thr 3556] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3556] JLaunchISetClusterId: set cluster id 106859350
    [Thr 3556] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3556] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Wed Nov 05 08:13:32 2008
    12.818: [GC 12.818: [DefNew: 174592K->13493K(261888K), 0.3011959 secs] 174592K->13493K(2009856K), 0.3016334 secs]
    Wed Nov 05 08:13:36 2008
    17.613: [GC 17.614: [DefNew
    Wed Nov 05 08:13:37 2008
    : 188085K->15910K(261888K), 0.3665850 secs] 188085K->15910K(2009856K), 0.3666646 secs]
    Wed Nov 05 08:13:44 2008
    25.621: [GC 25.621: [DefNew: 190502K->19406K(261888K), 0.0765912 secs] 190502K->19406K(2009856K), 0.0766663 secs]
    Wed Nov 05 08:13:55 2008
    35.983: [GC 35.983: [DefNew: 193998K->19906K(261888K), 0.0519434 secs] 193998K->19906K(2009856K), 0.0519957 secs]
    Wed Nov 05 08:14:00 2008
    41.061: [GC 41.061: [DefNew: 194498K->27970K(261888K), 0.1282647 secs] 194498K->27970K(2009856K), 0.1283732 secs]
    [Thr 3560] Wed Nov 05 08:14:01 2008
    [Thr 3560] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3560] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 3560] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "E:\usr\sap\PID\DVEBMGS10\work\dev_server0", trc level: 1, release: "700"
    node name   : ID106859350
    pid         : 4832
    system name : PID
    system nr.  : 10
    started at  : Wed Nov 05 08:14:04 2008
    arguments       :
           arg[00] : E:\usr\sap\PID\DVEBMGS10\exe\jlaunch.exe
           arg[01] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[02] : -DSAPINFO=PID_10_server
           arg[03] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1247
           arg[06] : -DSAPSYSTEM=10
           arg[07] : -DSAPSYSTEMNAME=PID
           arg[08] : -DSAPMYNAME=DUSLEXPID01_PID_10
           arg[09] : -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4748] Wed Nov 05 08:14:04 2008
    [Thr 4748] *** WARNING => INFO: Unknown property [instance.box.number=PIDDVEBMGS10duslexpid01] [jstartxx.c   841]
    [Thr 4748] *** WARNING => INFO: Unknown property [instance.en.host=DUSLEXPID01] [jstartxx.c   841]
    [Thr 4748] *** WARNING => INFO: Unknown property [instance.en.port=3220] [jstartxx.c   841]
    [Thr 4748] *** WARNING => INFO: Unknown property [instance.system.id=10] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties]
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> OS libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> os libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID10685930 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID10685935 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID106859300          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] ID106859350          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    [Thr 4748] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4748] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 5852] JLaunchRequestFunc: Thread 5852 started as listener thread for np messages.
    [Thr 5200] WaitSyncSemThread: Thread 5200 started as semaphore monitor thread.
    [Thr 4748] NiInit3: NI already initialized; param 'maxHandles' ignored (1;10002)
    [Thr 4748] CPIC (version=700.2006.09.13)
    [Thr 4748] [Node: server0] java home is set by profile parameter
         Java Home: D:\j2sdk1.4.2_17-x64
    [Thr 4748] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID106859350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : D:\j2sdk1.4.2_17-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M      -XX:PermSize=512M -XX:NewSize=341M -XX:MaxNewSize=341M -XX:DisableExplicitGC -verbose:gc -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 51021
    -> shutdown timeout   : 120000
    [Thr 4748] JLaunchISetDebugMode: set debug mode [no]
    [Thr 4076] JLaunchIStartFunc: Thread 4076 started as Java VM thread.
    [Thr 4076] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=512M     
    -> arg[  5]: -XX:PermSize=512M
    -> arg[  6]: -XX:NewSize=341M
    -> arg[  7]: -XX:MaxNewSize=341M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -XX:+PrintGCDetails
    -> arg[ 11]: -XX:+PrintGCTimeStamps
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -Dsun.io.useCanonCaches=false
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:SurvivorRatio=2
    -> arg[ 16]: -XX:TargetSurvivorRatio=90
    -> arg[ 17]: -Djava.security.policy=./java.policy
    -> arg[ 18]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 19]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 20]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 21]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 22]: -Dsys.global.dir=E:\usr\sap\PID\SYS\global
    -> arg[ 23]: -Dapplication.home=E:\usr\sap\PID\DVEBMGS10\exe
    -> arg[ 24]: -Djava.class.path=E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 25]: -Djava.library.path=D:\j2sdk1.4.2_17-x64\jre\bin\server;D:\j2sdk1.4.2_17-x64\jre\bin;D:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\j2sdk1.4.2_17-x64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;E:\usr\sap\PID\SYS\exe\uc\NTAMD64
    -> arg[ 26]: -Dmemory.manager=2048M
    -> arg[ 27]: -Xmx2048M
    -> arg[ 28]: -Xms2048M
    -> arg[ 29]: -DLoadBalanceRestricted=no
    -> arg[ 30]: -Djstartup.mode=JCONTROL
    -> arg[ 31]: -Djstartup.ownProcessId=4832
    -> arg[ 32]: -Djstartup.ownHardwareId=J1559017989
    -> arg[ 33]: -Djstartup.whoami=server
    -> arg[ 34]: -Djstartup.debuggable=no
    -> arg[ 35]: -Xss2m
    -> arg[ 36]: -DSAPINFO=PID_10_server
    -> arg[ 37]: -DSAPSTART=1
    -> arg[ 38]: -DCONNECT_PORT=1247
    -> arg[ 39]: -DSAPSYSTEM=10
    -> arg[ 40]: -DSAPSYSTEMNAME=PID
    -> arg[ 41]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 42]: -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
    -> arg[ 43]: -DFRFC_FALLBACK=ON
    -> arg[ 44]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=10
    -> arg[ 47]: -DSAPSYSTEMNAME=PID
    -> arg[ 48]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 49]: -DSAPDBHOST=DUSLEXPID01
    -> arg[ 50]: -Dj2ee.dbhost=DUSLEXPID01
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 4076] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3496] Wed Nov 05 08:14:05 2008
    [Thr 3496] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3496] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3496] JLaunchISetClusterId: set cluster id 106859350
    [Thr 3496] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3496] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Wed Nov 05 08:14:10 2008
    6.041: [GC 6.041: [DefNew: 174592K->13335K(261888K), 0.1211930 secs] 174592K->13335K(2009856K), 0.1215843 secs]
    Wed Nov 05 08:14:14 2008
    9.883: [GC 9.883: [DefNew: 187927K->15890K(261888K), 0.0979547 secs] 187927K->15890K(2009856K), 0.0980789 secs]
    Wed Nov 05 08:14:21 2008
    17.430: [GC 17.430: [DefNew: 190482K->19358K(261888K), 0.0930447 secs] 190482K->19358K(2009856K), 0.0930765 secs]
    Wed Nov 05 08:14:32 2008
    27.978: [GC 27.978: [DefNew: 193950K->19860K(261888K), 0.0579395 secs] 193950K->19860K(2009856K), 0.0580111 secs]
    Wed Nov 05 08:14:37 2008
    33.029: [GC 33.029: [DefNew: 194452K->27786K(261888K), 0.1155328 secs] 194452K->27786K(2009856K), 0.1156287 secs]
    [Thr 2848] Wed Nov 05 08:14:38 2008
    [Thr 2848] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 2848] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 2848] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "E:\usr\sap\PID\DVEBMGS10\work\dev_server0", trc level: 1, release: "700"
    node name   : ID106859350
    pid         : 4556
    system name : PID
    system nr.  : 10
    started at  : Wed Nov 05 08:14:39 2008
    arguments       :
           arg[00] : E:\usr\sap\PID\DVEBMGS10\exe\jlaunch.exe
           arg[01] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[02] : -DSAPINFO=PID_10_server
           arg[03] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1247
           arg[06] : -DSAPSYSTEM=10
           arg[07] : -DSAPSYSTEMNAME=PID
           arg[08] : -DSAPMYNAME=DUSLEXPID01_PID_10
           arg[09] : -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4332] Wed Nov 05 08:14:39 2008
    [Thr 4332] *** WARNING => INFO: Unknown property [instance.box.number=PIDDVEBMGS10duslexpid01] [jstartxx.c   841]
    [Thr 4332] *** WARNING => INFO: Unknown property [instance.en.host=DUSLEXPID01] [jstartxx.c   841]
    [Thr 4332] *** WARNING => INFO: Unknown property [instance.en.port=3220] [jstartxx.c   841]
    [Thr 4332] *** WARNING => INFO: Unknown property [instance.system.id=10] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties]
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> OS libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> os libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID10685930 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID10685935 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID106859300          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] ID106859350          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    [Thr 4332] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4332] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 1764] JLaunchRequestFunc: Thread 1764 started as listener thread for np messages.
    [Thr 2972] WaitSyncSemThread: Thread 2972 started as semaphore monitor thread.
    [Thr 4332] NiInit3: NI already initialized; param 'maxHandles' ignored (1;10002)
    [Thr 4332] CPIC (version=700.2006.09.13)
    [Thr 4332] [Node: server0] java home is set by profile parameter
         Java Home: D:\j2sdk1.4.2_17-x64
    [Thr 4332] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID106859350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : D:\j2sdk1.4.2_17-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M      -XX:PermSize=512M -XX:NewSize=341M -XX:MaxNewSize=341M -XX:DisableExplicitGC -verbose:gc -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 51021
    -> shutdown timeout   : 120000
    [Thr 4332] JLaunchISetDebugMode: set debug mode [no]
    [Thr 5364] JLaunchIStartFunc: Thread 5364 started as Java VM thread.
    [Thr 5364] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=512M     
    -> arg[  5]: -XX:PermSize=512M
    -> arg[  6]: -XX:NewSize=341M
    -> arg[  7]: -XX:MaxNewSize=341M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -XX:+PrintGCDetails
    -> arg[ 11]: -XX:+PrintGCTimeStamps
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -Dsun.io.useCanonCaches=false
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:SurvivorRatio=2
    -> arg[ 16]: -XX:TargetSurvivorRatio=90
    -> arg[ 17]: -Djava.security.policy=./java.policy
    -> arg[ 18]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 19]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 20]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 21]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 22]: -Dsys.global.dir=E:\usr\sap\PID\SYS\global
    -> arg[ 23]: -Dapplication.home=E:\usr\sap\PID\DVEBMGS10\exe
    -> arg[ 24]: -Djava.class.path=E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 25]: -Djava.library.path=D:\j2sdk1.4.2_17-x64\jre\bin\server;D:\j2sdk1.4.2_17-x64\jre\bin;D:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\j2sdk1.4.2_17-x64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;E:\usr\sap\PID\SYS\exe\uc\NTAMD64
    -> arg[ 26]: -Dmemory.manager=2048M
    -> arg[ 27]: -Xmx2048M
    -> arg[ 28]: -Xms2048M
    -> arg[ 29]: -DLoadBalanceRestricted=no
    -> arg[ 30]: -Djstartup.mode=JCONTROL
    -> arg[ 31]: -Djstartup.ownProcessId=4556
    -> arg[ 32]: -Djstartup.ownHardwareId=J1559017989
    -> arg[ 33]: -Djstartup.whoami=server
    -> arg[ 34]: -Djstartup.debuggable=no
    -> arg[ 35]: -Xss2m
    -> arg[ 36]: -DSAPINFO=PID_10_server
    -> arg[ 37]: -DSAPSTART=1
    -> arg[ 38]: -DCONNECT_PORT=1247
    -> arg[ 39]: -DSAPSYSTEM=10
    -> arg[ 40]: -DSAPSYSTEMNAME=PID
    -> arg[ 41]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 42]: -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
    -> arg[ 43]: -DFRFC_FALLBACK=ON
    -> arg[ 44]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=10
    -> arg[ 47]: -DSAPSYSTEMNAME=PID
    -> arg[ 48]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 49]: -DSAPDBHOST=DUSLEXPID01
    -> arg[ 50]: -Dj2ee.dbhost=DUSLEXPID01
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 5364] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 2276] Wed Nov 05 08:14:40 2008
    [Thr 2276] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 2276] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 2276] JLaunchISetClusterId: set cluster id 106859350
    [Thr 2276] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 2276] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Wed Nov 05 08:14:45 2008
    6.149: [GC 6.149: [DefNew: 174592K->12572K(261888K), 0.1167197 secs] 174592K->12572K(2009856K), 0.1173636 secs]
    Wed Nov 05 08:14:50 2008
    11.033: [GC 11.033: [DefNew: 187164K->16026K(261888K), 0.3094818 secs] 187164K->16026K(2009856K), 0.3096690 secs]
    Wed Nov 05 08:14:54 2008
    15.113: [GC 15.113: [DefNew: 190618K->20238K(261888K), 0.0939458 secs] 190618K->20238K(2009856K), 0.0941899 secs]
    Wed Nov 05 08:15:03 2008
    23.451: [GC 23.451: [DefNew: 194830K->20577K(261888K), 0.0593913 secs] 194830K->20577K(2009856K), 0.0595215 secs]
    Wed Nov 05 08:15:10 2008
    30.771: [GC 30.772: [DefNew: 195169K->23221K(261888K), 0.0654910 secs] 195169K->23221K(2009856K), 0.0655797 secs]
    Wed Nov 05 08:15:14 2008
    35.442: [GC 35.442: [DefNew
    Wed Nov 05 08:15:15 2008
    : 197813K->28542K(261888K), 0.1275143 secs] 197813K->28542K(2009856K), 0.1276902 secs]
    [Thr 3952] Wed Nov 05 08:15:16 2008
    [Thr 3952] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3952] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 3952] JLaunchCloseProgram: good bye (exitcode = -11113)
    trc file: "E:\usr\sap\PID\DVEBMGS10\work\dev_server0", trc level: 1, release: "700"
    node name   : ID106859350
    pid         : 6068
    system name : PID
    system nr.  : 10
    started at  : Wed Nov 05 08:15:19 2008
    arguments       :
           arg[00] : E:\usr\sap\PID\DVEBMGS10\exe\jlaunch.exe
           arg[01] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[02] : -DSAPINFO=PID_10_server
           arg[03] : pf=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=1247
           arg[06] : -DSAPSYSTEM=10
           arg[07] : -DSAPSYSTEMNAME=PID
           arg[08] : -DSAPMYNAME=DUSLEXPID01_PID_10
           arg[09] : -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr 4752] Wed Nov 05 08:15:19 2008
    [Thr 4752] *** WARNING => INFO: Unknown property [instance.box.number=PIDDVEBMGS10duslexpid01] [jstartxx.c   841]
    [Thr 4752] *** WARNING => INFO: Unknown property [instance.en.host=DUSLEXPID01] [jstartxx.c   841]
    [Thr 4752] *** WARNING => INFO: Unknown property [instance.en.port=3220] [jstartxx.c   841]
    [Thr 4752] *** WARNING => INFO: Unknown property [instance.system.id=10] [jstartxx.c   841]
    JStartupReadInstanceProperties: read instance properties [E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties]
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> OS libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Instance properties
    -> ms host    : DUSLEXPID01
    -> ms port    : 3920
    -> os libs    : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] bootstrap_ID10685930 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [02] bootstrap_ID10685935 : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    Worker nodes
    -> [00] ID106859300          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    -> [01] ID106859350          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\instance.properties
    [Thr 4752] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr 4752] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 4252] JLaunchRequestFunc: Thread 4252 started as listener thread for np messages.
    [Thr 4512] WaitSyncSemThread: Thread 4512 started as semaphore monitor thread.
    [Thr 4752] NiInit3: NI already initialized; param 'maxHandles' ignored (1;10002)
    [Thr 4752] CPIC (version=700.2006.09.13)
    [Thr 4752] [Node: server0] java home is set by profile parameter
         Java Home: D:\j2sdk1.4.2_17-x64
    [Thr 4752] JStartupICheckFrameworkPackage: can't find framework package E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    JStartupIReadSection: read node properties [ID106859350]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : D:\j2sdk1.4.2_17-x64
    -> java parameters    : -Djco.jarm=1 -XX:MaxPermSize=512M      -XX:PermSize=512M -XX:NewSize=341M -XX:MaxNewSize=341M -XX:DisableExplicitGC -verbose:gc -XX:PrintGCDetails -XX:+PrintGCTimeStamps -Djava.awt.headless=true -Dsun.io.useCanonCaches=false -XX:SoftRefLRUPolicyMSPerMB=1 -XX:SurvivorRatio=2 -XX:TargetSurvivorRatio=90 -Djava.security.policy=./java.policy -Djava.security.egd=file:/dev/urandom -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> java vm version    : 1.4.2_17-b06
    -> java vm vendor     : Java HotSpot(TM) 64-Bit Server VM (Sun Microsystems Inc.)
    -> java vm type       : server
    -> java vm cpu        : amd64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : E:\usr\sap\PID\DVEBMGS10\j2ee\cluster\server0
    -> class path         : .\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> OS libs path       : E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs
    -> main class         : com.sap.engine.boot.Start
    -> framework class    : com.sap.bc.proj.jstartup.JStartupFramework
    -> registr. class     : com.sap.bc.proj.jstartup.JStartupNatives
    -> framework path     : E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 51021
    -> shutdown timeout   : 120000
    [Thr 4752] JLaunchISetDebugMode: set debug mode [no]
    [Thr 3816] JLaunchIStartFunc: Thread 3816 started as Java VM thread.
    [Thr 3816] [JHVM_PrepareVMOptions] use java parameters set by profile parameter
         Java Parameters: -Xss2m
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Djco.jarm=1
    -> arg[  4]: -XX:MaxPermSize=512M     
    -> arg[  5]: -XX:PermSize=512M
    -> arg[  6]: -XX:NewSize=341M
    -> arg[  7]: -XX:MaxNewSize=341M
    -> arg[  8]: -XX:+DisableExplicitGC
    -> arg[  9]: -verbose:gc
    -> arg[ 10]: -XX:+PrintGCDetails
    -> arg[ 11]: -XX:+PrintGCTimeStamps
    -> arg[ 12]: -Djava.awt.headless=true
    -> arg[ 13]: -Dsun.io.useCanonCaches=false
    -> arg[ 14]: -XX:SoftRefLRUPolicyMSPerMB=1
    -> arg[ 15]: -XX:SurvivorRatio=2
    -> arg[ 16]: -XX:TargetSurvivorRatio=90
    -> arg[ 17]: -Djava.security.policy=./java.policy
    -> arg[ 18]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 19]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 20]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 21]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 22]: -Dsys.global.dir=E:\usr\sap\PID\SYS\global
    -> arg[ 23]: -Dapplication.home=E:\usr\sap\PID\DVEBMGS10\exe
    -> arg[ 24]: -Djava.class.path=E:\usr\sap\PID\DVEBMGS10\exe\jstartup.jar;E:\usr\sap\PID\DVEBMGS10\exe\jvmx.jar;.\bin\boot\boot.jar;.\bin\boot\jaas.jar;.\bin\system\bytecode.jar;.
    -> arg[ 25]: -Djava.library.path=D:\j2sdk1.4.2_17-x64\jre\bin\server;D:\j2sdk1.4.2_17-x64\jre\bin;D:\j2sdk1.4.2_17-x64\bin;E:\usr\sap\PID\DVEBMGS10\j2ee\os_libs;C:\WINDOWS\system32;C:\WINDOWS;C:\WINDOWS\System32\Wbem;D:\j2sdk1.4.2_17-x64\bin;C:\Program Files\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\binn\;C:\Program Files (x86)\Microsoft SQL Server\90\DTS\Binn\;C:\Program Files (x86)\Microsoft SQL Server\90\Tools\Binn\VSShell\Common7\IDE\;C:\Program Files\Microsoft SQL Server\90\DTS\Binn\;E:\usr\sap\PID\SYS\exe\uc\NTAMD64
    -> arg[ 26]: -Dmemory.manager=2048M
    -> arg[ 27]: -Xmx2048M
    -> arg[ 28]: -Xms2048M
    -> arg[ 29]: -DLoadBalanceRestricted=no
    -> arg[ 30]: -Djstartup.mode=JCONTROL
    -> arg[ 31]: -Djstartup.ownProcessId=6068
    -> arg[ 32]: -Djstartup.ownHardwareId=J1559017989
    -> arg[ 33]: -Djstartup.whoami=server
    -> arg[ 34]: -Djstartup.debuggable=no
    -> arg[ 35]: -Xss2m
    -> arg[ 36]: -DSAPINFO=PID_10_server
    -> arg[ 37]: -DSAPSTART=1
    -> arg[ 38]: -DCONNECT_PORT=1247
    -> arg[ 39]: -DSAPSYSTEM=10
    -> arg[ 40]: -DSAPSYSTEMNAME=PID
    -> arg[ 41]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 42]: -DSAPPROFILE=E:\usr\sap\PID\SYS\profile\PID_DVEBMGS10_DUSLEXPID01
    -> arg[ 43]: -DFRFC_FALLBACK=ON
    -> arg[ 44]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 45]: -DSAPSTARTUP=1
    -> arg[ 46]: -DSAPSYSTEM=10
    -> arg[ 47]: -DSAPSYSTEMNAME=PID
    -> arg[ 48]: -DSAPMYNAME=DUSLEXPID01_PID_10
    -> arg[ 49]: -DSAPDBHOST=DUSLEXPID01
    -> arg[ 50]: -Dj2ee.dbhost=DUSLEXPID01
    CompilerOracle: exclude com/sapportals/portal/pb/layout/taglib/ContainerTag addIviewResources
    CompilerOracle: exclude com/sap/engine/services/keystore/impl/security/CodeBasedSecurityConnector getApplicationDomain
    CompilerOracle: exclude com/sap/engine/services/rmi_p4/P4StubSkeletonGenerator generateStub
    CompilerOracle: exclude com/sapportals/portal/prt/util/StringUtils escapeToJS
    CompilerOracle: exclude com/sapportals/portal/prt/core/broker/PortalServiceItem startServices
    CompilerOracle: exclude com/sap/engine/services/webservices/server/deploy/WSConfigurationHandler downloadFile
    CompilerOracle: exclude com/sapportals/portal/prt/jndisupport/util/AbstractHierarchicalContext lookup
    CompilerOracle: exclude com/sapportals/portal/navigation/cache/CacheNavigationNode getAttributeValue
    CompilerOracle: exclude com/sapportals/portal/navigation/TopLevelNavigationiView PrintNode
    CompilerOracle: exclude com/sapportals/wcm/service/ice/wcm/ICEPropertiesCoder encode
    CompilerOracle: exclude com/sap/lcr/pers/delta/importing/ObjectLoader loadObjects
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readElement
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/InstanceBuilder readSequence
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/TypeMappingImpl initializeRelations
    CompilerOracle: exclude com/sap/engine/services/webservices/jaxrpc/encoding/GeneratedComplexType _loadInto
    [Thr 3816] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 1372] Wed Nov 05 08:15:20 2008
    [Thr 1372] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 1372] Wed Nov 05 08:15:21 2008
    [Thr 1372] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 1372] JLaunchISetClusterId: set cluster id 106859350
    [Thr 1372] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 1372] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    Wed Nov 05 08:15:26 2008
    6.529: [GC 6.529: [DefNew: 174592K->13437K(261888K), 0.1218582 secs] 174592K->13437K(2009856K), 0.1223161 secs]
    Wed Nov 05 08:15:30 2008
    10.941: [GC 10.942: [DefNew
    Wed Nov 05 08:15:31 2008
    : 188029K->15892K(261888K), 0.3255441 secs] 188029K->15892K(2009856K), 0.3256218 secs]
    Wed Nov 05 08:15:38 2008
    18.455: [GC 18.455: [DefNew: 190484K->19362K(261888K), 0.0835074 secs] 190484K->19362K(2009856K), 0.0836031 secs]
    Wed Nov 05 08:15:48 2008
    28.946: [GC 28.946: [DefNew: 193954K->19874K(261888K), 0.0533974 secs] 193954K->19874K(2009856K), 0.0534885 secs]
    Wed Nov 05 08:15:53 2008
    34.034: [GC 34.035: [DefNew: 194466K->27947K(261888K), 0.1244274 secs] 194466K->27947K(2009856K), 0.1247078 secs]
    [Thr 3852] Wed Nov 05 08:15:54 2008
    [Thr 3852] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 3852] **********************************************************************
    ERROR => The Java VM terminated with a non-zero exit code.
    Please see SAP Note 943602 , section 'J2EE Engine exit codes'
    for additional information and trouble shooting.
    [Thr 3852] JLaunchCloseProgram: good bye (exitcode = -11113)
    Regards,
    Sankar

  • Hiding the execute button of the standard screen

    Hi,
    I want to hide & disable the standard execute button which appears on the selection-screen on execution of a report.
    Kindly let me know of how to go about it.
    Thanks in advance.
    Regards,
    Malathi V.

    Here is how you can do it.  This way you don't have to create your own gui status.
    report zrich_0002 .
    * Used to limit user commands on selection-screen
    include rsdbc1xx.
    * Selection Screen
    parameters: p_check type c.
    * Events
    at selection-screen output.
      append 'ONLI' to current_scr-excl.   "Execute
      append 'PRIN' to current_scr-excl.   "Execute and Print
      append 'SJOB' to current_scr-excl.   "Execute in Background
    Regards,
    Rich Heilman

  • Report parameter textboxes and execute button is missing. Date Model works.

    Hello,
    I created a BI Publisher Data Model. Did the testing of it by generating XML sample data.
    The data model requires 3 parameters as input. All worked fine for generating the XML.
    When I now create a report with a .rtf template that uses the data model. then
    no parameter-entry header appears. no execute button either. why is that?
    thanks.

    I think the issue is a bigger one. when I try to upload the template I get the pop up saying "Object reference not set to an instance of an object". The .rtf template is not bigger than 2mb.

  • Hide the Execute Button

    Dear all,
    Im writing a report for reading details from a barcode reader.
    My requirement is in At seletion screen I do the necessary processing and want to hide the execute button.
    Please could any one help me.
    Thanks
    ann

    Hi Ann:
    It's late for my answer, but I send this post. May be useful.
    I faced the same problem for other reasons.
    I solved the problem by doing:
    AT SELECTION-SCREEN OUTPUT.
      DATA gt_ucomm TYPE TABLE OF sy-ucomm.
      APPEND: 'ONLI' TO gt_ucomm.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
           EXPORTING
                p_status  = sy-pfkey
           TABLES
                p_exclude = gt_ucomm.
    This works well if your selection screen is number 1000 (default).
    But if you define a selection selection screen with another number, like this:
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    PARAMETERS:
        p_examle like sy-datum.
    SELECTION-SCREEN BEGIN OF SCREEN 100.
    And you don't define a Status GUI for screen 100, then the solution does not work because sy-pfkey is not informed.
    Then I solved by changing the call to the Function Module in this way:
    AT SELECTION-SCREEN OUTPUT.
      DATA gt_ucomm TYPE TABLE OF sy-ucomm.
      APPEND: 'ONLI' TO gt_ucomm.
      CALL FUNCTION 'RS_SET_SELSCREEN_STATUS'
           EXPORTING
                p_status  = '%_00'  "Status GUI for screen 1000
           TABLES
                p_exclude = gt_ucomm.

  • Execute button and call transaction

    Hi,
    I have 2 buttons - activate and deactivate in the selection screen of a classical report. I use call transaction to do the process and both the buttons work. But I have to click on the execute button on top left everytime before clicking on activate or deactivate buttons. Otherwise it gives the message No changes made after doing the call transaction.
    How to make it work without clicking on the execute button everytime?
    Regards,
    bindazme

    Hi Sesh,
    here is the code.
    Selection Screen Declaration
    selection-screen : begin of block blk1 with frame title text-001.
    parameters: s_matnr like qmat-matnr.
    parameters: s_werks like qmat-werks.
    parameters: p_insty like qmat-art.
    selection-screen  : end of block blk1.
    selection-screen : begin of block blk2 with frame title text-002,
                        begin of line,
                        pushbutton 2(20)  but1 user-command clk1,
                        pushbutton 32(20) but2 user-command clk2,
    selection-screen :  end of line,
                        end of block blk2.
    Selection Screen Output
    at selection-screen output.
       but1 = 'Activate Insp type'.
       but2 = 'DeActivate Insp type'.
    Start of selection
    at selection-screen.
    Acitvate Inspection type
    if  sy-ucomm = 'CLK1'.
    perform screen using: 'SAPLMGMM' '0060'.
    perform field using: 'BDC_CURSOR' 'RMMG1-MATNR',
    'RMMG1-MATNR' s_matnr,
    'BDC_OKCODE' '=AUSW'.
    call transaction 'MM02' using bdctab mode 'N' update 'L'.
    endif.
    DeActivate Inspection type
    if  sy-ucomm = 'CLK2'.
    perform screen using: 'SAPLMGMM' '0060'.
    perform field using: 'BDC_CURSOR' 'RMMG1-MATNR',
    'RMMG1-MATNR' s_matnr,
    'BDC_OKCODE' '=AUSW'.
    call transaction 'MM02' using bdctab mode 'N' update 'L'.
    endif.

  • Execute button in Interactive alv

    hi,
    i have a requirement where in the alv is displayed and then i should select one of the lines out of alv grid and then click on execute button to perform some function which displays again ALV
    I am able toactivate the double click event like if i double click on selected record from ALV,i would be able to perform the further function but does not any body know how to create an execute button in ALV and then perform action on clicking execute button
    kanishak

    Hi kanishak,
    There are lot of topics discussed in SCN related to this. You can get lots of samples as to your issue.
    Copy the STANDARD GUI status from report SAPLKKBL using
    T-Code SE80--->Programming Sub-objects--->GUI status.
    Code:
    call function 'REUSE_ALV_GRID_DISPLAY'
             exporting  i_callback_program = gc_repid
                        I_CALLBACK_PF_STATUS_SET = 'SET_PF_STATUS'
                        I_CALLBACK_USER_COMMAND  = 'USER_COMMAND'
                        i_grid_title       = lc_grid_title
                        is_layout          = lc_layout
                        it_fieldcat        = gt_fieldcat
                        it_sort            = sort
                        i_save             = l_save
                        is_reprep_id       = l_bbs_id
                        is_variant         = l_variant
             tables     t_outtab           = it_final
             exceptions program_error      = 1
                        others             = 2.
    The parameters in capitals are the extra ones that need to be added.

  • How to execute a SELECT statement  in java??

    Hello !!
    In my java program , i need to delete a record of number X, so
    i accept the number X from the keyboard
    Then before deleting it
    i want the program to show me the name, age of the record which has the number X
    How to do this

    hello kylas
    actually i didnt get why this program example?? wats
    its executing ??? Look at reply #3 in your other thread:
    http://forum.java.sun.com/thread.jspa?threadID=713289&messageID=4126346
    Notice the similarity? You've now asked "How to delete a record in Java" and "how to execute a select statement in java". You may have noticed that, aside from the SQL and the call to execute and executeUpdate (for delete) it's the same code. This is because you don't so much do these things in Java, you do them in SQL. The Java code simply asks the Driver to execute whatever SQL you write. So, I really hope your next post isn't "how do I execute an UPDATE statement in Java".
    Good Luck
    Lee

  • Print button on my webdynpro JAVA page

    Hi Experts,
    Is there any way that I can include a print button on my webdynpro JAVA page. ON click of the Print button I have to print the entire Page. User is able to print the page by using the print option of Browser, but in that case if the page is having a vertical or horizontal scroll, print output will contain only the visible part.
    Thanks and Regards,
    Sarath Satheesan

    Hi Sarath,
    Printing Web Dynpro Java (WDJ) applications is one of the missing functionalities that everyone wants to have in their application. you can use third party open source reporting tool, JasperReports, to solve this issue
    Printing in Web Dynpro using JasperReports
    PART 1 - /people/jawed.ali/blog/2009/02/09/part-i-print-web-dynpro-java-applications-using-jasperreports
    PART 2 - /people/jawed.ali/blog/2009/02/09/part-i-print-web-dynpro-java-applications-using-jasperreports
    PART 3 - /people/jawed.ali/blog/2009/10/30/part-iii-print-web-dynpro-java-applications-using-jasperreports
    Hope this will fulfil you requiremnt.
    Thanks
    Arun

  • Executing a shell script from java using runtime.exec()

    Hi I am trying to create a script (test_script) and execute it -- all within one java program...
    the code compiles and executes perfectly but nothing happens. This is probably because the script does not get changed to the '777' mode although i am trying to do that ... any suggestions ???
    //code
    import java.io.*;
    import java.util.*;
    public class ScriptBuilder
         public ScriptBuilder() {
         public void writeScript() throws java.io.IOException{
         FileWriter writer = new FileWriter(new File("test_script"));
              writer.write("#! /bin/sh\n");
              writer.write("cd prodiags\n");
              writer.write("tar cvf delTask.tar delTask\n");
              writer.write("rm -rf delTask\n");          
              writer.flush();
              writer.close();
    Runtime rt= Runtime.getRuntime();
    String[] cmd = new String[3];
    cmd[0] = "ls";
    cmd[1] = "chmod 777 test_script";
    cmd[2] = "./test_script";
    rt.exec(cmd);
         public static void main (String[] args)throws java.io.IOException
         ScriptBuilder sb = new ScriptBuilder();
         sb.writeScript();
    }

    I don't know exactly but the code written below is working fine try the same with your code .Even with your code instead running the code with
    " ./<filename> ",if you execute it with "sh <filename>" command without changing the mode of the file it is executing properly.
    import java.io.*;
    import java.util.*;
    public class ScriptBuilder
    public ScriptBuilder()
    public void writeScript() throws java.io.IOException
    FileWriter writer = new FileWriter(new File("test_script"));
    writer.write("#! /bin/sh\n");
    writer.write("ll>/home/faiyaz/javaprac/checkll");
    writer.flush();
    writer.close();
    Runtime rt= Runtime.getRuntime();
    rt.exec("chmod 777 test_script");
    rt.exec("./test_script");
    } public static void main (String[] args)throws java.io.IOException
    ScriptBuilder sb = new ScriptBuilder();
    sb.writeScript();
    }

  • Setting the webservice url at run time for a execute button in adobe form

    Hi,
    I am using Data connection from the wsdl file to interact with the backend, the button generated from the data connection is of type execute which has the url of the webservice in the object property "Webservice URL" and name of the FM in the interface name. My problem is at present the form is working fine but when the same form transported to QA and PRD them the url of the webservice gets change. hence the same button wont function.
    The solution is either we do the changes manually in all the system or pass the url at run time. Please proide me the solution if there is a way to set this url in the execute button at runtime.
    Thanks in advance.
    Pooja

    Why don't you pass in the URL via an XML input file and bind a hidden text field in your form to that element in your XML? Then use javascript to modify the docReady event of the submit button to something like this:
    var url = textFieldWithURL.rawValue;
    this.event__click.submit.target = url;

  • Can the EXECUTE button on a selection screen suppressed?

    Can we suppress the EXECUTE button on the selection screen?

    Hi
    The flowlogic Keyword at EXIT-COMMAND is a special addition to the MODULE statement in the Flow Logic .AT EXIT-COMMAND  you can call a module before the system executes the automatic fields checks.
    u2018SUPPRESS DIALOGu2019 command allows to perform screen processing u201Cin the backgroundu201D. Suppresing screens is useful when we are branching to list-mode from a transaction dialog step.

Maybe you are looking for

  • Ichat to ichat not working

    OK guys looking for some advice, I recently bought a isight to use in my mac mini. I set myself up a AIM account and use it through ichat. I tried getting it working with my dad on his mac notebook and we kept getting an error flashing up in the scre

  • Unable to use Disk Utility to repair disk.

    Hi all I have been having some problems trying to transfer movies from computer to my iPod. Someone just suggested that I use Disk Utility to verify disk permissions, as well as the disk. I was able to verify disk permissions and repair them. Noticed

  • No image when using Photo Booth

    The Photo Booth preview screen is black. When you take a picture it cycles but there is no image aquired. When I try to use iChat the camera works. Is the a software problem? How can I fix it?

  • Invalid range "a-Z" in transliteration operator

    Hello, With your help I am close to finishing my linux migration however I am getting the following error while running patch 3077161. It is trying to execute the following command perl -x /oracle/ebt/ebtappl/jtf/11.5.0/admin/scripts/ojspCompile.pl c

  • Trying to buy app from iTunes and getting error code 1202

    Hi everyone. I am trying to buy an app from iTunes store but it is giving me error 1202 while starts the download. Anyone has any idea regarding this?