Java is not active in the application server

Hi Experts
We recently installed CRM 5.0.  Everything seems to have installed without any issues. 
However, we are having a few issues the Java Virtual Machine (VMC). 
When trying to access the VMC through ABAP side of CRM (SM53), it gives and error message that "Java is not active in the application server". 
Eventhough everything seems to have been installed.
Any ideas on how to activate java. 
Any help would be really appreciated.
Thanks
Imran Khan

Hi Daniele:
There are indeed only 3 parameter additions
vmcj/enable = on
vmcj/option/ps = 512M
vmcj/option/maxJavaHeap = 200M
The 4th one is just explanation for calculating sizes.
My VMC is active with only the above three settings.
Also make sure that the SP level for both the JAVA components and ABAP components is the same.  i.e. they are both running on the latest version.  The latest update was released in Late April.
If the SPs are from differnt releases, the VMC will not work.
Also, go into the server and have a look at the parameter file to make sure that settings are actually there. i have found out that settings  in RZ10 and the real parameter settings can be different.  Just make sure that the settings you want the system to take are indeed in the real parameter file.
I am not sure what else you can do...but rest assured that the thing works with the above mentioned settings.
Imran

Similar Messages

  • Process Chain to do nothing if file does not exist in the application serve

    Hi All,
    We have a process chain that flows to different data targets daily if files delivered in the application server.
    Process chain does works fine.  But my question is do we have anyway to stop the process chain or do not run process chain if it does not find the file available any days during this time range instead of failing.*
    Is there any settings to enable the check if file available then run or else do not run at all.  Please help!!!
    Thanks,

    Follow the function modules listed in :
    http://wiki.sdn.sap.com/wiki/display/ABAP/Workingwithfiles
    with these function modules - you can get a list of files available in the application server directory.
    Pseudo code :
    1. Generate the automated fiel name you want
    2. Get the list of files in the directory
    3. Search the list of files to see if your file exists
    4. If the file exists then load the file , else load an empty file .
    The code is unfortunately in a different BW system that I do not have access to at this moment... but then the procedre is the same as detailed above.

  • Cannot find  the age in years csv file  in  the application server

    Hi,
      I want to upload the age in years hierarchy from the CSV  file AGE_E.CSV that should be available in the application server.
      When i try to preview file in the info package, a message is thrown which says that the file does not exist, which means that the perticular file is not present in the application server.
      Can any one of you please tell me where else can i find this file.
    Regards,
    Chetana.

    dear Chetana,
    transaction AL11 can be used to check the file location.
    check DIR_TEMP or DIR_TRANS. or ask basis where the file is put.
    hope this helps.

  • Resource com.sap.aii.af.svc with type service, not active on the server

    Hi Forum,
    in my X1 server, in rwb, it gave error:
    HTTP request failed. Error code: "503". Error message: "Service Unavailable [http://xyz:50000/AdapterFramework/rtc,
    on further analysis we find that:
    <b>  Application cannot be started.
      Details:   com.sap.engine.services.deploy.container.ExceptionInfo: Application sap.com/com.sap.xi.mdt cannot be started. Reason: it has hard reference to resource com.sap.aii.af.svc with type service, which is not active on the server.</b>
    and the service/component com.sap.aii.af.svc is not present as the error says,
    In visual admin, in the services list i couldnt find this particular resource,
    pls instruct me how to deploy/start this service com.sap.aii.af.svc ,

    Hi,
    Please check out the user authorization and role and also check that you are maintaining the passwords in all places where required.
    Regards
    Aashish Sinha
    PS : reward points if helpful

  • Problems Shared Services:Registered application is not active at the moment

    Hi!
    I have a problem with Hyperion Shared Services (HSS) and Hyperion Performance Socrecard (HPS), my projecto from HPS appears like if not it was registered in HSS.
    The error is: Registered application is not active at the moment. Please consult your system administrator.
    The information was migrated from other server, now already run configuration utility and configurate my proyect, but not appears in HSS.
    Optional: This is necessary for assign sercurity roles by Domain?
    Thank you very much.

    Did you get this resolved .
    Vinod

  • The report I published on the SQL server report server is not showing in the application we use to retrieve reports.

    The report I published on the SQL server report server is not showing in the application we use to retrieve reports. My cell phone number is {removed}
    Thanks.

    Hello Roger Tenn,
    Thank you for posting in the TechNet Forum.
    As this issue is related to SQL server report server, to receive better report, it is recommended to ask in the SQL server forum.
    https://social.technet.microsoft.com/Forums/en-US/home?category=sqlserver
    The professionals here will be glad to help you.
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • Not able to open XML file in the application server..........

    Hi,
    I have downloaded a XML file to the application server.....
    File is created but i am not able to open the file there....
    Plz advice ....how to open it.....
    Regards.

    Use Notepad. Drag and drop in notepad.
    Aman

  • How to check whether the Application Server directory exits or not

    Hi,
    I have a selection screen in which I give the Application server file name(UNIX file) as input. Here, I would like to check whether the Server directory exists or not.
    Let us say, the path I gave in the selection screen is /usr/sap/tmp/testfile.txt . Here, the file name is testfile.txt and the server directory is /usr/sap/tmp . I would like to check whether this directory /usr/sap/tmp exists in the server or not. I am not bothered about the file name as I am going to write data into the file. I am mainly concerned about whether the directory exists in the server or not. and one more thing... this is the Application Server path not the Local path.
    Can anyone help me on the same how to check whether the server directory exists or not.
    Thanks in advance.
    Best Regards,
    Pradeep.

    Also you can use the FM EPS_GET_DIRECTORY_LISTING for this purpose.
      Store the directory name
        l_dpath = p_file+0(l_no).
      Validate the directory of the application server
        CALL FUNCTION 'EPS_GET_DIRECTORY_LISTING'
          EXPORTING
            dir_name               = l_dpath
          TABLES
            dir_list               = l_i_dlist
          EXCEPTIONS
            invalid_eps_subdir     = 1
            sapgparam_failed       = 2
            build_directory_failed = 3
            no_authorization       = 4
            read_directory_failed  = 5
            too_many_read_errors   = 6
            empty_directory_list   = 7
            OTHERS                 = 8.
      If any problem occurs with the directory then display proper
      error message
        IF sy-subrc <> 0.
        Display error message
          MESSAGE e018 WITH 'Problem with directory entered'(008).
        ENDIF. " sy-subrc <> 0
    Regards,
    Joy.

  • SSO logon not possible; logon tickets not activated on the server

    When I am on RWB
    1)  click "component monitoring" ->"display all"
    2) click "CCMS"
    I get a popup says:
    "SSO logon not possible; logon tickets not activated on the server"
    I find some threads about this on SDN but they are about
    EP. My case is PI7.0SP08.
    Please advise how to overcome this issue?
    Thanks w/ points.
    Message was edited by:
            jennifer lee

    hI,
    do you have the follwoing in our SXMB_ADM if not add them.
    SXMB_ADM->IntegrationEngine configuratin-> edit the speicifc configuratin then add the follwoing
    Category:RUNTIME Parameters: logging Value:1
    If its done. check this alos...whether your browser settings will accept the cookies or not. for SSO logon ticket method you need to have cookies accepted by our browser so check it. in internet page slect TOOLS ->internet options then ckeck for cookies settings.
    How to Enable Single-Sign-On for XI 3.0 at:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/69d95112-0d01-0010-8297-fa31feea26e0
    /people/alexander.bundschuh/blog/2007/01/16/principal-propagation-in-sap-xi
    http://help.sap.com/saphelp_nw2004s/helpdata/en/5c/b7d53ae8ab9248e10000000a114084/content.htm
    regards
    manoj kumar

  • Registered application is not active at the moment.

    Two symtoms
    This happens with the Native Admin or any MSAD Shared Services admin.
    When in Shared Services - Right Click on Hyperion System 9 BI+ - the option to Assign Preference is not available
    Also when selecting the same project the following message -
    Registered application is not active at the moment. Please consult your system administrator.
    This is not of a case of it breaking. This was the symptom since the original installation.
    System 9.3.1 -
    Note - Regestering BI with Shared Services does an interesting thing - The menu appears to Assign Preference - but a page cannot be displayed also appears.
    When recycling services the menu option disappears again.
    Any thoughts?

    Hi,
    I have exactly the same error with a different external directory wich is Open LDAP.
    Did you get any answers or tips around this error ?
    Thanks,
    Gaël.

  • Registered application is not active at the moment. Please consult your sys

    Registered application is not active at the moment. Please consult your system administrator. This is what I often (and now) see when opening the default created application "Hyperion System 9 BI+:#####.intranet.######.nl:6800::1 BI+ 9.3.1 " under default created project "Hyperion System 9 BI+" in Shared Services. Even after restaring all the relevant services in the right sequence with the right delay I still got the message. Anyone an idea?

    Hi,
    I'm also interested in the answer, if you got it.
    Thanks,

  • HT4972 i can't activate my iphone . it says your iphone could not activated because the activation server is temporarily unavailable . can i activate leter???? or ....

    i can't activate my iphone . it says your iphone could not activated because the activation server is temporarily unavailable . can i activate leter???? or ....

    IOS: Resolving activation messages
    http://support.apple.com/kb/TS4242

  • HT201407 how to fix iphone could not activated because the activation server is temporarily unavailable

    Dear All,
    After I upgrade ios4.1 to ios6.1.3 but my iphone 3gs shows the sentence below:
    how to fix iphone could not activated because the activation server is temporarily unavailable
    Please give me the ways to fix it
    Thanks in advance

    Thi is usually a symptom that the phone has been hacked or jailbroken. Has it?

  • HT4623 my iPhone 3 gs could not activated because the activation server is temporarily

    my iPhone 3 gs could not activated because the activation server is temporarily
    <Personal Information Edited by Host>

    IOS: Resolving activation messages
    http://support.apple.com/kb/TS4242

  • Applicaton Catalog - "Cannot connect to the application server" - Existing solutions have not worked

    Hi there,
    I have researched the problem below extensively online and found quite a varies array of solutions offered however they all seem to relate to the problem in that someone was setting up SCCM but couldn't get it to work. My situation is different in that the
    feature was working, no settings were changed however it has now stopped working.
    The issue is that if any user attempts to use the app catalog, they are shown the error screen which says "Cannot connect to the application server". It then says the problem might be temporary, try again later etc however it's not temporary.
    All the settings for the app catalog appear to be correct, as I would expect them to be as it was working (I am new to this company, the Desktop manager has told me it was working a few weeks ago).
    Does anyone know of a service in Windows, maybe something to do with the SQL side or certificates that could cause this issue? (although I checked certificates and again, looks fine). I'm almost at the point now of just restarting the server because
    if all else fails, turn it off and on again right?
    Cheers all.

    Hi, I just typed a long reply to this and then accidentally clicked a favourite on the Favourites bar and lost everything I typed :(
    -Checked the path in IIS to the \SMS_CCM\CMApplicationCatalog folder was OK and it was.
    -Checked that required .NET components including WCF are installed.
    -This one seemed a bit strange but ensured local service account has access to C:\Windows\Temp (this seemed very basic and unlikely but I tried it anyway due to desperation).
    -Checked that self-signed certificate was trusted by my PC attempting to access the App Catalog.
    -Checked SCCM services on the server are all running (where they should be, or set to manual as appropriate).
    I'm sure I've tried more than this, but these are the main things I can remember.
    Cheers.

Maybe you are looking for