Java tools

D:\usr\sap\TST\JC00\j2ee\admin>"C:\j2sdk1.4.2_13\bin\bin\java" -showversion -Dsu
n.java2d.noddraw=true -Duser.language=en -jar "D:\usr\sap\TST\JC00\j2ee\admin\go
.jar"
The system cannot find the path specified.
Program terminated abnormally
Press any key to continue . . .
i am getting the above error when i try to launch go.bat on system, kindly provide the answers.
thanks & regards
ramesh

Hi Ramesh,
Actually go.jar loads several java libs and some of them might be missed or corrupted. In order to find which one:
Set DebugLauncher property to true in D:\usr\sap\TST\JC00\j2ee\admin\cfg\launcher.properties. Then try to lunch go.bat again and check console output or logs (D:\usr\sap\TST\JC00\j2ee\admin\log\console_logs\*.*).
Best regards,
Aliaksandr Zhukau
P.S.: As a workaround, you can change required parameters of your portal system from another server or standalone installation of Visual Admin on local machine.

Similar Messages

  • Need a java tool to get the directory difference

    Hi,
    I'm looking for a tool which is implemented in java that should be able to get the directory difference*. It should also be capable of notifying modified files also. I found a java tool but it only gives the directory difference, not the modified files.(a console program)
    Thanks.

    Hi,
    You can use below script which calculates difference as DD:HH:MM:SS. You can modify the same:
    DECLARE @startTime DATETIME
    DECLARE @endTime DATETIME
    SET @startTime = '2013-11-05 12:20:35'
    SET @endTime = '2013-11-10 01:22:30'
    SELECT [DD:HH:MM:SS] =
    CAST((DATEDIFF(HOUR, @startTime, @endTime) / 24) AS VARCHAR)
    + ':' +
    CAST((DATEDIFF(HOUR, @startTime, @endTime) % 24) AS VARCHAR)
    + ':' +
    CASE WHEN DATEPART(SECOND, @endTime) >= DATEPART(SECOND, @startTime)
    THEN CAST((DATEDIFF(MINUTE, @startTime, @endTime) % 60) AS VARCHAR)
    ELSE
    CAST((DATEDIFF(MINUTE, DATEADD(MINUTE, -1, @endTime), @endTime) % 60)
    AS VARCHAR)
    END
    + ':' + CAST((DATEDIFF(SECOND, @startTime, @endTime) % 60) AS VARCHAR),
    [StringFormat] =
    CAST((DATEDIFF(HOUR , @startTime, @endTime) / 24) AS VARCHAR) +
    ' Days ' +
    CAST((DATEDIFF(HOUR , @startTime, @endTime) % 24) AS VARCHAR) +
    ' Hours ' +
    CASE WHEN DATEPART(SECOND, @endTime) >= DATEPART(SECOND, @startTime)
    THEN CAST((DATEDIFF(MINUTE, @startTime, @endTime) % 60) AS VARCHAR)
    ELSE
    CAST((DATEDIFF(MINUTE, DATEADD(MINUTE, -1, @endTime), @endTime) % 60)
    AS VARCHAR)
    END +
    ' Minutes ' +
    CAST((DATEDIFF(SECOND, @startTime, @endTime) % 60) AS VARCHAR) +
    ' Seconds '
    Reference:
    http://sqlandme.com/2013/12/23/sql-server-calculating-elapsed-time-from-datetime/
    - Vishal
    SqlAndMe.com

  • Designer 6i + 9i: Java tools (Version History etc) do not work in 9i

    1.
    I have installed both Designer 6i (4.2) and 9i in different homes.
    6i works fine, but in the 9i installation the java tools, such as Version History Viewer etc. do not work. The java classes cannot be found.
    Any suggestions?
    2.
    6i R4.2 and 9i seem to work against the same repository version, so I can use 6i for the missing parts. Will this be working still after future patches of 9i?
    I need the combined 6i/9i installation because my laptop is used both for (6i) training and 9i development.

    Hi Peter,
    1) This is most probably caused by your java class path being longer than
    999 characters. We are aware of this problem and it is recorded as a bug.
    Simply reduce the length of your class path to less than 999 characters
    and the Java tools should start OK. The offending Registry variable you
    are looking for is:
    HKEY_LOCAL_MACHINE\SOFTWARE\ORACLE\HOME0\REPADM61\DEFAULT_JVM_PARAMS_THIN_JDBC
    JVM_CLASSPATH_DEFAULT_THIN_JDBC
    There is an also one or two issues with the JDBC thin drivers used and
    the 'increased sensitivity' of the 9i database tnsnames.ora file content
    and structure. The Release Notes for Designer 6i Release 4.3/9i Designer
    9.0.2.1.0 should more details on this and available workarounds.
    I suggest you look at these and implement the tnsnames.ora workaround at
    least, in order to protect against future connection problems. By the way
    - 8.1.7 works fine with respect to these connection issues.
    2) Please see this post from this forum for more details =>
    Re: Oracle 9i database problem
    Hope this helps.
    Regards,
    Dominic
    Designer Product Management
    Oracle Corp

  • Pls help. which java tool to use for math parser?

    hi there
    pls tell me which java tool and classes do i need to use to create a math parser for defferentiation functions. i googled the topic and only got confused. thanks in advance.

    sabbir736 wrote:
    hi there
    pls tell me which java tool and classes do i need to use to create a math parser for defferentiation functions. i googled the topic and only got confused. thanks in advance.You use a CAS (Computer Algebra System) for such a task: not Java. I recommend Maple or Matlab, or if you don't have any money to spend: you could try Maxima: http://maxima.sourceforge.net/ I heard some good things about it.

  • Making Java tools available

    Hi,
    I am having trouble with my Java tools.
    I am only able to run programs like javac, rmic, rmiregistry
    from the bin directory. (c:\jdk\bin) The directory where they
    are stored. I cannot run these programs from sub-directories of bin
    or any other location.
    I believe this is creating a problem in my RMI application which
    requires the rmiregistry program to be run in the directory containing
    the Stub class.
    How can I make these programs runnable from the command line
    in any directory?
    Any help is greatly appreciated.
    I am using Microsoft Windows 2000.
    Christian

    Check your system PATH variable and make sure it includes c:\jdk\bin.

  • SAP Java tools

    Hello All,
                   I am very new to WEB AS Java..Please tell me the differences between the SAP Java tools:
    1. Configtool
    2 SDM
    3. Visual Administrator.

    Hi,
    Basic Idea:
    1)  Configtool: A offline tool to administrate j2ee that means java not need to be up when you change any java parameter.it directly connect you to database and apply changes and you need to restart java server after applying chnages using configtool.
    2)  Visual Admin. A online tool to administrate java Server you can make changes only when JAVA serevr is up and it affects parameter changes dynamically.SAP tells you when you need to use which tool ou of config and Visual Admin
    3)  SDM(Software Deployment Manager) is to deploy and undeploy the business packages only one connection is possible at a time..So to deploy new packages and undeploy and number of other tasks are there you need to use SDM.
    4)  JSPM(Java Support Package Manager).This is used to apply SP to Java and as well as business packages it further use SDM to verify that package is suitable for system or not.
    Better you explore your self it helps you a lot.........
    Thanks &Regards,
    Gagan Deep Kaushal

  • Java tool (with a web based interface)

    Hello all experts,
    This is what may client has said:
    +"We require a Java tool (with a web based interface) that will+
    +screen scrape or copy the Britannica source content from http://www.britannica.com/ by+
    +category. Then import those pages into confluence+
    +<http://www.matrixian.com/software/confluence/> Britannica . Optimally+
    +this tool will work as a plug-in for confluence+
    +<http://www.matrixian.com/software/confluence/> Britannica."+
    Can anyone please tell me what are the processes (java technology) I should undertake to build the system successfully?
    Thanks and Regards,

    Find a lawyer.
    As it appears, without evidence from you to the contrary that you are asking how to use Java to steal copyrighted content I would humbly suggest that you investigate, whether (a) the activity is illegal (b) whether you feel comfortable legally and ethically in helping someone steal content.
    Happily your actual Java related question is quite trivial and the fact that you had to to ask and couldn't either figure it out on your own nor find a suitable answer through searching suggests that you will be unable to provide the client with what they ask based on your current skill set. Aka the legality won't be an issue since you don't appear competent enough anyway.

  • Error in IDML java tool

    Hi
    java tool which convert xsl file to corresponding IDML file giving me an error in tokenize function.
    As far as my knowledge is concern I think it will be producing through saxon jar file which is comprised in Jing folder in SDK.
    Could any one help me to know that which version of saxon is used in InDesign CS4 windows SDK or if that is due to other resion what it is ??
    Mac

    You should ask this in the SDK forum: http://forums.adobe.com/community/indesign/indesign_sdk

  • Unable to start java tools - Error : Environment variable JAVA_HOME not set

    hi all,
    I am not able to start the java tool - Visual Admin, Configtool, etc in the solaris Bash shell.
    I was given authorizations on solaris and i'm able to view the logs and browse in solaris boxes,
    But, when i try to start Visual Admin, it says" ERROR environment variable JAVA_HOME not set "
    Since,my colleagues are using this tool for years, how come the environment variable is not set only for my user profile ?
    Is it like the environment variable has to set seperately for every user profile ?
    Do i need to set it initially for my profile eventhough it is working for others ?
    i am confused..please help.
    Addy

    Nicholls, Thanks for your quick reply.
    Ofcourse, I use my login ID to use java tools and they use their's obviously.I don't use <SID>adm.
    We WRQ reflection for X-Windows and Putty for Command line Solaris Access.
    When i try to use VA through the X-Window tool WRQ reflection, I am not able to start the tool.
    My doubt here is, Do we need to setup the environment variable for every new user initially for the first time ? ( I am a new user for this environment )
    Supposing if i need to setup the environment variable, do i need to set it up for the all the Solaris Boxes i use ?
    I am able to browse through the files.when i try to start the VA by giving ./go i am not able to start it up.
    Appreciate your time and valuable replies.
    Addy

  • Could not find an installed JDK, SCM Java Tools may not work until registry

    Hello all,
    I've downloaded the latest full version of Designer (10.1.2.3), but getting installation error: Could not find an installed JDK, SCM Java Tools may not work until registry
    Any solution?

    3. install the Designer 10.1.2.3 patch to the Developer suite home.When I try to do this at C:\oracle\product\Ora10gDSR2, I get a message OUI-10137: An Oracle Home with name OUIHome already exits at C:\OraHome (a directory that doesn't exist) please specify another name for Oracle Home.
    I don't want to just specify another name because cleaning up these faulty installations requires deleting registry keys, etc, since the deinstall does't really remove everything sufficiently to start with a clean slate.
    I also got the Java JDK message because the JDK 5 is no longer being put straight onto the C drive, it is buried in C:\Sun\SDK\jdk, so some java programs have to be pointed to it. The Oracle installer doesn't provide this option.
    Also, Michael, your post, "Re: Designer 10.1.2.3 on windows Xp Posted: Oct 20, 2007 7:05 AM in response to: mmehdi" is full of unreadable characters and question marks. Maybe I don't have a font you are using. There are also references to a zip file and a Word document that aren't there.
    Anyway, thanks for all your time and effort,
    Edward

  • My system can't find Java tools

    I installed Java SDK 1.4.2_07 a year or so ago on my Linux system in;
    /usr/java/j2sdk1.4.2_07/
    I also carried out some procedures at this time to make the Java tools accessable from any directory. Exactly what these procedures were I cannot recall.
    It all worked fine. I could execute Java commands from any directory.
    Recently I connected a router to provide ADSL connectivity to the Internet.
    When I did this I noticed that my command prompt changed from;
    [username@localhost username]$
    to
    [username@myISPsName username]$
    As soon as I did this I found I could no longer get Java commands to work from anywhere.
    All I get is error messages such as;
    bash: java: command not found
    What has happened? Has my environment variable been changed somehow?
    How do I get Java commands working again?
    Even when I change directory to
    /usr/java/j2sdk1.4.2_07/bin/
    and then enter
    [username@myISPsName bin] java -version
    I get the error message;
    bash: java: command not found
    I am quite confused.

    working backward in you post...
    [username@myISPsName bin] java -version
    should be
    [username@myISPsName bin] . java -version
    now you must of set the java install path in you PATH a year ago.
    So type SET and look at the PATH varible to confirm that its in there.
    If it is, check that its correct.
    To change it look for a file like...
    .bash it should contain the settings.
    sorry can't be more help, not used linux in a whlie (cygwin these days)
    jeff porter

  • Mapviewer pure Java tool?

    Hello all,
    As a general question:
    I've read that,
    "Since MapViewer is a pure Java tool, it can run on any platform where Java is available."
    Does this mean I could run mapviewer on Tomcat instead of OC4J?

    Great question. Although it's technically possible to run MapViewer on a non-Oracle J2EE container (others have certainly done this), MapViewer is licensed with Oracle Application Server. Hence, even in a Tomcat environment, you would be legally obligated to purchase licenses of Oracle Application Server to run MapViewer in production. That said, as far as support streams go, Oracle can really only support MapViewer installations and configurations on supported platforms. So, if you have installation/configuration issues while running on a non-Oracle platform, you would most likely have to find your own answers from chat boards and forums. Hope this helps.
    -Justin

  • Is there Java tool to easily add drag-and-drop flowchart building?

    Is there Java tool to easily add a drag-and-drop flowchart building to a Java app?

    A drag and drop flowchart IS a tool, as in a complete program. Perhaps you can find an open source flowchart tool written in Java somewhere from which you can 'borrow' some internals, but I'd not get your hopes up. You are probably in for some programming to get something that matches your specific needs.
    Another option is to turn it around - is it perhaps possible to build your own application on top of an existing platform, like Eclipse or Netbeans platform? Both of those have at least the frameworks/tools to make it easy to create a flowchart module, but you have a good chance that one exists already.

  • How is javaw tool different from java tool

    hi
    java tool for windows start programme in a console window and javaw starts without a console window..
    how is this implemented in javaw ie what is the difference which allows it to do it
    thanks
    asif

    It is not supposed to display the console window.
    Obviously it doesn't work. It did at one time.it still works (1.4.0_01). you can use it and itfires
    off java without console.I believe 'still' is incorrect. In earlier versions
    it did not. However this might have varied by OS.
    So have you tested it on Win 95, 98, Win 2000, Win
    2000 ME, Win XP Pro and Win XP Home?
    on NT 4 I have tested the following...
    Java Runtime's 1.2, 1.3.1, 1.3.1_02 and 1.3.1_04
    Development Kit 1.1.8,1.2.1,1.3.1_04 and 1.4.0_01
    in all of these javaw does what it is supposed to do... namely launch
    the runtime in a another process without a command window.
    on Windows 95 I have tested the following
    Java Runtime's 1.3.1_02 and 1.3.1_04
    Development Kit 1.3.1_04 and 1.4.0_01
    these all work.
    i have also tested 1.3.1_04 runtime on 2000 and know that works.
    i would would imagine that since the os arch is the same these should
    all work on 98 and ME. the only os i don't know about is XP. what
    "versions" are you talking about? pre 1.1.8... that would be pretty old.
    anyway i think the original posted was asking something I don't know
    what really but i don't think it had to do with javaw not working. he
    seems to be asking how something works not why it doesn't
    how is this implemented in javaw ie what is the difference which allows it to do it

  • Common Java Tool Bar Icons

    Hello everyone!
    Where can i find some of the common java tool bar images (.gif)? New, Open, Print, Cut,...
    Thanks!

    check these out - they are defined by sun for java
    http://developer.java.sun.com/developer/techDocs/hi/repository/TBG_General.html

  • Java tool free

    Hello;
    I search a java tool (free) to develepp, debugg and deployement .
    Jbuilder is very expensive for my.
    Best regards;
    Djamel;

    The Sun ONE Studio package is a powerful IDE based on the NetBeans Tools Platform. The Community Edition of this package is free and can be obtained from
    http://wwws.sun.com/software/sundev/jde/
    The Sun ONE Studio is allows you to
    * Create stand-alone applications and applets
    * Supports development of JavaBeans components, JavaServer Pages, (JSP), Servlets, and JDBC

Maybe you are looking for

  • STO - Unpack HU assigned to an outbound delivery

    Hi SAP experts, I'm trying to unpack a HU assigned to an outbound delivery created for a STO. The material packed is WM managed. I would like to know what are the steps to perform ? - I've created and confirmed a TO from 916 to 923 with LT09 transact

  • ITunes freezing when copying added files to ITunes folder

    Hi all, I have been running ITunes off of an external hard drive for as long as I can remember. I recently got a little NetBook, and it runs much faster than my older, slower desktop, so I figured I would just transfer all of my music to the NetBook.

  • Can I add external Internet users to my Global Address Book?

    We have a semi permanent relationship with another company. We have Groupwise 7.02hp1a and they use Exchange 2007 or 2010(not sure which). They have added many of my people's Internet Addresses they normally deal with here into their Global Address B

  • Time Machine does not display Oldest or Latest Backup details

    I had previously posted this but had no luck (or replies)... Shortly after the most recent Time Capsule software update, I had an issue where Time Machine stopped working. I was getting a"Backup volume cannot be found" message. As per Apple's instruc

  • Administrator Access ACS V4.2

    I have just reimaged one of my ACS appliances as it was completely corrupted. Now I have done this I have connected it to the network via DHCP so I can patch it from v4.2 to the latest version. The machines is now on the same VLAN as my workstation.