Linux I am not getting javac

Hello Friend Please Help me[b] immediately
I have download java for linux .
then I have given permission for execution.
then I installed file by this command ./<java-version>/
It completly installed .
But i did not find file javac.
I am getting other file such as java javaws.
I set path
java command run perfectly But javac Not working (Because this is not exist in bin)
i installed this version linux jre1.5.0_06
please send advice
Nitin

This forum area is for Sun Studio which includes C/C++/Fortran compiler, etc. on Linux.
As to java, maybe you want to post your query here:
http://forum.sun.com/jive/forum.jspa?forumID=306
Rose

Similar Messages

  • Linux guest does not get DHCP offer through a bridged internal switch, but Windows guests do (laptop).

    I also got trouble getting networking to work on my laptop. It has one Gigabit LAN and one wireless network interface.
    I cannot get my Linux guests, I tried CentOS 6.4, Ubuntu 13.10 and Debian 6, to get a DHCP offer from my DHCP server on my physical LAN. Manual configuration using static IP addresses works, but I need DHCP for my laptop.
    I tried a Windows 8.1 Pro 64bit guest and the Windows Phone SDK 8.0 and both connected fine to the internet.
    Here is what I tried:
    With the ethernet cable disconnected I was connected to my wireless network or LAN with WPA2 personal authentication. On this physical LAN there was a DHCP server.
    I created an internal Hyper-V switch and then I created a bridge between this switch and my wireless interface. I always used this switch as the single network connection for my VMs.
    I am using Windows 8.1 Professional 64bit.
    Why are only Linux guests affected and is there a solution? Thank you.

    Hi faustbusserl,
    "I cannot get my Linux guests, I tried CentOS 6.4, Ubuntu 13.10 and Debian 6, to get a DHCP offer from my DHCP server on my physical LAN. Manual configuration using static IP addresses works, but I need DHCP for my laptop."
    Does it mean that you have created an external virtual switch  for Linux guests and they can not get IP from DHCP ?
    Did you try to use legacy network card for the linux VM to get IP from DHCP .
    Best Regards
    Elton Ji
    We
    are trying to better understand customer views on social support experience, so your participation in this
    interview project would be greatly appreciated if you have time.
    Thanks for helping make community forums a great place.

  • Demantra 7.3 ,Analytical Engine Is not getting up and getting terminated

    Hi,
    When i am trying to make my Demantra 7.3 - analytical engine up on linux server, is not getting up and getting terminated. Can any body help me in the same.
    For your information
    Mine Weblogic server is 32 bit and linux operating system is 64 Bit.
    Thanks in advance.
    Thanks,
    Ankur Dawra
    Edited by: Ankur Dawra on Aug 16, 2010 2:52 PM

    If that specific patch is causing a conflict with CU7 or Rules Engine Update Service, the best option would be to LOG a case with Microsoft and let them either fix it or provide a justification of why that specific Windows Patch is not a good idea (file
    an exemption in case of later with the customer/security team).
    Regards.

  • Application deployed on one node is not getting displayed in second node

    Our environment is linux x86_64 and FMW version 11g,weblogic 10.3.4.0 ,soa 11.1.1.4.
    We have installed weblogic cluster :
    node1: Admin server,soa_server1
    node2:soa_server2
    when we deploy any soa application in one node it is not getting published in second node.We have taken oracle support also still problem is not solved.
    They told us to configure coherence ,we have taken owc from metalink .
    very urgent.
    Any one can help me.

    You have a cluster consisting of soa_server1 and soa_server2 or are these stand-alone WebLogic instances?
    Is soa-infra active on soa_server2?
    Can you check if soa-infra can be reached on both the server instances (http://hostname:port/soa-infra/)
    When soa_infra cannot be reached on soa_server2 can you check the logging to see what errors
    are occuring.
    Some examples that set-up a clustered envionment can be found here: http://middlewaremagic.com/weblogic/?p=6872
    and here: http://middlewaremagic.com/weblogic/?p=6637

  • I'm new to Java and can't get javac command working

    Ok first of all hello ( i'm new to the forum ), second i'm reading a book about Java and im trying to compile a sample code from the book, but javac command gained life and it's against me. So the book i'm reading is Sams Teach Yourself Java in 21 Days (YAY), and the code i want to compile is an application that works with another bit of code that mimics what a robot could do inside a volcano. So the Volcano program code is the following ( i'll post the robot code at the end of the post):
    1: class VolcanoApp {
    2: public static void main(String[] arguments) {
    3: VolcanoRobot dante = new VolcanoRobot();
    4: dante.status = ?exploring?;
    5: dante.speed = 2;
    6: dante.temperature = 510;
    7:
    8: dante.showAttributes();
    9: System.out.println(?Increasing speed to 3.?);
    10: dante.speed = 3;
    11: dante.showAttributes();
    12: System.out.println(?Changing temperature to 670.?);
    13: dante.temperature = 670;
    14: dante.showAttributes();
    15: System.out.println(?Checking the temperature.?);
    16: dante.checkTemperature();
    17: dante.showAttributes();
    18: }
    19: }
    Ignore the numbers they are used for explaining stuff in the book, and i din't copy the indentation.
    So what i do is that i creat a file with notepad ( no fancy stuff only plain old notepad ) and i copy this code, remove the numbers and make the indents.
    After that i save as .txt file with the apropriate name ( i know it's case sensitive ). After that i open command prompt and write:
    javac VolcanoApp.java
    And it tells me that "javac is not recognized as an internal or external command operable program or batch file".
    I managed to solve that by going to the control panel and by adding to the system variables for my user in the path variable this :
    ;C:\JAVAJDK\bin
    ( C:\JAVAJDK is where JDK is installed)
    And then i modified the system variables like this:
    In the CLASSPATH i entered this .;%JAVA_HOME%\lib\tools.jar
    In JAVA_HOME i entered this C:\JAVAJDK
    Setting the variables like this made the javac error go away but now when i write in command line
    javac VolcanoApp.java
    It gives me this error
    javac: file not found : VolcanoApp.java
    Usage: javac options source files
    use -help for a list of possible options
    And then i read that i can drop my java file directly in the javac file. So i did.
    When i drop my VolcanoApp.java in the javac file it open a command line window and writes a bunch of stuff in like a milisecond and shuts down. And no file is created.
    I wanted to know what was writen in that window so i did it again and took a print screen and pasted it on paint ( it writed so much text that i only got a little bit but enough to see what hapend)
    I read it and in the print screen it said it had 15 errors ( so far ) and then it point the errors with little arrows and there were characters that weren't present in the original code.
    What hapend the compiler added wierd letters?
    SO, my real question is, how the heck do i get javac working and compiling stuff properly?
    Plz help i'm getting mad at this! ; (
    And the code for the "robot":
    1: class VolcanoRobot {
    2: String status;
    3: int speed;
    4: float temperature;
    5:
    6: void checkTemperature() {
    7: if (temperature > 660) {
    8: status = ?returning home?;
    9: speed = 5;
    10: }
    11: }
    12:
    13: void showAttributes() {
    14: System.out.println(?Status: ? + status);
    15: System.out.println(?Speed: ? + speed);
    16: System.out.println(?Temperature: ? + temperature);
    17: }
    18: }
    Again no indents and ignore the numbers. In the book it only said to compile the VolcanoApp.java , and not the VolcanoRobot.java
    Edit:
    I'm using Windows Vista Home Premium 32 bit.
    Edited by: BBlop on Dec 13, 2009 11:29 AM

    guess what it says java file. So yes i'm sure. Sarcasm. Not the best way to encourage a total stranger to help you. Then there's
    Sorry if i wasn't more clear but was that response needed?No it wasn't needed, but I'm not the one asking for help so I have the luxury of not worrying too much about it. It's extremely frustrating trying to drag relevant information out of someone, and makes one less inclined to bother.
    Anyways, there's still nothing in this thread that actually explicitly says "there is a file called VolcanoApp.java in the directory where I'm running javac from" and I really can't be bothered banging my head against the wall any longer. You've made a silly mistake, or a false assumption. We all do it from time to time. My advice is, take a break, go for a walk and re-visit this in a while. You'll probably spot the mistake right away.

  • Not closing ResultSet, but not getting ORA-01000

    I have an application that is generating the familiar ORA-01000 error.
    Whilst investigating the problem, I wrote a small test program. In the test program I tried to get the ORA-01000, but I don't get it (has anyone ever complained about not getting ORA-01000 before?!)
    connection = DriverManager.getConnection("<connection string>");
    String sql = "SELECT c1 FROM pdtab2 WHERE Id>=? AND Id<=?";
    PreparedStatement ps = connection.prepareStatement(sql);
    for (int i = 1; i <= 30000; ++i)
        ps.setInt(1, i-1);
        ps.setInt(2, i+1);
        if (i % 100 == 0)
            System.out.println("i=" +i);
            System.out.println("getCurrentOpenCursors(connection)="
                               +getCurrentOpenCursors(connection));
        try
            rs = ps.executeQuery();
            while (rs.next())
                result = rs.getInt(1);
        catch (SQLException e2)
            e2.printStackTrace();
        finally
            // Do nothing! Do not close the result set
    }getCurrentOpenCursors does:
    select count(*) AS COUNT from v$open_cursor where user_name like 'me'
    I have reduced OPEN_CURSORS down from 300 to 100, but getCurrentOpenCursors always returns less that what it is set to. Suggesting that OPEN_CUSRORS is not a limit, but rather a pool size?
    The result set returns more than one record, I never close the result set, yet I do not get an ORA-01000 error. I have tried auto-commit true and false on the connection. Is the prepared statement closing its previous result set on each new iteration of the loop, hence stopping me getting a problem?
    I am using Oracle version 10.2.0.1, the corresponding ojdbc14.jar, and Java 1.4.
    Thanks,
    Paul

    Here is a program that does that for you.
    To fix the program, un-comment the line 24 of the code and run again.
    C:\> type TestCursors.java
    import java.lang.* ;
    import java.util.* ;
    import java.sql.* ;
    import oracle.jdbc.* ;
    public class TestCursors
        public static void main(String[] args) throws SQLException, ClassNotFoundException
            Class.forName("oracle.jdbc.driver.OracleDriver");
            Connection connection = DriverManager.getConnection("jdbc:oracle:oci:@localhost:1521:ORCL");
            ResultSet rs ;
            PreparedStatement ps ;
            for (int i = 1; i <= 30000; ++i)
                String sql = "SELECT 20 FROM scott.emp WHERE deptno = ?";
                ps = connection.prepareStatement(sql);
                ps.setInt(1, 10);
                try
                    rs = ps.executeQuery();
                    rs.close() ;
                    //ps.close() ;
                catch (SQLException e2)
                    System.out.println("The value if i is " + i) ;
                    throw e2 ;
    C:\> javac TestCursors.java
    C:\> java TestCursors
    The value if i is 301
    Exception in thread "main" java.sql.SQLException: ORA-01000: maximum open cursors exceeded
            at oracle.jdbc.driver.DatabaseError.throwSqlException(DatabaseError.java:111)
            at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:671)
            at oracle.jdbc.driver.T2CConnection.checkError(T2CConnection.java:597)
            at oracle.jdbc.driver.T2CPreparedStatement.executeForDescribe(T2CPreparedStatement.java:570)
            at oracle.jdbc.driver.OracleStatement.executeMaybeDescribe(OracleStatement.java:1030)
            at oracle.jdbc.driver.OracleStatement.doExecuteWithTimeout(OracleStatement.java:1123)
            at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3284)
            at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3328)
            at TestCursors.main(TestCursors.java:22)
    C:\>

  • Reports not getting generated

    Dear All,
    I know this is a repeat query but im unable to find information from the blogpost http://scn.sap.com/docs/DOC-41109.
    I have earlier configured the WWI setup in a linux server. Now I am testing it on a windows server. I have made all the configurations in word and for generation server. The issue is, the report is not getting generated in report management screen and is in status Generation possible always.
    When i check the wwi monitor, the doc type SBR is getting released but not getting completed. Please see the screenshot. CGSADM is working fine, RFC is working fine. I tried creating documents in CV01N and they are getting created. The DCOM settings are also good and activated the permissions there too. The DMS settings are set as per the SAP notes. However The job i scheduled is in status Finished for document generation. But when I try to generate the report, the report is created using a variant and the status of the report is in generation possible always. I checked the variant of the report and the validity is in REG_WORLD. I understand that there is some issue in the scheduled job.
    I have scheduled only one job for Document Generation as follows.
    a)Enter the job name - DOC GENERATION and choose a job class - A.
    d) Choose Start condition and in the dialog box, choose After event.
    e) Enter SAP_SYSTEM_START in the event field.
    f) Activate Periodic job - HOURLY
    g) Choose Check and save your entries.
    h) Choose Step and choose ABAP program in the dialog box that appears.
    i) Enter RC1WWIDS as the ABAP program name.
    j) Choose Check and save your entries.
    k) Before you leave the Define Background Job screen, you must save your entries once more.
    Result: The job is started whenever the SAP system is started.
    aFTER REPEATED ATTEMPTS, THE RESULT IS THE SAME AND NO CHANGE IN STATUS OF THE REPORT.
    Kindly suggest what step am i missing . I have been through all the blogs in SCN. My old blogs are however missing and hence I am not able to access them.
    I am using SAP GUI 7.30, ECC6 and EHP 5.
    Regards
    Dhinesh

    Dear Dhinesh
    Please help me to understand your system landscape.
    a.) Did you have had a SAP EHS up and running together with a "linux server" based WWI version
    and
    b.) now you are switching the same SAP system to a "windows server" based version?
    I am not sure about your screenshots. But you seem to have more than one gen server attached to the same system; did you updated as well WWI?
    So no adaption of general SAP set up (like DMS etc.)?
    Therefore any job scheduled (before afterwards) is done using a SAP account having the necessary access rights?
    Can you please check this:
    1.) create several sessions; one with WWi monitor and one with CG02; try to generate a different report for the same spec id (e.g. not MSDSUS in EN, but MSDS/FR) and check progress in WWI monitor as well as CG50
    2.) select in CG50 the report in status "generation possible"; mark it and try to "go" on ; check access rights afterwards (su53)
    I hate this status "generation possible". I believe you need to use "debug replace" to remove that entry; I can not remember any more but that was the only option to get "rid" of this entry
    Please read WWI cookbook, There is a set up possible in such a way that any action on WWI server is "logged"; may be try to analyze the log file to get idea why there is no progress regarding the generation
    PS: the problem you have detected is not related to the "validity area". It is a matter of communication issue between SAP and WWI server and the WWI process can not be finalized.
    But you are not alone with your problem (e.g. check:
    http://www.benxbrain.com/en/sap/program/RC1WWIDS-Generation-possible-status-not-changing-thread-1-1547841.htm)
    http://scn.sap.com/thread/3311944
    http://www.consolut.com/en/s/sap-ides-access/d/s/doc/H-ESEWSRSTAT
    https://scn.sap.com/thread/1575223
    http://sap.ittoolbox.com/groups/technical-functional/sap-dev/ehs-wwi-processing-272462
    Check as well your own thread: http://scn.sap.com/thread/3304285
    C.B.
    PS: may be check: http://www.stechno.net/sap-notes.html?view=sapnote&id=1094307
    as well as:
    http://www.stechno.net/sap-notes.html?view=sapnote&id=580586
    PPS I: logging feature of WWI is described here: Note 778684
    PPS II: may be check: http://www.stechno.net/sap-notes.html?view=sapnote&id=1094307
    PPS II: may be check as well: http://scn.sap.com/thread/3344033
    and http://scn.sap.com/thread/1381004

  • Laptop screen not getting locked on close lid or resume from suspend

    I am using kde 4.4 rc2 atm. My laptop screen is not getting locked when I closed the lid or when laptop resumes from a suspend to ram.
    It used to work correctly before I installed acpid(before that I just had the acpi client package installed.) Power Devil used to handle everything correctly.
    The power devil settings already says, Lock screen on resume and I have added Lock screen as action for Lid close for performance profile.
    Is there any way to fix this. I want to make laptop screen lock when I do lid close or resume from suspend/hibernate.

    Suspend has always been problematic under Linux. It seems to be hit or miss for the most part, but here are some things you can try:
    Use an LTS kernel, tuxonice, pm-utils, etc. See Suspend and Hibernate
    Try a different graphics driver
    Tweak the driver module parameters or build your own driver.
    Unfortunately I don't have experience with the radeon driver, so I can only give you ideas.

  • Database Item not getting saved in DB

    Hi Experts,
    Forms version 10.1.2.0.2 (Production)
    Database version :
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    PL/SQL Release 11.1.0.7.0 - Production
    "CORE 11.1.0.7.0 Production"
    TNS for Linux: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    I have an Database Block say 'Commercials' ,in which there are 15 database items. I enter value in these items and save the values in DB. But the requirement is, upon updation of the values enterd in any one of the 15 items, it should not get updated in DB, instead a new set of values with a new primary key should be inserted into the DB as a new row. To do so, an package is called in the Key commit trigger  and in ON-UPDATE trigger, i give null there, inorder to avoid updation of  values in the same record.
    The above scenario works perfectly. Now, I add an new column in DB (as 16th column in Block).   I need only this specific column to get updated.
    When i put fnd_message on execution, it fires in the key-commit and says 1 record is applied and saved. But it is not saving in DB. especially that 16th column is not getting updated in DB.
    While updating the record, The flow of trigger moves to On- Update through Key-commit..
    What can be given in the On-update trigger to make the 16th column to get saved in DB.
    Thanks and Regards,
    Kanishk

    Kanishk,
    Can you please show us what code you have written in your On-Update trigger?
    Just thinking through the process, I would expect to see some checks to see which columns have been updated so you can determine whether to create a new record (column 1-15) or update an existing record (column 16).  To do this type of thing, you will need to compare the Current Value of the column to the value that was fetched from the database.  Unfortunately, Forms does not have a System Variable that records the status of each item like it does the Record, Block or Form status so you have to perform this comparison yourself.  Thankfully, Oracle Forms does have a built-in that will help with this; GET_ITEM_PROPERTY('ITEM_NAME', DATABASE_VALUE).  The DATABASE_VALUE property returns the value that was originally fetched from the database.  Your comparison would look something like:
    IF ( :YOUR_BLOCK.YOUR_ITEM1-15 != (Get_Item_Property('YOUR_BLOCK.YOUR_ITEM1-15',DATABASE_VALUE)) THEN
      --Column value has changed...If Column 1-15, insert a new record
      --If Column 16, Udpated existing record...
    END IF;
    This is a very simplistic example, but hopefully it will demonstrate what you need to do.  After that, it is simply writting the DML to INSERT or UPDATE the appropriate record.
    Craig...

  • SAP R/3 -- Not getting prompted for password on Heterogeneous Sys. Copy

    Thank you in advance.  I am part of a project team that is testing the potential of moving from UNIX (AIX 5.3) to Linux (RHEL 4 or 5).  We are running SAP R/3 on IBM P570 with DB2 v9.1 and when we run this program:  Installation master sapinst
    We are not getting prompted for the user password but when we run the same cd on a different system we get prompted for the user's password.  Can anyone point me in the right direction on what is wrong?  If you need more info let me know.
    Thanks,
    Erik

    @ Sven & Markus
    Well I have checked all the logs and there are no errors.  What I have found out is that it successfully runs but there is 0 ouput, in essence it isn't exporting any data.
    Here it shows that it completed successfully but in the export directory there isn't data when there should be.
    INFO       2009-10-08 17:34:19.270 [sixxcstepexecute.cpp:544]
    The installation of component Execution of Service SAP ERP 6.0 Support Release 3 > Software Life-Cycle Options > System Copy
    > IBM DB2 for Linux, UNIX, and Windows > Source System Export > Central System > Based on AS ABAP > Database Instance Export has been completed successfully  has been completed successfully.
    See here:
    /dev/exportlv    119.25    119.23    1%       16     1% /export
    Thanks,
    Erik

  • External HDD not getting detected?

    My 250GB Transcend External HDD is not getting detected. Help please. Even yesterday, I had used it successfully. I don't have a clue what happened.
    Last edited by armageddon09 (2009-10-14 12:49:39)

    I have the sam issu with a Coolink USB2.0 external enclosure with a 320GB Hitachi HD.
    The relevant informations are:
    # uname -a
    Linux arch.aneder.hu 2.6.31-ARCH #1 SMP PREEMPT Tue Oct 13 11:33:39 CEST 2009 x86_64 AMD Turion(tm) 64 X2 Mobile Technology TL-60 AuthenticAMD GNU/Linux
    # lsusb
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 001 Device 002: ID 04f2:b028 Chicony Electronics Co., Ltd VGA UVC Webcam
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 002: ID 152d:2329 JMicron Technology Corp. / JMicron USA Technology Corp.
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    after ca. 5 second:
    # lsusb
    Bus 004 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 003 Device 001: ID 1d6b:0001 Linux Foundation 1.1 root hub
    Bus 001 Device 002: ID 04f2:b028 Chicony Electronics Co., Ltd VGA UVC Webcam
    Bus 001 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    Bus 002 Device 001: ID 1d6b:0002 Linux Foundation 2.0 root hub
    # dmesg
    usb 2-3: new high speed USB device using ehci_hcd and address 2
    usb 2-3: configuration #1 chosen from 1 choice
    Initializing USB Mass Storage driver...
    scsi6 : SCSI emulation for USB Mass Storage devices
    usb-storage: device found at 2
    usb-storage: waiting for device to settle before scanning
    usbcore: registered new interface driver usb-storage
    USB Mass Storage support registered.
    scsi 6:0:0:0: Direct-Access Hitachi HTS541616J9SA00 PQ: 0 ANSI: 2 CCS
    sd 6:0:0:0: Attached scsi generic sg2 type 0
    sd 6:0:0:0: [sdb] 312581808 512-byte logical blocks: (160 GB/149 GiB)
    sd 6:0:0:0: [sdb] Write Protect is off
    sd 6:0:0:0: [sdb] Mode Sense: 34 00 00 00
    sd 6:0:0:0: [sdb] Assuming drive cache: write through
    usb-storage: device scan complete
    sd 6:0:0:0: [sdb] Assuming drive cache: write through
    sdb: sdb1
    sd 6:0:0:0: [sdb] Assuming drive cache: write through
    sd 6:0:0:0: [sdb] Attached SCSI disk
    usb 2-3: reset high speed USB device using ehci_hcd and address 2
    usb 2-3: device descriptor read/64, error -71
    usb 2-3: device descriptor read/64, error -71
    usb 2-3: reset high speed USB device using ehci_hcd and address 2
    usb 2-3: device descriptor read/64, error -71
    usb 2-3: device descriptor read/64, error -71
    usb 2-3: reset high speed USB device using ehci_hcd and address 2
    usb 2-3: device not accepting address 2, error -71
    usb 2-3: reset high speed USB device using ehci_hcd and address 2
    usb 2-3: device not accepting address 2, error -71
    sd 6:0:0:0: Device offlined - not ready after error recovery
    usb 2-3: USB disconnect, address 2
    It wasn't any problem with 2.26.29-ARCH kernel.
    Any hints?
    TIA

  • CLASSPATH not getting picked up for MWA

    Hi All,
    Oracle Database 11g R 11.1.0.7.0
    Oracle Applications R 12.1.1
    O/S:Linux
    CLASSPATH not getting picked up for MWA.My classes are lying under $JAVA_TOP/xyz. However my suspicion is that the jvm that deals with MWA is not looking at the classpath above.
    I checked the CLASSPATH from forms using the block $ENVIRONMENT$ and it is looking at:
    /<instance_name>/<instance_name>/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/repository.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/ldapjclnt10.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/debugger.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/ewt3.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/share.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/utj.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/zrclient.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/reports/jlib/rwrun.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/forms/java/frmwebutil.jar
    This clearly does not have $JAVA_TOP/xyz under it.
    Could anyone please let us know what needs to be done and where the classes need to be placed?
    Thanks for your time!
    Regards,

    Hi,
    Did the above steps but still CLASPATH is somehow not getting picked up for MWA.
    $ env|grep CLASSPATH
    REPORTS_CLASSPATH=/<instance_name>/<instance_name>/apps/tech_st/10.1.2/reports/jlib/rwbuilder.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/reports/jlib/rwrun.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/zrclient.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/j2ee/home/oc4j.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/j2ee/home/lib/ojsp.jar
    AF_CLASSPATH=/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:/<instance_name>/<instance_name>/apps/apps_st/comn/java/lib/appsborg2.zip:/<instance_name>/<instance_name>/apps/apps_st/comn/java/classes
    CLASSPATH=/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:/<instance_name>/<instance_name>/apps/apps_st/comn/java/lib/appsborg.zip:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/forms/java:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/forms/java/frmall.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/ewt3.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:/<instance_name>/<instance_name>/apps/apps_st/comn/java/classes:/<instance_name>/<instance_name>/apps/apps_st/comn/java/classes/xxx
    $ echo $CLASSPATH
    /<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/dt.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/lib/tools.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.3/appsutil/jdk/jre/lib/rt.jar:/<instance_name>/<instance_name>/apps/apps_st/comn/java/lib/appsborg.zip:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/forms/java:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/forms/java/frmall.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/jlib/ewt3.jar:/<instance_name>/<instance_name>/apps/tech_st/10.1.2/j2ee/OC4J_BI_Forms/applications/formsapp/formsweb/WEB-INF/lib/frmsrv.jar:/<instance_name>/<instance_name>/apps/apps_st/comn/java/classes:/<instance_name>/<instance_name>/apps/apps_st/comn/java/classes/xxx
    System is expecting file at default $JAVA_TOP/oracle/apps/wms/td/server location
    /<instance_name>/<instance_name>/apps/apps_st/comn/java/classes/oracle/apps/wms/td/server
    $ ls -l XxgilTaskSignonFunction*
    ls: XxgilTaskSignonFunction*: No such file or directory
    where user's have file at $JAVA_TOP/xxx/oracle/apps/wms/td/server location.
    /<instance_name>/<instance_name>/apps/apps_st/comn/java/classes/xxx/oracle/apps/wms/td/server
    $ ls
    XxgilMainPickFListener.class XxgilMainPickPage.class XxgilManifestPickFListener.class XxgilManifestPickPage.class XxgilTaskSignonFunction.class
    Not sure what changes to make to fix this.
    Any suggestions please.
    Thanks,

  • Not Getting SAPKINBC9A upgrade patch for PI_BASIS

    Hi All,
    I am implementing SPS 12 in my ECC 6.0 System. System is on oracle and linux. My PI_BASIS patch is on 2005_1_700 level and i need to upgrade the same on 2006-1_700. So i cannnot import any of 2006 patch before this component
    I am not getting the support pack SAPKINBC9A on OSS. Am i searching right patch or do i need to implement some other patch for this.
    Thanks in Advance
    Thanks,
    Bhanu Pratap Singh

    I got the patch. And i have implemented the same with SAINT.

  • What is needed to get javac compiler?

    I down loaded and installed jdk-6u6-windows-i586-p.exe. This runs files fine if the compiled .class files are there. When I create a nes .java file and try to compile it using javac, I get errors not recognizing javac command. What do I need to be able to get javac? JRE?
    Thanks in advance
    A rookie.

    Punch your error into Google. This is asked a lot and you should get a gazillion hits. At least one will solve your problem.

  • Service not get failover

    DB:11.2.0.3
    OS:Linux 5
    Hi we have created a service oem_repository in such a way that it will start on that database whose role is primary. It was working fine before. But recently when we switchover the database now the service is not getting failover to the new primary . Hence, the application is not able to start on the new primary side.
    Please advise.

    If you created the service with dbms_service, you should do it with srvctl or add it with the same because dbms_service is deprecated for RAC and oracle restart single instances, if you did not do something which you were supposed to do, you will not get the thing which you are supposed to get.. role changes in data guard managed by broker automatically start services appropriate to the datbase role, also the service starts when ROLE matches the current role of database and management policy is set to automatic..what option did you choose for failover type -e ? failover method -m ? you dont need to write a trigger also, all you need to get the failover of clients to a new primary is 4 things
    1) Fast database failover
    2) Restarting services on new primary
    3) make sure you are using broker for this feature
    4) notifying clients that a failure has occured to break out of tcp timeout and redirect to new primary     
    Regards
    Karan

Maybe you are looking for

  • My Macbook Pro will no longer recognize my iPod mini...

    My iPod mini has worked well for over two years now. I haven't connected it since I downloaded the latest iTunes (7.6.2). I also just dropped it on a relatively hard floor (thin carpet, with tile underneath it). When I picked it up and plugged it in,

  • Windows 7 64bit would not install on bootcamp partition

    I have a Windows 7 64bit ISO. I inserted a 8GB usb stick into my New Retina MacBook Pro and ran the Boot Camp to install Windows 7 bootable from the USB stick. It all went fine, booted into Windows install, and when I had to select a partition, I sel

  • Mismatch between inicident classification list and notification

    Hi, we customized incident classification list in order to have three levels. Incident classification field template has this visible effect: When end user receive notification that field reports only last level: How can I get CLASSIFICATION notifica

  • IPhoto 09 to Aperture

    Can anyone tell me how difficult it is to transfer or copy photos from iPhoto 09 to Aperture 3?? I understand it is easy if you are currently running iPhoto 11. Am trying to figure out if I need to upgrade iPhoto even if I have no plans to use it jus

  • Best Car Dock for Touch

    I been thinking about getting the adapter for my car stereo so I can use my head unit to control my iPod. The problem is that it's just a cable with no dock or place to hold the Touch. What is the best car dock for the touch?