SolMan 4 Java Installation/Patching Questions

Hi all,
We had our SolMan 4.0 system installed and configured several months ago.  We have a java instance, but do not appear to have any components installed.
I want to install the JSPM, NWA, and SMD tools on the system, but I have been unable to determine which other components are also required.
I have searched through various upgrade and installation manuals, as well as through these forums and many notes, but I am unable to find any sort of list that details which java components need to be installed to run the tools listed above.
I would guess that the following patches are required: J2EE ENGINE CORE TOOLS, LIFECYCLE MGMT TOOLS, SAP J2EE Engine, SAP J2EE Engine Core.  I do not know if this list is correct though.
I am looking forward to your responses.
Regards,
Rob

If anyone is running JSPM, NWA, or SMD on their SolMan 4.0 systems, please let me know what other java components are required to be installed.
Thanks

Similar Messages

  • Need to upgrade Java Kernal patch and support patch for Solman server 7.0

    Dear all ,
    Tech details  , Win32 bit and Oracle .
    I want to upgrade latest java  kernal patch for Solma 7.0 .
    I have checked the Service.sap.com (https://websmp105.sap-ag.de/support/downloads/Support Packages and patches - Entry by Application Group/Solution manager JAVA Stack)
    Solution Manager JAVA Stack :
    ADOBE DOCUMENT SERVICES 7.00
    BI UDI 7.00
    J2EE ENGINE BASE TABLES 7.00
    JAVA LOG VIEWER 7.00
    JAVA SP MANAGER 7.00
    LIFECYCLE MGMT TOOLS 7.00
    SAP CAF 7.00
    SAP CAF-UM 7.00
    SAP IGS 7.00
    SAP J2EE ENGINE 7.00
    SAP J2EE ENGINE CORE 7.00
    SAP JAVA TECH SERVICES 7.00
    SAP KERNEL 7.00 32-BIT UNICODE
    SAP VIRUS SCAN INTERFACE 7.11
    SAP VIRUS SCAN INTERFACE 7.20 .. ete ...
    what are patches required to Upgarde java  patch and let me know the procedure also . it will be helpful for me .
    Regards
    Kindly suggest

    Dear all ,
    I have checked help.sap.com , its mentioned in Software delivery Unit .
    1,software component archive (SCA),
    2,Java archive (JAR) or SAP archive (SAR).
    Support package stacks:
    A set of different SCAs
    ○     A set of different SCAs that are modified using the NWDI
    ○     The SDM JAR u2013 SDMkit.jar
    ○     The kernel SARs:
    ■      Database Independent: SAPEXE.SAR and other operating system dependent SARs
    ■      Database Dependent: SAPEXEDB.SAR and other database dependent SARs
    ■      The SAP archiving tool u2013 SAPCAR
    ○     The IGS SAR u2013 IGSEXE.SAR
    ○     A configuration XML file, which includes a description of the components that are part of the stack and their respective support package and patch levels.
    I understand the Kernal SARs and I have downlaoed SAPEXE.SAR ,SAPEXEDB.SAR ,IGSEXE.SAR .
    let me know the list of SCA files  , i have to download from service.sap.com . (set of different SCAs that are modified using the NWDI and  The SDM JAR u2013 SDMkit.jar)
    Kindly advise .
    Regards

  • BI Java Installation: Clarification Needed!

    I'm wondering if someone could help clear this up for me:
    We have installed NW2004s SPS08 on Solaris with only the usage type EP (AS Java/EP). Awhile back I was tasked with connecting our BW ABAP system to our Portal ("Integration into the Portal" - transaction SPRO etc).
    After starting this task I noticed I was missing things that the instructions were telling me to configure; i.e. Items that were related to BI that weren't in the Portal such as certain roles, the BI Repository Manager etc.
    Reading around, it seemed like I need to install the BI usage type.
    I have now been tasked with another installation of the Portal (NW2004s SR1 this time), but am trying to head off the problems I'm experiencing trying to connect the Portal to our BW ABAP system. This will be a Java only installation. I've read that BI-Java requires EP and AS Java, and that if I install the BI-Java usage type, EP and AS-Java will be installed automatically.
    My question is, if I do the BI-Java installation and it automatically installs EP/AS-Java, will the Portal still act the same way as it does in my EP/AS-Java only installation I already have? We have many plans to use the Portal as an entry point for all of our backend systems, so if the Portal's capabilities are not what we see already (in our first installation of just EP/AS-Java) then we will have problems.
    Any clarification is greatly appreciated and I will award points accordingly.
    THANKS!
    Beau.

    I think that's what I needed to know.
    I was actually wondering about DI as well. Our developers are having problems deploying .EAR files to our original EP-only install. They can deploy .PAR files with no problems, but .EAR files always error out. Maybe having DI will solve this problem as well? I'm a little concerned about the hardware capacity of this box with having BI, EP and DI all installed on it. I had contacted SAP about installing DI a while back and basically they had told me to install it on a seperate server, by itself. We're running a Sun Enterprise 420R, 4G of memory and a 450 mhz processor for this new installation. Do you think this box is capable of handle EP, BI and DI (AS-JAVA)?
    Thanks for your help!

  • Referencing Java Installation Path

    We have an java application which apparently contains hard coded references to the java installation directory. I.E. (C:\program files\Java\jre1.4.2_04)
    The problem is that this means we have to have the same version of java across all our servers for the software to work. What we have traditionally done is load the latest version of java on every new server we deploy (then maintain incremental upgrades afterwards). The theory being that we wanted to be on the latest version which is least vulnerable to security issues. Of course the problem with that is that the latest version of java is always different.
    So my question is - is there no way to dynamically reference the latest java installation directory. I'm not a java programmer but I'm having a difficult time believing there isn't some environment or system variable that contains this path vs hard coding it?
    Also maybe this is better aimed at another group but, if java has been upgraded - why are the previous versions left behind? I just noticed in my program files directory I have 11 different versions of java installed. Whats the point and isn't that a security risk? I.E. Say there was x security issue with java 1.4.2 build 1, so build 2 was released. We upgraded to build 2 but build 1 is left behind.... can you see where this is going?
    Thanks
    Brad

    I just got clarification. Apparently our devs are calling the Java application from an ASP/ASP.net page. Excerpt below:
    Dim a_jvmargs(1)
    a_jvmargs(0)= "-Djava.class.path=C:\Program Files\Java\j2re1.4.2_04\lib\rt.jar;" &_
    "C:\jar1.jar;" &_
    "C:\jar2.jar;" &_
    "C:\jar3.jar;" &_
    "C:\jar4.jar"
    set objJVM = Server.CreateObject("comJava.comJavaJvm")
    objJVM.setVMArguments(a_jvmargs)
    objJVM.setJavaVMLibraryPath("C:\Program Files\Java\j2re1.4.2_04\bin\client\jvm.dll")
    objJVM.CreateJavaVM()
    Maybe this is more of an ASP/Microsoft question now. None the less do you have any recommendations about how we might avoid directly hard coding the path?
    Thanks Again,
    Brad

  • EP6,SP3 WAS640 Java Installation in a distributed environment....

    Hi Freinds,
    While installing WAS Java 640 instance in a distributed environment (with oracle 9.2 DB instance in separate host & WAS640 on another), the installation setup stops at the last step (i.e. during registration of SDM of SCS/CI installation). Kindly suggest, what cud be the problem?
    The details of errors are as mentioned below:
    ERROR 2004-10-09 15:04:05
    MUT-02041   SDM call of deploySdaList ends with returncode 4. See output of logfile C:\Program Files\sapinst_instdir\WEBAS_640_J2EE_ONLY\DS\CI\callSdmViaSapinst.log.
    The details of CallsdmViaSAPinst.log is as follows:
    Oct 9, 2004 2:13:26 PM   Info:
    Oct 9, 2004 2:13:26 PM   Info: ============================================
    Oct 9, 2004 2:13:26 PM   Info: =   Starting to execute command 'deploy'   =
    Oct 9, 2004 2:13:26 PM   Info: ============================================
    Oct 9, 2004 2:13:26 PM   Info: Starting SDM - Software Deployment Manager...
    Oct 9, 2004 2:13:32 PM   Info: tc/SL/SDM/SDM/sap.com/SAP AG/6.3003.00.0000.20031126161800.0000
    Oct 9, 2004 2:13:33 PM   Info: SDM operation mode successfully set to: Standalone
    Oct 9, 2004 2:13:35 PM   Info: Initializing Network Manager (50317)
    Oct 9, 2004 2:13:35 PM   Info: Checking if another SDM is running on port 50318
    Oct 9, 2004 2:13:35 PM   Info: -
    Starting deployment -
    Oct 9, 2004 2:13:35 PM   Info: Loading selected archives...
    Oct 9, 2004 2:13:36 PM   Info: Loading archive 'I:\CD\51030277_WAS640SP3_Installation\J2EE1\J2EE-ENG\JDD\SYNCLOG.SDA'
    Oct 9, 2004 2:13:36 PM   Info: Selected archives successfully loaded.
    Oct 9, 2004 2:13:36 PM   Info: Error handling strategy: OnErrorStop
    Oct 9, 2004 2:13:36 PM   Info: Update strategy: UpdateLowerVersions
    Oct 9, 2004 2:13:36 PM   Info: Starting to execute deployment action (deploy) for "synclog".
    Oct 9, 2004 2:13:44 PM   Info: Creating connections to database "EPQ".
    Oct 9, 2004 2:13:55 PM   Info: Creating vendor connection to database.
    Oct 9, 2004 2:13:57 PM   Error: Creation of vendor connection failed.
    Original error message is:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
    Stack trace of original Exception or Error is:
    java.sql.SQLException: Io exception: The Network Adapter could not establish the connection
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:134)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:179)
         at oracle.jdbc.dbaccess.DBError.throwSqlException(DBError.java:334)
         at oracle.jdbc.ttc7.TTC7Protocol.handleIOException(TTC7Protocol.java:3695)
         at oracle.jdbc.ttc7.TTC7Protocol.logon(TTC7Protocol.java:352)
         at oracle.jdbc.driver.OracleConnection.<init>(OracleConnection.java:362)
         at oracle.jdbc.driver.OracleDriver.getConnectionInstance(OracleDriver.java:536)
         at oracle.jdbc.driver.OracleDriver.connect(OracleDriver.java:328)
         at com.sap.sql.jdbc.NativeConnectionFactory.createNativeConnection(NativeConnectionFactory.java:149)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.createConnection(OpenSQLDataSourceImpl.java:472)
         at com.sap.sql.connect.OpenSQLDataSourceImpl.getConnection(OpenSQLDataSourceImpl.java:253)
         at com.sap.sdm.serverext.servertype.dbsc.extern.DBSCConnectionManager.createSDMVendorConnection(DBSCConnectionManager.java:214)
         at com.sap.sdm.serverext.servertype.dbsc.extern.DBSCConnectionManager.createSDMConnections(DBSCConnectionManager.java:77)
         at com.sap.sdm.serverext.servertype.dbsc.ConnectionManagerDecorator.createSDMConnections(ConnectionManagerDecorator.java:73)
         at com.sap.sdm.serverext.servertype.dbsc.DatabaseTargetSystem.connect(DatabaseTargetSystem.java:140)
         at com.sap.sdm.serverext.servertype.dbsc.DBSCDeploymentActionProcessor.executeAction(DBSCDeploymentActionProcessor.java:115)
         at com.sap.sdm.app.proc.deployment.impl.PhysicalDeploymentActionExecutor.execute(PhysicalDeploymentActionExecutor.java:58)
         at com.sap.sdm.app.proc.deployment.impl.DeploymentActionImpl.execute(DeploymentActionImpl.java:181)
         at com.sap.sdm.app.proc.deployment.controllers.internal.impl.DeploymentExecutorImpl.execute(DeploymentExecutorImpl.java:51)
         at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.executeAction(ExecuteDeploymentHandler.java:84)
         at com.sap.sdm.app.proc.deployment.states.eventhandler.ExecuteDeploymentHandler.handleEvent(ExecuteDeploymentHandler.java:61)
         at com.sap.sdm.app.proc.deployment.states.StateBeforeNextDeployment.processEvent(StateBeforeNextDeployment.java:78)
         at com.sap.sdm.app.proc.deployment.states.InstContext.processEventServerSide(InstContext.java:88)
         at com.sap.sdm.app.proc.deployment.states.InstContext.processEvent(InstContext.java:74)
         at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.doPhysicalDeployment(DeployerImpl.java:121)
         at com.sap.sdm.app.sequential.deployment.impl.DeployerImpl.deploy(DeployerImpl.java:90)
         at com.sap.sdm.control.command.cmds.Deploy.execute(Deploy.java:162)
         at com.sap.sdm.control.command.decorator.AssureStandaloneMode.execute(AssureStandaloneMode.java:54)
         at com.sap.sdm.control.command.decorator.AssureOneRunningSDMOnly.execute(AssureOneRunningSDMOnly.java:61)
         at com.sap.sdm.control.command.decorator.SDMInitializer.execute(SDMInitializer.java:52)
         at com.sap.sdm.control.command.decorator.GlobalParamEvaluator.execute(GlobalParamEvaluator.java:60)
         at com.sap.sdm.control.command.decorator.AbstractLibDirSetter.execute(AbstractLibDirSetter.java:46)
         at com.sap.sdm.control.command.decorator.ExitPostProcessor.execute(ExitPostProcessor.java:48)
         at com.sap.sdm.control.command.decorator.CommandNameLogger.execute(CommandNameLogger.java:49)
         at com.sap.sdm.control.command.decorator.AdditionalLogFileSetter.execute(AdditionalLogFileSetter.java:65)
         at com.sap.sdm.control.command.decorator.AbstractLogDirSetter.execute(AbstractLogDirSetter.java:52)
         at com.sap.sdm.control.command.Command.exec(Command.java:42)
         at SDM.main(SDM.java:21)
    Oct 9, 2004 2:13:57 PM   Error: Execution of deployment action for "synclog" aborted:
    Db connect failed.
    Oct 9, 2004 2:13:57 PM   Error: Deployment NOT successful for synclog
    Oct 9, 2004 2:13:57 PM   Error: -
    At least one of the Deployments failed -
    Oct 9, 2004 2:13:57 PM   Info: Summarizing the deployment results:
    Oct 9, 2004 2:13:57 PM   Error: Aborted: I:\CD\51030277_WAS640SP3_Installation\J2EE1\J2EE-ENG\JDD\SYNCLOG.SDA
    Oct 9, 2004 2:13:57 PM   Error: Processing error. Return code: 4

    Hi Rajenda,
    I'm really stucked in distributed Java installation.
    Can you help me? I'd like to ask you some questions.
    My email address is: [email protected]
    Regards,
    Tibor
    ps.: I'm using my friend account in SAP SDN (Nándor)

  • Why do we need write access to Java installation Directory

    We are Upgrading from Siebel Analytics 7.8 to OBIEE 10.1.3.4.
    As OBIEE needs Java 1.5 or higher as a pre-requisite we are planning to uninstall Java 1.4 and install latest version of Java 1.5.
    According to OBI Installation and Configuration Guide http://download.oracle.com/docs/cd/E10415_01/doc/bi.1013/b31765.pdf -> Page 39 "If you are installing using the Basic installation type, make the user or user group permissions
    writable for the user installing Oracle Business Intelligence, for all JDK 1.5.0 installation directories,
    subdirectories, and files". Can anybody let me know why we need write access to Java Installation Directory??
    Thanks,
    Chandra
    Edited by: user6086408 on Apr 5, 2010 3:07 PM

    I had this same question and asked Oracle. Here's what I was told:
    Per Dev:
    "For OBI Presentation Services and OBI Publisher, jdk fonts files are copied into the JDK location because we do not bundle our own JDK. To ensure the install can do this you need to ensure that the Oracle BI installer has permissions to copy files to the specified JDK location.
    This means that if the same user who installer/untarred JDK is also installing Oracle BI, the install should work. In this case the the permissions of the JDK is probably 755.
    It will not work if a root user installs JDK and a normal user installs Oracle BI because the normal user does not have access to write to the JDK location or will not work if the JDK location is read-only, i.e. 444. In this case running chmod -R 777 will work."
    Jerry

  • System Crash during ERP 2005 (ECC 6.0) SR2 ABAP+JAVA installation

    Hi all,
    I am fairly new to this fascinating world of SAP BASIS and recently got hit by an issue which I faced during an ERP 2005 SR2 (ECC 6.0) ABAP+JAVA installation.
    My Installation Particulars:
    1. OS: Windows Server 2003 R2 (32-bit)
    2. DB: Oracle 10.2.0.2
    3. RAM: 2 GB
    4. Installation type: LOCAL and CENTRAL SYSTEM INSTALLATION.
    I have tried the installation thrice and each time the IMPORT ABAP step (phase 18) comes, 3 parallel IMPORT JOBS runs and after few of them completes the system restarts or crashes abruptly. So as a matter of fact, the R3LOAD which were running had to stop without getting completed, so whenever I start from old installation, the INSTALLATION MASTER throws error and I had to start a new installation. then again, during this phase the system/server/computer crashes.
    The minimum RAM requirement for this ERP installation is 3 GB, so probably 2 GB is not being able to cope up the pressure of the R3LOAD jobs...well, i am not sure of that!
    During the parameter specification, at the DATABASE EXPORT screen I have specified 3 parallel jobs. Well, the question which I have are as follows:
    1. Will I reduce the number of PARALLEL JOBS to 1 or 2, without going with the default value of 3, in order to avoid these crashes?
    2. Can I still install the SAP with 2 GB RAM?
    Please do help...

    Thanks everyone for your valuable replies.
    Well, as far as the OS is concerned, this version (ERP 2005 SR2), is compatible on 32-bit OS also. I am confirmed because I have done this installation on different machines also, prior to this installation, where my OS was 32 bit, but RAM was 4 GB. That is why, I am presuming this to be a hardware issue.
    By CRASH, I mean during that step the computer shuts down abruptly by itself.
    Well, I am starting the installation again, by specifying only 1 parallel job. Let's see if it works or not! If it doesn't then I will have to increase the RAM surely.
    Anyways, if you have anymore informations to share regarding this issue please feel free. I will soon post the UPDATE on this thread.
    Thanks and Happy New Year to all of you.

  • I can't run java installer. This may involve firefox. My firewall is turned off so that I can install java, but something is still blocking the installation procedure, and java's support page doesn't seem to offer an answer.

    University tech support says their online course system prefers explorer to firefox, and something they and the java download site both say about allowing pop-ups and disabling the firewall make me thing that part of the problem is with firefox's compatibility. But honestly, I don't know. I just know that I'm following all the directions I can find and it doesn't seem to be working.

    #Download and SAVE the Java installer to your hard drive,
    #*SAVE the installer to your Desktop so that you can easily find it
    #exit Firefox (Firefox button > Exit '''''OR''''' File > Exit if using the Menu Bar),
    #click or double-click the Java installer that you downloaded to start it
    #Using Java with Firefox and Download link: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]
    #Test your Java after installation: https://www.java.com/en/download/testjava.jsp
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You need to update some plug-ins:
    *Plug-in check: https://www-trunk.stage.mozilla.com/en-US/plugincheck/
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]

  • Portal Addin broke Java installation

    Read Hat EL Workstation:
    I downloaded the portal-addin.zip and folled the install instruction. It did absolutly not work. Instead it broke my Java installation. When calling java from the command linie I get:
    libgcj-java-placeholder.sh
    This script is a placeholder for the /usr/bin/java and /usr/bin/javac
    master links required by jpackage.org conventions. libgcj's
    rmiregistry, rmic and jar tools are now slave symlinks to these
    masters, and are managed by the alternatives(8) system.
    This change was necessary because the rmiregistry, rmic and jar tools
    installed by previous versions of libgcj conflicted with symlinks
    installed by jpackage.org JVM packages.
    When I look at the java links I see
    java -> /etc/alternatives/java
    java -> /usr/share/java/libgcj-java-placeholder.sh
    but the script contains nothing but echos:
    cat /usr/share/java/libgcj-java-placeholder.sh
    #!/bin/sh
    echo "libgcj-java-placeholder.sh"
    echo
    echo "This script is a placeholder for the /usr/bin/java and /usr/bin/javac"
    echo "master links required by jpackage.org conventions. libgcj's"
    echo "rmiregistry, rmic and jar tools are now slave symlinks to these"
    echo "masters, and are managed by the alternatives(8) system."
    echo
    echo "This change was necessary because the rmiregistry, rmic and jar tools"
    echo "installed by previous versions of libgcj conflicted with symlinks"
    echo "installed by jpackage.org JVM packages.
    Questions:
    1) How are the links supposed to point in order for my java to work?
    2) How to get the portal addin to work?
    3) How can Oracle provide me with such crap which screws up my system and wastes my time?
    Flemming G. Jensen

    OTN Customer Team!
    Are you able to answer an Oracle customer (and partner ) on this topic?
    Or is this forum a dead-end??
    --Flemming                                                                                                                                                                                                                                                                                            

  • Lots of Java installations - HELP

    Hi,
    Firstly, appologies if this is the wrong forum.
    I have about 4-5 applications on my PC, each one has it's own \jre sub-directory and each one is a different version.
    I also have a seperate Java installation, in its own directory structure, which is always kept upto date.
    I run a software inspection program that checks for out of date programs, controls, etc. and it keeps highlighting the Java installations as insecure, bad, or just, out of date.
    My question is, can I just delete the "old" java sub-directories from the applications and expect them to work by picking up on the JAVA environmental variables, - or, does it depend on the application ?
    Thanks & Regards,

    For the most part, a current Java version will run older Java programs. Some programs are written so as to require a certain Java version, and won't run on newer versions - however, this is not common, and there is no way (other than program documentation to know if that is the case.)
    Java's JRE installations involve Registry entries that need to be removed by uninstalling Java. Never just delete Java directories unless you have already performed an uninstall and are cleaning up something that is left over.
    Uninstall in the reverse order of install. My suggestion (without knowing what exists) is to uninstall all Java versions, and then go to java.com and install the current version. The current version will probably run all of your existing programs - and it will use existing environment variables, etc (which should be verified, of course.)

  • ALERT - Support for Java Critical Patch Update

    ALERT - Support for Java Critical Patch Update
    On October 15th, Java released a critical patch update (CPU) which will require download and upgrade to the Java Runtime Environment (JRE) release – 1.7.0_45.   If upgrading the JRE to this release, the P6 module (also known as Web Access) of the P6 EPPM product line and the Contract Management product, which utilize LiveConnect applets in the browser, will start generating one or more prompts.   To remediate these prompts for the P6 EPPM Web Access module and the Contract Management product, Oracle Primavera will be releasing fixpacks.   Until fixpacks become available, you can use the following workaround to suppress these prompts:  Select the 'Allow' Prompt or 'Yes' prompt for successful loading of applets.  Note: This prompt will occur for each applet. 
    For more information, please refer to the following KM Documents in My Oracle Support.
    For P6 (Web Access), refer to KM Document ID 1591925.1
    For Contract Management, refer to KM Document ID 1592535.1

    I found the answer to my own question. For any newbies out there, if you create an account with Oracle, that is not enough to download patches. You have to have an Oracle Customer Support Identifier associated with your account. Once you have a CSI that you obtain through your employer who has paid for support or through some other means, you then can go into My Oracle Support and enter a request to be added to the given CSI. That request goes into a pending state until the administrator of the CSI grants you privileges to download patches. (NOTE: You might have to bug someone within your organization to get this to happen.) For me, once I was given the privilege, the link worked as it should.

  • Silent installs - quick question

    Hi All
    We like to confirm if silent installations both 32-bit and 64-bit java jdk installs support installation directory option.
    Eg
    On 64-bit JDK
    jdk.exe /s /v/qn INSTALLDIR=C:\software_installations\jdk1.6\ /L C:\software_installations\scripts\auto-install.log\
    We ask because we keep getting pop-ups on options to install but it doesnt have INSTALLDIR option.
    Does 32-bit JDK have different options ?
    What are the exact command string including option of install directory ?
    We like to silent install our 32-bit and 64-bit JDKs with our custom install directory, not using the default.
    Thanks

    No multiposting, please. One thread is enough.
    silent installs - quick question
    Moderator action: I'm locking this thread

  • General Exception on testing Java-installation

    Hi. When testing Java-installation I receive the following error message (amongst others, this is the first error-screen):
    General Exception
    java.lang.ClassNotFoundException:
    testvmDynamicJavaComPopup819.class
    I have tried all kinds of solutions but the problem remains.
    If someone knows how to solve this, I would be very grateful.
    [email protected]

    Many tutorials and questions
    1) google how to set java classpath
    2) youtube it there some vids that show how

  • BI Java Installation Error

    Hi,all:
    I did the installation of BI Java Installation yesterday,but it terminated during process"SAP J2EE Engine Online Deployment". It informs "MUT-02041 SDM call of deploySdaList ends with returncode 4". I check the callSdmViaSapinst.log, below is the error information:
    05/11/20 22:49:59 -  ***********************************************************
    05/11/20 22:50:01 -  Start updating EAR file...
    05/11/20 22:50:01 -  start-up mode is lazy
    05/11/20 22:50:01 -  EAR file updated successfully for 137ms.
    05/11/20 22:50:01 -  Start deploying ...
    05/11/20 22:50:02 -  EAR file uploaded to server for 385ms.
    05/11/20 22:50:02 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Error occurred while deploying ear file ./temp/deploy/work/deplo
    ying/bi_mmr_bi_4.0.ear.
                         Reason: None of the available containers recognized the components of application sap.com/
    bimmrbi_4.0; it is not possible to make deploy.
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.jav
    a:480)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServic
    eImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:291)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:183)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.
    java:119)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageList
    ener.process(ApplicationSessionMessageListener.java:37)
                            at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(Unorder
    edChannel.java:71)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(Native Method)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)
                         For detailed information see the log file of the Deploy Service.
    05/11/20 22:50:02 -  ***********************************************************
    Nov 20, 2005 10:50:02... Info: End of log messages of the target system.
    Nov 20, 2005 10:50:02... Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Nov 20, 2005 10:50:02... Error: Aborted: development component 'bi/mmr/bi_4.0'/'sap.com'/'SAP AG'/'350.6918.000
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Error occurred while deploying ear file ./temp/deploy/work/deploying/bi_mmr_bi_4.0.ea
    r.
    Reason: None of the available containers recognized the components of application sap.com/bimmrbi_4.0; it is
    not possible to make deploy.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(Deployme
    ntActionTypes).REMEXC)
    Nov 20, 2005 10:50:02... Info: SDM configuration: Do not automatically start/stop J2EE Engine. Do not restore s
    tate of J2EE Engine now.
    Nov 20, 2005 10:50:02... Info: -
    Deployment was successful -
    Nov 20, 2005 10:50:03... Info: Summarizing the deployment results:
    Nov 20, 2005 10:50:03... Error: Admitted: /Inst_CDs/BW/BW-UDI/ONLINE/BIUDI09_0.sca
    Nov 20, 2005 10:50:03... Error: Processing error. Return code: 4
    My platform is SUSE Linux Enterprise Server 9. I do the installation on a NetWeaver ABAP+Java 640 system. Also I have installed BI content 3.53.
    Please help me.
    Thanks,
    Daniel

    I am having the same problem.
    Can anyone help on this topic please?

  • Error while updating JAVA stack patchs

    hi i was updating JAVA stack patches from JSPM. and i got this error
    10/12/09 15:53:33 -  Start updating EAR file...
    10/12/09 15:53:33 -  start-up mode is lazy
    10/12/09 15:53:33 -  EAR file updated successfully for 118ms.
    10/12/09 15:53:33 -  Start deploying ...
    10/12/09 15:53:41 -  EAR file uploaded to server for 7537ms.
    10/12/09 15:53:43 -  ERROR: Not deployed. Deploy Service returned ERROR:
                         java.rmi.RemoteException: Cannot deploy application sap.com/tcwdsamplestestsuiteuuie..
                         Reason: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
                            com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:569)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
                         Caused by: com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:1052)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
                            at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3187)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:554)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
    predecessor system -
                         com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
                            at com.sap.engine.services.webdynpro.WebDynproContainer.deploy(WebDynproContainer.java:1052)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.makeComponents(DeploymentTransaction.java:606)
                            at com.sap.engine.services.deploy.server.application.DeployUtilTransaction.commonBegin(DeployUtilTransaction.java:321)
                            at com.sap.engine.services.deploy.server.application.DeploymentTransaction.begin(DeploymentTransaction.java:307)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhasesOnOneServer(ApplicationTransaction.java:292)
                            at com.sap.engine.services.deploy.server.application.ApplicationTransaction.makeAllPhases(ApplicationTransaction.java:326)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.makeGlobalTransaction(DeployServiceImpl.java:3187)
                            at com.sap.engine.services.deploy.server.DeployServiceImpl.deploy(DeployServiceImpl.java:554)
                            at com.sap.engine.services.deploy.server.DeployServiceImplp4_Skel.dispatch(DeployServiceImplp4_Skel.java:1555)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:330)
                            at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:201)
                            at com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:137)
                            at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
                            at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
                            at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
                            at java.security.AccessController.doPrivileged(AccessController.java:207)
                            at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:104)
                            at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:176)
                         For detailed information see the log file of the Deploy Service.
    10/12/09 15:53:43 -  ***********************************************************
    Dec 9, 2010 3:53:43 PM   Info: End of log messages of the target system.
    Dec 9, 2010 3:53:43 PM   Info: ***** End of SAP J2EE Engine Deployment (J2EE Application) *****
    Dec 9, 2010 3:53:43 PM   Error: Aborted: development component 'tc/wd/samples/testsuite/uuie'/'sap.com'/'SAP AG'/'7.0013.20070703112808.0000'/'8', grouped by software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7':
    Caught exception during application deployment from SAP J2EE Engine's deploy service:
    java.rmi.RemoteException: Cannot deploy application sap.com/tcwdsamplestestsuiteuuie..
    Reason: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?; nested exception is:
            com.sap.engine.services.deploy.container.DeploymentException: Clusterwide exception: Failed to deploy application sap.com/tcwdsamplestestsuiteuuie. Check causing exception for details (trace file). Hint: Are all referenced components deployed and available on the engine?
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.performAction(DeploymentActionTypes).REMEXC)
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:43 PM   Info: Finished saving the repository for 205 ms.
    Dec 9, 2010 3:53:43 PM   Info: Starting: Initial deployment: Selected software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7' will be deployed.
    Dec 9, 2010 3:53:43 PM   Error: Aborted: software component 'SAP_JTECHS'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214121635''/'7':
    Failed deployment of SDAs:
    development component 'tc/wd/samples/testsuite/uuie'/'sap.com'/'SAP AG'/'7.0013.20070703112808.0000'/'8' : aborted
    Please, look at error logs above for more information!
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:43 PM   Info: Finished saving the repository for 209 ms.
    Dec 9, 2010 3:53:43 PM   Info: Starting: Update: Selected software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214120518''/'7' updates currently deployed software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210170522''/'0'.
    Dec 9, 2010 3:53:43 PM   Error: Aborted: software component 'BI_UDI'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214120518''/'7':
    No further description found.
    Dec 9, 2010 3:53:43 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 313 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'CAF'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118105934''/'7' updates currently deployed software component 'CAF'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071210162941''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'CAF'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118105934''/'7':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 229 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20100122081155''/'5' updates currently deployed software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210193159''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'EP-PSERV'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20100122081155''/'5':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:44 PM   Info: Finished saving the repository for 210 ms.
    Dec 9, 2010 3:53:44 PM   Info: Starting: Update: Selected software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118110644''/'7' updates currently deployed software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P14_C'/'1000.7.00.14.1.20080124101556''/'0'.
    Dec 9, 2010 3:53:44 PM   Error: Aborted: software component 'LM-TOOLS'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118110644''/'7':
    No further description found.
    Dec 9, 2010 3:53:44 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 353 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204516''/'5' updates currently deployed software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210194048''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'UWLJWF'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204516''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 213 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'SAP-EU'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118101502''/'5' updates currently deployed software component 'SAP-EU'/'sap.com'/'MAIN_APL70VAL_C'/'1000.7.00.14.0.20071210153525''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'SAP-EU'/'sap.com'/'MAIN_APL70P21_C'/'1000.7.00.21.0.20100118101502''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 213 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204617''/'5' updates currently deployed software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210153724''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'VCFLEX'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204617''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:45 PM   Info: Finished saving the repository for 331 ms.
    Dec 9, 2010 3:53:45 PM   Info: Starting: Update: Selected software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204625''/'5' updates currently deployed software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.14.0.20071210153730''/'0'.
    Dec 9, 2010 3:53:45 PM   Error: Aborted: software component 'VCFRAMEWORK'/'sap.com'/'SAP AG'/'1000.7.00.21.0.20091214204625''/'5':
    No further description found.
    Dec 9, 2010 3:53:45 PM   Info: Starting to save the repository
    Dec 9, 2010 3:53:46 PM   Info: Finished saving the repository for 230 ms.
    Dec 9, 2010 3:53:46 PM   Info: J2EE Engine is in same state (online/offline) as it has been before this deployment process.
    Dec 9, 2010 3:53:46 PM   Error: -
    At least one of the Deployments failed -
    lgsep:/usr/sap/LEP/JC00/SDM/program/log #

    Hi ,
    Please check :
    https://wiki.sdn.sap.com/wiki/display/WDJava/Clusterwideexception-FailedtodeployWebDynprocontentforapplication
    Regards,
    Nibu Antony
    Edited by: Nibu Antony on Dec 13, 2010 2:52 PM

Maybe you are looking for

  • How to view recent threads

    In case it's any use to anyone, I discovered that it's possible to get a list of all recent message threads by going to URL http://community.bt.com/t5/forums/recentpostspage/post-type/thread They are sorted by the date/time of the most recent post to

  • Dynamic Action on apex items

    Hi, I have a requirement like after entering the date of birth in the item. then age value should be set dynamically. how can i set the value?

  • Email notification issue in some schemas

    Hi, My problem is almost identical as here DBMS_SCHEDULER send email notification issue One privileged scheduler user - user1 receive email notifications while two another (user2, user3) no. More plot is below i know 'what' resolve the problem but do

  • I want to save username but not password

    is this possible?

  • JDBC Connection Encoding

    i have oracle database server with NLS_CHARACTERSET=AR8ISO8859P6 (ISO-8859-6) and my jdbc connection is public sqlj.runtime.ref.DefaultContext getConnectionContext() throws SQLException Properties props = new Properties(); props.put("charSet","ISO-88