JAVA_HOME Environment Variable "Not Available"

I have installed j2sdk 1.4.2_17 for Windows Server 2008 64 bit for an installation of ERP 6.0.  I have installed this in the following directory:
C:\j2sdk14217x64
- I have the JAVA_HOME variable (User variable for Administrator and System variable) set to: C:\j2sdk14217x64
- I have the PATH system variable (System variable) set to: C:\j2sdk14217x64\bin
When running the prerequisite checker I get the following error:
"It is not recommended to use JDK version 1.4.2_10. Current version: JAVA_HOME not available."
When I run %JAVA_HOME% from the command line the system finds it.  I'm not sure what the issue is here.

Hello,
Best to unistall JDK and reinstall latest one
There is a download page solely for SAP customers:
http://www.sun.com/software/javaforbusiness/sap_download.jsp
See notes
709140 Recommended JDK and VM Settings for the WebAS630/640/7.0
Note 716604 for the Sun JDK (Windows, Linux, Solaris)
regards,
John Feely

Similar Messages

  • Setting JAVA_HOME environment variable?

    Sorry for such a trivial question, but in Windows 2000 Server with Microsoft Visual J++ 6 and the JRK 1.1.8, can somebody tell me what the environment variables should be so that I can use this jdk? If not can you tell me what your environment variable JAVA_HOME points to?
    And one last question if it's not too much to ask. Can you tell me the NNTP server address for SUN so that I can go to the newsgroups in my News reader rather than over the web?
    Thanks.
    George Hester

    Thanks. I have a problem though. I installed the jdk 1.1.8 because I heard that was the last one supported using Visual J++. Hence I have a C:\jdk1.1.8. This folder has no JRE subfolder so I am stuck at what you said the Classpath should contain as the path\folder you say it should be does not exist.
    I have a folder C:\Program Files\JavaSoft\JRE\1.3.1 which has the lib folder containing rt.jar.
    So as you can see I'm sort of in a quandry.
    If I make JAVA_HOME as you say then it does not contain the JRE. If I make JAVA_HOME C:\Program Files\JavaSoft so that your suggestion for Classpath is correct that folder does not contain the jrk and it seems that I will not be using it.
    Any suggestions how to set this up so that it's right?
    George Hester

  • Process - xfaForm variable not available

    Hi all,
    I have a bit of a newbie problem. We have Livecycle (8.0.1) deployed and I'm trying to get up to speed on things so am working through the "Creating Your First LiveCycle ES Application" found in the Workbench help. I'm running into a problem defining variables for the process in that I don't seem to have the xfaForm variable type available.
    Apparently I need to get the adobe-taskmanager-dsc component installed?  However I can't seem to locate it - I understand the jar should be in the /deploy/ folder but isn't. Another thread on this forum suggests that it may be due to not having Process Management installed: http://forums.adobe.com/message/1366637  I do have a "LiveCycle Process Management ES" item in the "Services" section of the admin console yet the about page only lists
    "LiveCycle Rights Management ES" under installed components.
    Any ideas?
    Thanks,
    Andrew

    Andrew,
    Indeed, you do not have Process Management installed. The reason that you see this option in the Admin console is because the process engine is actually part of the foundation of LC ES used to execute service orchestrations as opposed to human-based workflows.
    You need to install LC Process Management to get the bits you need. If you are licensed for the Process Management solution component, it would have been installed to your server. However, you need to make sure that Process Management is selected when you run Configuration Manager to ensure that the bits are deployed into the server runtime environment.

  • SQLPATH environment variable not read by Sql Developer

    Does anyone know why Sql Developer doesn't seem to read the SQLPATH environment variable? I've googled this situation quite a bit with no luck. Am frankly very confused...How can Sql Developer not have the ability to read from the SQLPATH environment variable?
    Considering all the scripts out there that have been written for Sql*Plus, with the assumption that the SQLPATH variable has been set to allow for multiple directories?
    I feel like I'm just missing something in Tools->Preferences in Sql Developer. I just can't see what it is. As a side note, my overall intention is to enable my team members to run the db build scripts from Sql Developer, rather than Sql*Plus...
    Thanks in advance.

    Hi 917092 ,
    Gary Graham wrote:
    Hi,
    The closest equivalent is Tools|Preferences|Database|Worksheet|Select default path to look for scripts, but supports only a single directory.
    This parameter takes multiple directories. For example in Windows the separation character is ";" . The chooser only allows one directory to be chosen at a time - but multiple paths can be typed in.
    SQLPATH reads the environmental variable (it may not read the windows registry setting).
    set SQLPATH=C:\Documents and Settings\THE_USER\first;C:\Documents and Settings\THE_USER\second
    @first
    (reads first.sql from C:\Documents and Settings\THE_USER\first)
    @second
    (reads second.sql from C:\Documents and Settings\THE_USER\second)
    Is that sufficient?
    If there is a bug to be logged please provide more details:
    Including:
    -OS
    -SQLPATH (environmental variable or set via preferences)
    -worksheet command
    -.sql file / reproducible test case
    -output
    -expected output
    Turloch
    SQLDeveloper Team

  • Changing environment variables not reflected in axis2.

    Hi,
    I am using axis2(1.2).And my problem is that I am trying to call two or more webservice from the same host .Let me explain.I have a web page .Its take some info to serach and also the parameter to which service to call.Suppose there are two service running (A and B).For A, need the following environment to set before calling :
    System.setProperty("javax.net.ssl.keyStore",keyStore);
    System.setProperty("javax.net.ssl.keyStorePassword", keyPwd);
    System.setProperty("javax.net.ssl.keyStoreType",keyType);
    System.setProperty("javax.net.ssl.trustStoreType",trustType);
    System.setProperty("javax.net.ssl.trustStore",trustStore);
    System.setProperty("javax.net.ssl.trustStorePassword",trustPwd);And for B do not required any environment variable.
    When I try to connect the B(clear all the environment) after accessing the A its throw the following exception :
    org.apache.axis2.AxisFault: sun.security.validator.ValidatorException:
    PKIX path building failed:
    sun.security.provider.certpath.SunCertPathBuilderException: unable to find
    valid certification path to requested targetBut if I restart the webserver and try to call B its working but if I try to access A its failed.
    So its seem to me that once the environment is set its not possible to reset it.
    So is there any solution.
    Thanks & Regrads

    i haven't used axis2 specifically, but i would imagine that it provides a way to configure that connection information for a specific webservice connection (as opposed to globally for the jvm). a quick google for "axis 2 custom keystore" found this link: http://shivendra-tripathi.blogspot.com/2010/11/enabling-ssl-for-axis2-service-and.html which shows how to configured an axis2 client with a custom keystore ("Approach 2", at the very end of the article). actually, looking again at that article, it may be configuring a system-wide setting (the Protocol.registerProtocol() call looks to be static). this looks better: http://wso2.org/library/1646 .
    Edited by: jtahlborn on Jul 11, 2011 2:06 PM

  • Environment variables not passed through to player in flexunit 4.1.0-beta3

    fyi, to get flexunit-4.1.0-beta3 FlexUnit4AntTasks invocation of flashplayer to not be rejected by the vncserver, i needed to modify the FlexUnitLauncher to pass through the environment variables to the command environment.
    the reason this is required, i think, is the use of Runtime.exec() directly in CustomPlayerCommand -- in flexunit-4.0.0, the same function was accomplished using the ant executor, which does passthrough by default.
    anyway, curious if anyone else has seen this issue, or if i'm doing something dumb.
    --- flexunit/flexunit-4.1.0-beta3/flexunit-flexunit-da29198/FlexUnit4AntTasks/src/org/flexuni t/ant/launcher/FlexUnitLauncher.java    (revision 7250)
    +++ flexunit/flexunit-4.1.0-beta3/flexunit-flexunit-da29198/FlexUnit4AntTasks/src/org/flexuni t/ant/launcher/FlexUnitLauncher.java    (revision 7251)
    @@ -79,7 +82,13 @@
           command.setSwf(swf);
           if (runHeadless())
    -         command.setEnvironment(new String[]{ "DISPLAY=:" + xvncStart.getCurrentDisplay() });
    +         Map<String, String> env = System.getenv();
    +         List<String> envArgs = new ArrayList<String>();
    +         for (Map.Entry<String, String> entry : env.entrySet()) {
    +            envArgs.add(entry.getKey() + "=" + entry.getValue());
    +         }
    +         envArgs.add("DISPLAY=:"+xvncStart.getCurrentDisplay());
    +         command.setEnvironment(envArgs.toArray(new String[0]));
              LoggingUtil.log("Setting DISPLAY=:" + xvncStart.getCurrentDisplay());

    ok. i went looking for a JIRA link somewhere around here and couldn't find it.  do you have a URL handy?
    there are a couple of other things too:
    you probably want trustDirectory.mkdirs() rather than mkdir() in TrustFile.java
    you probably want CustomPlayerCommand.setLocalTrusted() -- my player command isn't in the machine's path, but i still want to be able to touch the trust file.  So I copied the trustFile.add() stuff from FlashPlayerCommand.launch() into CustomPlayerCommand.launch().  probably a better solution would be refactoring CustomPlayerCommand to be more like FlashPlayerCommand.
    anyway, if you want patches, tell me where to put them and i'll post some.

  • Win7 11g  -- Environment variables not set?

    I have an 11g installation on a school harddrive that doesn't seem to have any of the environment variables set properly. Even ORACLE_HOME is not set. How can I fix that situation and how many environment variables need to be defined?
    Also some of the Oracle scripts seem to use the forward-slash rather than the back-slash for paths. Will Win7 care?
    Thanks

    >
    I have an 11g installation on a school harddrive that doesn't seem to have any of the environment variables set properly. Even ORACLE_HOME is not set. How can I fix that situation and how many environment variables need to be defined?
    >
    You can set the following 3 basic environment variable in your system variables list. So that you can connect to database with out manually specifying the variables every time.
    ORACLE_HOME: the ORACLE_HOME variable should be set.
    ORACLE_SID: it is the name of the instance.
    PATH=$ORACLE_HOME/bin : this is the place where your oracle binaries exists.
    >
    Also some of the Oracle scripts seem to use the forward-slash rather than the back-slash for paths. Will Win7 care?
    >
    Windows server uses back-slash
    Unix flavours use forward-slash

  • OCM exam environment software not available for download

    Hi all,
    As per the oracle 11g master certification mentioned in the certification portal, the exam will be conducted in the following environment
    3. 10.2.0.5 grid control with 11.1.0.6 as repository database.
    However 10.2.0.5/11.1.0.x grid control verison is not available for download. Kindly guide me how i can prepare my test environment for exam preparation.

    I have finally received some additional information on this topic. Here is a message from our exam developers:
    To prepare for the OCM exam, candidates should focus on mastering the tasks for each Skillset. Software can be downloaded from the Oracle Technology Network (OTN) to build a practice environment. Use the latest software available from OTN; it is not necessary to build a practice environment on the exact OS and database software versions used in the OCM exam. Later releases of Oracle server support nearly all features and functions of earlier ones; for any software version, relevant parameter values, naming differences and obsolete features may be found in the product documentation, which is available from OTN.
    Regards,
    Brandye Barrington
    Certification Forum Moderator

  • Ora-7217 sltln environ variable not set..

    Here's the story..
    Oracle 8.1.7 on RHat 6.2..
    Installation unbelievably perfect!!!
    no core dump in any programs like sqlpus, svrmgrl..but..
    trying to start with svrmgrl..connect internal or thru sqlplus as sysdba
    ora-7217--sltln environment var not set
    keeps coming..made sure all the vars are
    set in .profile..any clue what's happening?
    vinny.

    A way to set environment variables to binaries is to specify
    it on the command line. For example:
    LD_LIBRARY_PATH=/usr/mylibs httpd
    If you are using apache, it could be changed in the /etc/init.d/apache
    script.
    If you use a script to startup the server, you can use the same approach.
    I am not sure about the obj.conf file.
    Sun - DTS

  • Changing Environment Variables (not jre path)

    I am writing a setup program which will modify an Environment Variables. I need to add the string ";%PROGRAM_HOME%bin"to the Path variable. The problem lies in appending the new string onto the old one. For instance, say that
    Path=%SystemRoot%\system32;andSystemRoot=C:\WINDOWSIf I get the current Path variable (so I can append to it) I get Path=C:\WINDOWS\system32After appending my new variable I getPath=C:\WINDOWS\system32;%PROGRAM_HOME%\binWhile this will work, problems will arise in the future if changes are made to the SystemRoot variable, since the Path value no longer contains a link to the SystemRoot variable.
    Basically, is there a way to append to Environmental Variables?

    I am writing a setup program which will modify an
    Environment Variables. I need to add the string
    ";%PROGRAM_HOME%bin"to the Path
    variable. The problem lies in appending the new
    string onto the old one. For instance, say that
    Path=%SystemRoot%\system32;andSystemRoot=C:\WINDOWSIf I get the current Path variable (so I can append
    to it) I get Path=C:\WINDOWS\system32After appending my new variable I
    getPath=C:\WINDOWS\system32;%PROGRAM_HOME%\bin[/
    code]
    While this will *work,* problems will arise in the
    future if changes are made to the SystemRoot
    variable, since the Path value no longer contains a
    link to the SystemRoot variable. 
    Basically, is there a way to append to Environmental
    Variables?set PATH=%PROGRAM_HOME%\bin;%PATH%
    (T)

  • SMF environment variables not working

    I have a Glassfish application in SMF with the following manifest file. I am trying to set the JAVA_HOME to /usr/jdk/latest.
    svccfg -s svc:/application/SUNWappserver/domain1 setenv -m stop JAVA_HOME /usr/jdk/latest
    svccfg -s svc:/application/SUNWappserver/domain1 setenv -m start JAVA_HOME /usr/jdk/latest
    svcadm refresh svc:/application/SUNWappserver/domain1:default
    # svcs -av |grep appser
    online - 12:22:51 249170 svc:/application/SUNWappserver/domain1:default
    # svccfg -s svc:/application/SUNWappserver/domain1 listprop | grep JAVA
    start/environment astring JAVA_HOME=/usr/jdk/latest
    stop/environment astring JAVA_HOME=/usr/jdk/latest
    I have a default instance and the stop/start methods are not defined inside it. After the refresh and restart, I still don't see Java using the /usr/jdk/latest JDK. Does anyone know why?
    Do those variables need to be defined inside the "default1" instance? If so, how do I do that with svccfg?
    <service_bundle type="manifest"
    name="SUNWasu appserver services">
    <service name="application/SUNWappserver/domain1"
    version="1"
    type="service">
    <single_instance/>
    <exec_method type="method"
    name="start"
    exec="/usr/local/glassfish/bin/asadmin start-domain --user admin --passwordfile /usr/local/glassfish/passfile --domaindir /usr/local/glassfish/domains domain1"
    timeout_seconds="0">
    <method_context working_directory=":default">
    <method_credential user="root"
    group=":default"/>
    <!-- privileges="basic,net_privaddr" -->
    </method_context>
    <stability value="Evolving"/>
    </exec_method>
    <exec_method type="method"
    name="stop"
    exec="/usr/local/glassfish/bin/asadmin stop-domain --domaindir /usr/local/glassfish/domains domain1"
    timeout_seconds="0">
    <method_context working_directory=":default">
    <method_credential user="root"
    group=":default"/>
    </method_context>
    <stability value="Evolving"/>
    </exec_method>
    <instance name="default" enabled="false">
    <dependency
    name='network'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/milestone/network:default' />
    </dependency>
    <!-- for ZFS, we need this to state this dependency -->
    <dependency
    name='filesystem-local'
    grouping='require_all'
    restart_on='none'
    type='service'>
    <service_fmri value='svc:/system/filesystem/local:default' />
    </dependency>
    </instance>
    <stability value="Evolving"/>
    <template>
    <common_name>
    <loctext xml:lang="C"> Appserver Domain Administration Server </loctext>
    </common_name>
    <documentation>
    <manpage title="Appserver" section="1" manpath="/opt/SUNWappserver/appserver/man"/>
    </documentation>
    </template>
    </service>
    </service_bundle>

    You're right....... it worked.
    The Content Server is case sensitive and the documentation is wrong......
    Thanks!

  • Standard Query Variables not available in Q

    Hi All,
    We are not planning to transport the queries from DEV but create them in directly in Q and P. But I am unable to see any of the standard variables in Q or P. Do we need to transport the variables from DEV(even the standard ones)? If so, can we transport all the available standard variables into Q as a set or do I need to collect all of them in the transport connection and follow thw same process which we use to transport the normal objects?
    Best Rgds,
    Nene.

    Nene,
    If you have authorization you can do that in P or Q. Well, asking for a request can be suppressed by basis team. But the best practice to activate them in dev and transport them to QA and prod. And still if the prod and QA systems are opened and client has no problem you can do that in respective systems. Basis people can make it not to ask for transport request and can make it save by default as a local object.
    Activating and transporting them to target systems will no lead to inconsistencies in future transports related to these objects. Now its up to you to decide the mode....

  • Entry Variable not available in Free char in Query?

    Hi
    I have to remove one of the entry variable in a query, its costing date and is mandatory variable; but it is not visible in Free characteristic to remove it.
    Its one of the factory reports.
    Any idea how to remove it?
    Thanks in advance
    Ishi

    Hi Anup
    The InfoObject Costing date is used in column in one of the KF. But the variable is not used anywhere.
    I tried to create the same report in Query designer, and noticed that after creating the query, system automatically picks the variable as mandatory entry variable
    Regards
    Priti

  • Substituion variable not available as data source in "Open SQL"

    Setup as follows:
    right-click on server name->Edit->Variables:
    all apps, all dbs, SQL_SOURCE, 3G.DEV
    In app_A, if I open a rules file, then File-Open SQL, I can select SQL_SOURCE as a substitution variable.
    In app_B, if I open a rules file, then File-Open SQL, substitution variables is greyed out and can't be selected.
    Does anyone have any clues or hints on whats wrong? I have set both rules files the same as far as I can see.

    That was my first thought, rebooted machine to no avail.
    If in the server variables section, I explicitly define a variable for that app/database it's OK. So:
    all apps,all dbs,SQL_SOURCE,3G.DEV
    Only works for db_1 in the app. If I go:
    app_1,db_1,SQL_SOURCE,3G.DEV
    app_1,db_2,SQL_SOURCE,3G.DEV
    That works.
    My only solution therefore it would seem is to define the variable per db per app where needed?

  • Query Designer: "Set Offset For Variable" not available

    Hi,
    I want to restrict a character by using a variable with offset, but the needed function is disabled in context menu for different variables (customer exit, single value, multiple values, etc.). I have found a hint here, that this function only works with interval variables. Is this correct?

    Hi,
    1) For Customer Exit Variable: Offset Functionality will not work,
    2) For Manual input  Interval Varable: you can have the Offset, but the offset will work on upper limit only
    Ex: if u execute the quey by giving the interval like 2 - 4; then in the report output u can see only 2, 3 months data means the offset is working on 4 i.e upperlimit,
    3) For Multiple Single Values:  No offset Functionalty
    Thanks,
    Regards
    ReddYA

Maybe you are looking for

  • Mirroring with apple TV

    I'm having trouble mirroring my iWork, (keynote presentations)  with appleTV.  When I click on the mirror button and then choose to mirror the display.  The slider moves and then 2-5 seconds later it resets to Mirror Off and the display never does mi

  • Accessing btsport on a Mac!

    It doesn't matter what I do, I'm working my way through the error messages and getting fed up. Is it only suitable for ipads and iplayers?  I"ve reset, cleared every part of history/ cookies/ cache etc I"ve reset so it picks up local time and destina

  • Scheduling,Email Setup in cluster environment and multiple job servers

    Hello All,     I have to schedule and email instances of crystal reports to users in PDF and excel format. A Clustered environment of Business Objects 3.1 SP3 is been setup on 2 servers. There is 2 instances of crystal reports Job server been created

  • Connect FireWire 800 device to FireWire 400 port?

    Hello all, does anyone know whether it is possible to connect a firewire 800 device (e.g. external Hard Disk) to a firewire 400 port on a e.g. MacBook? I know only that it works for sure via special fw cable the other way round – FireWire 400 device

  • Posting of depreciation in the previous year 2008

    Hi All, My client wants to capitalize some expencess in the previous year as assets, and they would like to caliculate depreciation from 01.01.2008 to 31.12.2008, finally they would like to carryforward those amounts to fiscal year 2009.  My client i