RFC call stops Java engine

Hello All.
A function module (RFC_READ_TABLE) is called from Web Dynpro Java application using Adaptive RFC model. When the number of returned data records is above 20000 Java engine stops.
It there any settings to increase Web Dynpro cache size or something else?
Thanks in advance.

Hi,
Check SAP Note 382318 - RFC_READ_TABLE
The scope of function module RFC_READ_TABLE is very restricted. E.g., due to the fixed maximum row size only smaller tables can be accessed. There are several data types that cannot be handled, and also there are doubts regarding the Unicode compatibility of the function module.
However, all this is quite immaterial, because the function is not meant to be publicly used anyway. It was only created to be used as a sample in various training courses, and is clearly flagged as "not released for customer".
Function module RFC_READ_TABLE should not be used as such.
Hope this helps,
Regards,
Anagha

Similar Messages

  • How to STOP JAVA ENGINE ONLY

    Hi,
    I installed NW2004S with both JAVA+ABAP stack and both are up and running i have some memory issues here.So i want to run only ABAP Stack now and how can i start the ABAP stack only.
    Can any one suggest me how to do this..and explain the procedure.
    And also can any one suggest me hwo to change the memory parameters for increasing the performance.I have 2 GB ram in my system.Can u tell whcih papameter files i have to edit..
    Regards,
    surya

    Hi surya,
    the parameter makes your java system not to start automatically when ever you start the abap engine so you are having the following message in MMC
    <b>message server connected status ok,J2EE status info unavailable</b>
    java takes much of your CPU resources so if you stop JAVA engine your system sure to behave good rest keep the default as itis dont try to change those parameters unless some critical issue comes
    Samrat

  • Asyncronic JCO RFC call from JAVA to ABAP

    Hi,
    Please could you provide a sample java code to establish JCO RFC call to ABAP?
    Thanks.

    Hi Denis,
    Import the model In NWDS for ABAP for RFC.
    Please check here [Accessing ABAP Functions using the Adaptive RFC Model |http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a00f7103-6790-2a10-ac9c-fcac7c5b18a3?quicklink=index&overridelayout=true]
    [Web Dynpro Model: Backend Access|http://www.sdn.sap.com/irj/sdn/nw-wdjava?rid=/webcontent/uuid/403e6bf5-426e-2910-b0a8-a95548724af9#section10 [original link is broken]]
    Also check here /docs/DOC-8661#section10 [original link is broken]
    Hope it helps,
    Redards,
    Arun

  • Upload and Download file through RFC called by java

    We are trying to download/upload file through rfc function called by java(JCO),In the rfc function,we use WS_DOWNLOAD,but it does not work.
    Any one know about this,Please help ,thanks very much.
    Message was edited by: gw gw

    Hi gw,
    This question looks a little confusing to me.
    WS_DOWNLOAD is used to download files from SAP to the presentation server (your PC).  It will not work through RFC.
    BUT, also if you want to access a function module via RFC is must be RFC enabled (as Anand pointed out).
    AND WS_DOWNLOAD uses a PUSH approach.  It pushes a file to the PC from ABAP.  So even if the two points above weren't a problem it still would not be suitable for what you are doing.
    Perhaps you could explain a little what you are trying to achieve.
    Cheers,
    Brad

  • RFC call from java webdynpro

    Hi,
    I'm creating a Java Webdynpro where I call RFC's from SAP.
    For the images in the webdynpro, I call the standard SAP function 'CVAPI_DOC_VIEW'
    When I execute the function in SAP, I get the url to the contentserver with the correct image.
    After calling the same function in my Java Webdynpro, the url is empty.
    I've checked the importing parameters after calling from webdynpro and SAP and they are the same.
    After debugging, I saw that the function 'CVAPI_DOC_VIEW' is the problem. He's exporting an empty url after calling from the webdynpro.
    Does anybody knows the possible fault and solution for my problem?

    I'm not an ABAPer but the last time I've dealt with DMS from Web Dynpro an ABAPer wrote a custom function that gets the file content (XSTRING) by sending DMS parameters (documenttype, documentnumber, documentversion, documentpart).
    After getting the XSTRING from my Web Dynpro Java, I convert it to byte[] and created URL by using WDResourceFactory.
    Hope it helps...
    Omri

  • XML pay load for RFC call in java mapping

    Hi,
    I searched in many forums about the payload to be given for RFC Lookup from a functional module,but i think i am not able to get it correct.
    Can any one please give me the exact structure of XML Payload to be sent while invoking the function module via RFC LOOKUP
    Say i have 2 import parameters(input1,input2) and one output(output1)......
    Thanks in advance,
    H.L.Babu

    >
    hlbabu123 wrote:
    > Hi,
    > I searched in many forums about the payload to be given for RFC Lookup from a functional module,but i think i am not able to get it correct.
    >
    > Can any one please give me the exact structure of XML Payload to be sent while invoking the function module via RFC LOOKUP
    >
    > Say i have 2 import parameters(input1,input2) and one output(output1)......
    >
    > Thanks in advance,
    > H.L.Babu
    have a look at this document - https://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/a03e7b02-eea4-2910-089f-8214c6d1b439&overridelayout=true
    in case u still have issues do get back

  • Creating RFC request in java

    Hi.
    I have a small issue, creating a RFC call from java.
    To be specific, I'm updating a table in the backend, using an adapter module.
    When creating the request using DOM, I get this error:
    Exception:
    Exception: error while processing message to remote system:
    com.sap.aii.af.rfc.core.client.RfcClientException: could not get functionname from XML requst:
    com.sap.aii.af.rfc.RfcAdapterException: failed to read funtionname from XML document: missing namespace declaration(2).
    I've seen a few places in the forum, that there's a simular problem in UDF, where you have to create the request string in one line. Else you get the same error.
    The question is, what is the difference between these two functions, and why is the DOM function failing when the other one works?
    The request should look like this:
      <?xml version="1.0" encoding="UTF-8"?>
      <rfc:Z_MON_SURV_UPDATE xmlns:ns1="urn:sap-com:document:sap:rfc:functions">
          <ID>1</ID>
      </rfc:Z_MON_SURV_UPDATE>
    Function 1:
    private NodeList buildRequestXml(String id) {
    try {
         Document doc = DocumentBuilderFactory.newInstance().newDocumentBuilder().newDocument();
         Node docRoot = doc.appendChild(doc.createElementNS("urn:sap-com:document:sap:rfc:functions","rfc:Z_MON_SURV_UPDATE"));
         Element ID = doc.createElement("ID");
         docRoot.appendChild(ID).appendChild(doc.createTextNode(id));
         return doc.getChildNodes();
    } catch (Exception e) {
         throw new RuntimeException("Error while building request XML", e);}
    Function 2:
    private NodeList buildRequestXml(String id) throws SAXException, IOException, ParserConfigurationException, FactoryConfigurationError {
         String res = "<rfc:Z_MON_SURV_UPDATE xmlns:rfc=\"urn:sap-com:document:sap:rfc:functions\"><ID>"id"</ID></rfc:Z_MON_SURV_UPDATE>";
         Document XMLDoc= DocumentBuilderFactory.newInstance().newDocumentBuilder().parse(new InputSource(new StringReader(res)));     
         return XMLDoc.getChildNodes();
    Regards...
    Peter

    Hi Aashish.
    Your right, thanks.
    Just tried the something like, what you suggest.
    In my case the result method looks like this:
    private NodeList buildRequestXml(String id) {
         try {
              Document doc =
                   DocumentBuilderFactory
                        .newInstance()
                        .newDocumentBuilder()
                        .newDocument();
              Node docRoot =     doc;
              Element Z_MON_SURV_UPDATE = doc.createElement("rfc:Z_MON_SURV_UPDATE");
              Z_MON_SURV_UPDATE.setAttribute("xmlns:ns1","urn:sap-com:document:sap:rfc:functions");
              docRoot = doc.appendChild(Z_MON_SURV_UPDATE);
              Element ID = doc.createElement("ID");
              docRoot.appendChild(ID).appendChild(doc.createTextNode(id));
              return doc.getChildNodes();
         } catch (Exception e) {
              throw new RuntimeException("Error while building request XML", e);
    Regards...
    Peter

  • Duration of an Abap Function call from Java using Jco3

    Hi guys!
    I would like to use this discussion to get some refernces of the duration Timespan of an RFC call from Java to SAP. At the moment, i need at last about 200ms to call the Abap function. I'm just using one simple import and export parameter (so no deep structures). I think that the reason for my poor performance is, that the Java Tool and the SAP instance are not in the same network. So, i hope some of you have some data, how fast an RFC call from Java using Jco can be executed.
    greetings, Hannes

    Hi Hannes,
    I think you have already got the answer to your question - the network set-up you have is probably the bottleneck.  Whenever I've worked with Java <-> ABAP and they are in the same network, I've had no performance problems at all.
    Does your RFC contain any complex logic or business processes?  Are you able to try and call something that does nothing, say it just accepts an input string and returns it straight away as an export.  Do you have any scope for testing with your Java tool on the same network as the SAP system?
    Cheers,
    G.

  • Calling a JAVA program from an RFC in SAP ABAP

    Hi All,
    I have an RFC for a specific purpose in which I need to call a JAVA program whose path is given to me. Please suggest a possible process to do the same .
    Your's <removed by moderator> responce is highly appreciated.
    Thank you.
    Edited by: Thomas Zloch on Nov 26, 2010 1:33 PM - priority normalised

    Hi Priyanth,
      I am not sure but check this out
      If you are using any commands , check if that command is configured in SM69

  • Error in starting SAP GUI as part of an Java RFC call from a PC

    Hi,
    We are on the 4.6C version of SAP and have the latest basis kernel patches that allow an RFC connection to start the SAP GUI. The program that I am running externally is java using the 3.0.1 JCo. The OS of the PC I am using is Windows XP. The SAPGUI version is 7.10 patch level 11.
    The program seems to be working properly as the command prompt window goes grey as if there is another window being opened but then I get back this error message and I do not see the GUI.
    The message I am getting back is:
    Exception in thread "main" com.sap.conn.jco.JCoException:(136) JCO_ERROR_ILLEGAL_STATE:Launching SAP GUI failed, though it was requested(error message:Communication with SAPGUI timed out)
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.startSAPGui(MiddlewareJavaRfc.java:1853)
    at com.sap.conn.jco.rt.MiddlewareJavaRfc$JavaRfcClient.connect(MiddlewareJavaRfc.java:1285)
    at com.sap.conn.jco.rt.ClientConnection.connect(ClientConnection.java:661)
    at com.sap.conn.jco.rt.PoolingFactory.init(PoolingFactory.java:103)
    at com.sap.conn.jco.rt.ConnectionManager.createFactory(ConnectionManager.java:171)
    at com.sap.conn.jco.rt.DefaultConnectionManager.createFactory(DefaultConnectionManager.java:44)
    at com.sap.conn.jco.rt.ConnectionManager.getFactory(ConnectionManager.java:160)
    at com.sap.conn.jco.rt.RfcDestination.initializ(RfcDestination.java:766)
    at com.sap.conn.jco.rt.RfcDestination.getSystemID(RfcDestination.java:794)
    at com.sap.conn.jco.rt.RepositoryManager.getRepository(RepositoryManager.java:32)
    at com.sap.conn.jco.rt.RfcDestination.getRepository(RfcDestination.java:865)
    at GISToSAPWO_Test.get_wo_call(GISToSAPWo.java:91)
    at GISToSAPWO_Test.main(GISToSAPWO_Test.java:206)
    I have been all over trying to find the solution to this and have come up empty. Any help will be greatly appreciated. If this is the wrong forum for this please let me know and I will re-post.
    Thank you in advance for any information you can pass on about the issue,
    Mark

    Hi Greetson,
    Thank you in advance for your response. It is greatly appreciated.
    1) In a way yes. I am using the connection setting USE_SAPGUI = 1. This is suppose to start the GUI prior to starting the RFC's program run. If this is not correct please let me know.
    2) The code is part of the JCo and the RFC library from what I have read. If this is not correct please let me know.
    3) I am only testing from my PC at this moment. I have re-installed my SAP GUI and am now at patch level 13 on 7.10.
    4) The application passes in the connection information which includes username and password along with the parameters for the RFC call. I would like the SAP GUI to open without the user having to re-enter his/her username and password. I thought that once the RFC is called using the dialog users credentials that the GUI would then open using the connection. I have used the java pooled connection method and it still does not open the GUI.
    5) The purpose is to pass Equipment objects, Functional Location objects and Leak Id objects to an RFC to open a list screen from IW39, List Maintenance Order transaction, for display of each at one pass, as well as open Excel with data from classification for the Leak Id's.
    Hope this sheds some light on the problem I am having. Please let me know if more information is needed.
    Best regards,
    Mark

  • Why we call adaptive RFC in webdynpro java..

    Hi,
    I want to know why we call adaptive RFC connection in webdynpro java whenever we import new rfc in our  java web dynpro project.  why name  ADAPTIVE RFC  is used
    if we  make any structure changes in the model which we imported in web dynpro project , like adding a new field, or changing the length/datatype of the existing field, then we always have to reimport the model in our webdynpro project so why adaptive name used. wats especial in the word ADAPTIVE RFC

    Hi Rahul,
    please read the guide:
    http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/10465350-b4f5-2910-61ba-a58282b3b6df?quicklink=index&overridelayout=true
    Best Regards,
    Ervin

  • Example-- Call RFC from external Java Application

    Update: I need code example to call RFC from External Java application. Can onybody help me?                                                      
    RGDS
    RP
    hi all.
    i want to create my own log for each interface.
    i saw this blog:
    /people/michal.krawczyk2/blog/2006/09/20/xi-abap-mapping-logs--more-standard-better-visibility
    my doubt is how to catch the error that i see in SXI_MONITOR y put it in a Sub-Objetc.
    For example: in sxi_monitor i get the error for my interface NMUCustomer: "No receiver could not be found" or "Error Mapping Traformation".
    I created an Object called ZNMUCUSTOMER and a Sub-Objetc called ZERROR.
    what i must do to get the error I see in monitor and assign it to Sub-Object??
    Rgds.
    Message was edited by:
            Rodrigo Pertierra
    Message was edited by:
            Rodrigo Pertierra
    Message was edited by:
            Rodrigo Pertierra

    Hi,
    Oh, you are using ABAP mapping ......
    then use the following in ABAP mapping ..
    TRACE1,TRACE2,TRACE3.... for trace level 1,2,3......
    http://help.sap.com/saphelp_nw04/helpdata/en/ba/e18b1a0fc14f1faf884ae50cece51b/content.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5c46ab90-0201-0010-42bd-9d0302591383
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/866ce290-0201-0010-338f-b8c3553aaa0f
    Regards
    Chilla

  • Calling RFC with webdynpro java (in NetWeaver Developer studio)

    Calling RFC with webdynpro java (in NetWeaver Developer studio)
    Hi,
    I want to call only one parameter RFC with webdynpro.
    Flight example is very complex.
    I want to push a button and pass parameter to RFC input and call RFC.
    After execution some message must appaer on the screen.
    Is there a step by step .pdf?
    Thanks.

    Hello Cemil,
    There's a seperate Web Dynpro forum for such posts, you should take a look there.
    Nonetheless, the classic tutorial is the FlightList. If I was you, I would make sure to do this tutorial step-by-step as it should give you the fundamentals for understanding aRFC. On top of that, it's most likely already available to you on your SAP system...
    Here's the link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a00f7103-6790-2a10-ac9c-fcac7c5b18a3
    Cheers,
    Hermann

  • Install java Engine+SDM call of changepassword

    HI,
    I am Installing ECC 6.0 on solaris 10 with MaxDB 7.6. I am getting an error at install java engine. pls find the logs
    JAVA Version is 1.4.2_15,  AMD X64 machine.
    It is not able to find the SDM directory...
    bash-3.00# cat SDMautoinstall.log
    Host name: subqas
    Create SDM directories:
    Create SDM home directory:
    Directory for SDMHome '/usr/sap/SSQ/DVEBMGS00/SDM/program' doesn't exist yet.
    Directory '/usr/sap/SSQ/DVEBMGS00/SDM/program' created
    Create SDM root directory:
    Directory '/usr/sap/SSQ/DVEBMGS00/SDM/root' created
    Extracting packed repository.
    Created repository file.
    Extracting packed root JAR
    Successfully installed SDM on /usr/sap/SSQ/DVEBMGS00/SDM/program
    Now, adjust substitution parameters and SDM configuration properly.
    After that, deploy all components with unknown filesystem location. Probably, these components have been excluded by request when packing the SDM installation.
    Finally, redeploy all filesystem SDAs using the SDM command deploy with parameter softwaretype=FS
    Successfully executed. Return code: 0
    java.log
    bash-3.00# cat java.log
    Error occurred during initialization of VM
    java.lang.Error: Properties init: Could not determine current working directory
    sapinst.log
    WARNING 2008-01-05 17:59:03
    Execution of the command "/usr/jdk/j2sdk1.4.2_15/bin/java -Xmx256M -Djava.ext.dirs=/usr/sap/SSQ/DVEBMGS00/SDM/program/lib:/usr/jdk/j2sdk1.4.2_15/jre/lib/ext -d64 -jar /usr/sap/SSQ/DVEBMGS00/SDM/program/bin/SDM.jar changepassword XXXXXX sdmhome=/usr/sap/SSQ/DVEBMGS00/SDM/program logfile=/tmp/sapinst_instdir/ERP/SYSTEM/ADA/CENTRAL/AS/callSdmViaSapinst.log" finished with return code 1. Output: Error occurred during initialization of VMjava.lang.Error: Properties init: Could not determine current working directory.
    ERROR 2008-01-05 17:59:03
    MUT-02041  SDM call of changepassword ends with returncode 1
    ERROR 2008-01-05 17:59:03
    MUT-03025  Caught ESAPinstException in Modulecall: ESAPinstException: error text undefined.
    ERROR 2008-01-05 17:59:03
    FCO-00011  The step setSDMPassword with step key |NW_Onehost|ind|ind|ind|ind|0|0|NW_Onehost_System|ind|ind|ind|ind|1|0|NW_CI_Instance|ind|ind|ind|ind|11|0|NW_CI_Instance_Configure_Java|ind|ind|ind|ind|4|0|setSDMPassword was executed with status ERROR .
    Thanks,
    Mahesh

    Hello Mahesh
    ->  Did you solve your problem?
    -> If not...   Is the <sid>adm user member of group sapinst ?       
        Please check once more the permissions of user <sid>adm (read/write)      
        installations path, check directories under /tmp/... and make sure that   
        <sid>adm has access to all directories involved.                                                                               
    -> If this does not resolve the problem can you please update with more information from the following files:                                               
    sapinst.log                                                               
    sapinst_dev.log                                                           
    keydb.xml                                                                 
    control.xml                                                               
    java.log                                                                  
    jload_java.log                                                            
    Thank you and best regards, Natalia Khlopina

  • Java engine is not coming up

    Hi,
    My java engine is not coming up for some strange reason.  Here is a partial log of dev_server0:
    trc file: "/usr/sap/GSQ/DVEBMGS02/work/dev_server0", trc level: 1, release: "700"
    node name   : ID26770150
    pid         : 1314818
    system name : GSQ
    system nr.  : 02
    started at  : Sun Sep 13 05:02:27 2009
    arguments       :
           arg[00] : /usr/sap/GSQ/DVEBMGS02/exe/jlaunch
           arg[01] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[02] : -DSAPINFO=GSQ_02_server
           arg[03] : pf=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[04] : -DSAPSTART=1
           arg[05] : -DCONNECT_PORT=64998
           arg[06] : -DSAPSYSTEM=02
           arg[07] : -DSAPSYSTEMNAME=GSQ
           arg[08] : -DSAPMYNAME=GILSAPEQ_GSQ_02
           arg[09] : -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
           arg[10] : -DFRFC_FALLBACK=ON
           arg[11] : -DFRFC_FALLBACK_HOST=localhost
    [Thr  1] Sun Sep 13 05:02:27 2009
    [Thr  1] *** WARNING => INFO: Unknown property [instance.box.number=GSQDVEBMGS02gilsapeq] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.host=GILSAPEQ] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.en.port=3203] [jstartxx_mt. 841]
    [Thr  1] *** WARNING => INFO: Unknown property [instance.system.id=2] [jstartxx_mt. 841]
    JStartupReadInstanceProperties: read instance properties [/usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties]
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> OS libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> Admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Used property files
    -> files [00] : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Instance properties
    -> ms host    : GILSAPEQ
    -> ms port    : 3903
    -> os libs    : /usr/sap/GSQ/DVEBMGS02/j2ee/os_libs
    -> admin URL  :
    -> run mode   : NORMAL
    -> run action : NONE
    -> enabled    : yes
    Bootstrap nodes
    -> [00] bootstrap            : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] bootstrap_ID26770100 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [02] bootstrap_ID26770150 : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    Worker nodes
    -> [00] ID26770100           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    -> [01] ID26770150           : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/instance.properties
    [Thr  1] JLaunchRequestQueueInit: create named pipe for ipc
    [Thr  1] JLaunchRequestQueueInit: create pipe listener thread
    [Thr 258] JLaunchRequestFunc: Thread 258 started as listener thread for np messages.
    [Thr 515] WaitSyncSemThread: Thread 515 started as semaphore monitor thread.
    [Thr  1] SigISetDefaultAction : default handling for signal 20
    [Thr  1] NiInit3: NI already initialized; param 'maxHandles' ignored (1;202)
    [Thr  1] CPIC (version=700.2009.02.11)
    [Thr  1] [Node: server0] java home is set by profile parameter
         Java Home: /usr/java14_64
    [Thr  1] JStartupICheckFrameworkPackage: can't find framework package /usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    JStartupIReadSection: read node properties [ID26770150]
    -> node name          : server0
    -> node type          : server
    -> node execute       : yes
    -> jlaunch parameters :
    -> java path          : /usr/java14_64
    -> java parameters    : -Xj9 -Xmn400m -Xgcpolicy:gencon -verbose:gc -Djco.jarm=1 -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 -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> java vm version    : J2RE 1.4.2 IBM J9 2.3 AIX ppc64-64 j9ap64142-20080510 (JIT enabled)
    -> java vm vendor     : IBM J9 VM (IBM Corporation)
    -> java vm type       : server
    -> java vm cpu        : ppc64
    -> heap size          : 2048M
    -> init heap size     : 2048M
    -> root path          : /usr/sap/GSQ/DVEBMGS02/j2ee/cluster/server0
    -> class path         : ./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> OS libs path       : /usr/sap/GSQ/DVEBMGS02/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     : /usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar
    -> shutdown class     : com.sap.engine.boot.Start
    -> parameters         :
    -> debuggable         : no
    -> debug mode         : no
    -> debug port         : 50221
    -> shutdown timeout   : 120000
    [Thr  1] JLaunchISetDebugMode: set debug mode [no]
    [Thr 772] JLaunchIStartFunc: Thread 772 started as Java VM thread.
    JHVM_LoadJavaVM: VM Arguments of node [server0]
    -> stack   : 1048576 Bytes
    -> arg[  0]: exit
    -> arg[  1]: abort
    -> arg[  2]: vfprintf
    -> arg[  3]: -Xj9
    -> arg[  4]: -Xmn400m
    -> arg[  5]: -Xgcpolicy:gencon
    -> arg[  6]: -verbose:gc
    -> arg[  7]: -Djco.jarm=1
    -> arg[  8]: -Djava.security.policy=./java.policy
    -> arg[  9]: -Djava.security.egd=file:/dev/urandom
    -> arg[ 10]: -Dorg.omg.CORBA.ORBClass=com.sap.engine.system.ORBProxy
    -> arg[ 11]: -Dorg.omg.CORBA.ORBSingletonClass=com.sap.engine.system.ORBSingletonProxy
    -> arg[ 12]: -Djavax.rmi.CORBA.PortableRemoteObjectClass=com.sap.engine.system.PortableRemoteObjectProxy
    -> arg[ 13]: -Dorg.omg.PortableInterceptor.ORBInitializerClass.com.sap.engine.services.ts.jts.ots.PortableInterceptor.JTSInitializer
    -> arg[ 14]: -Dsys.global.dir=/usr/sap/GSQ/SYS/global
    -> arg[ 15]: -Dapplication.home=/usr/sap/GSQ/DVEBMGS02/exe
    -> arg[ 16]: -Djava.class.path=/usr/sap/GSQ/DVEBMGS02/exe/jstartup.jar:/usr/sap/GSQ/DVEBMGS02/exe/jvmx.jar:./bin/boot/boot.jar:./bin/boot/jaas.jar:./bin/system/bytecode.jar:.
    -> arg[ 17]: -Djava.library.path=/usr/java14_64/jre/bin:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/tmp/sapinst_exe.856178.1252452114:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm:/usr/sap/GSQ/DVEBMGS02/exe::/usr/lib:/usr/sap/GSQ/DVEBMGS02/j2ee/os_libs:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/sap/GSQ/DVEBMGS02/exe:/usr/java14_64/bin:/usr/java14_64/jre/bin/classic:/usr/java14_64/jre/bin:/usr/sap/GSQ/SYS/exe/run:/oracle/client/10x_64/instantclient:/usr/java14_64/jre/bin/j9vm
    -> arg[ 18]: -Dmemory.manager=2048M
    -> arg[ 19]: -Xmx2048M
    -> arg[ 20]: -Xms2048M
    -> arg[ 21]: -DLoadBalanceRestricted=no
    -> arg[ 22]: -Djstartup.mode=JCONTROL
    -> arg[ 23]: -Djstartup.ownProcessId=1314818
    -> arg[ 24]: -Djstartup.ownHardwareId=O0427428665
    -> arg[ 25]: -Djstartup.whoami=server
    -> arg[ 26]: -Djstartup.debuggable=no
    -> arg[ 27]: -DSAPINFO=GSQ_02_server
    -> arg[ 28]: -DSAPSTART=1
    -> arg[ 29]: -DCONNECT_PORT=64998
    -> arg[ 30]: -DSAPSYSTEM=02
    -> arg[ 31]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 32]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 33]: -DSAPPROFILE=/usr/sap/GSQ/SYS/profile/GSQ_DVEBMGS02_GILSAPEQ
    -> arg[ 34]: -DFRFC_FALLBACK=ON
    -> arg[ 35]: -DFRFC_FALLBACK_HOST=localhost
    -> arg[ 36]: -DSAPSTARTUP=1
    -> arg[ 37]: -DSAPSYSTEM=02
    -> arg[ 38]: -DSAPSYSTEMNAME=GSQ
    -> arg[ 39]: -DSAPMYNAME=GILSAPEQ_GSQ_02
    -> arg[ 40]: -DSAPDBHOST=GILSAPEQ
    -> arg[ 41]: -Dj2ee.dbhost=GILSAPEQ
    Pls advise.
    Thx.
    Abdul
    [Thr 772] Sun Sep 13 05:02:28 2009
    [Thr 772] JHVM_LoadJavaVM: Java VM created OK.
    JHVM_BuildArgumentList: main method arguments of node [server0]
    [Thr 3600] Sun Sep 13 05:02:36 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.krn.perf.PerfTimes
    [Thr 3600] Sun Sep 13 05:02:37 2009
    [Thr 3600] JHVM_RegisterNatives: registering methods in com.sap.bc.proj.jstartup.JStartupFramework
    [Thr 3600] JLaunchISetClusterId: set cluster id 26770150
    [Thr 3600] JLaunchISetState: change state from [Initial (0)] to [Waiting for start (1)]
    [Thr 3600] JLaunchISetState: change state from [Waiting for start (1)] to [Starting (2)]
    [Thr 35212] Sun Sep 13 05:03:27 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.mw.rfc.driver.CpicDriver
    [Thr 35212] Sun Sep 13 05:03:28 2009
    [Thr 35212] JHVM_RegisterNatives: registering methods in com.sap.i18n.cp.ConverterJNI
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    [Thr 35212] **********************************************************************
    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 35212] SigISetIgnoreAction : SIG_IGN for signal 20
    [Thr 35212] JLaunchCloseProgram: good bye (exitcode = -11113)

    Hello,
    The error message:
    [Thr 35212] JLaunchIExitJava: exit hook is called (rc = -11113)
    Indicates that one of the core services did not start. The Service Managers controls the life cycle of all services. The services that provide core functionality must always be running. If one of the core services fails to start, the Service Manager exits with an exit code -11113.
    To find the name of the core service that failed to start please see the end of the std_server0.out file.
    Furthermore the reason why the service failed to start will be evident in the defaultTrace.X.trc file in the server0/log directory.
    Regards,
    Ventsi Tsachev
    Technology Development Support (J2EE Engine)
    SAP Labs, Palo Alto, Ca (USA)

Maybe you are looking for