My compiler wont run

I have been creating programs at school for the last year or so. Now i try to do one at home but i cant even get the compiler to work. i just get an error that says:
--------------------Configuration: j2re1.4.1_01 <Default>--------------------
Invalid command line. Error : Invalid path
Command : "C:\Program Files\Java\j2re1.4.1_01\bin\javac.exe" -classpath "C:\Documents and Settings\Owner\My Documents" -d "C:\Documents and Settings\Owner\My Documents" "C:\Documents and Settings\Owner\My Documents\Account.java"
Directory : C:\Documents and Settings\Owner\My Documents
Process completed.
i dont understand, do i have to save my program to a different file? or change my compiler path?? Please help

I'm not sure i understand what u mean by where i call
javac from. I found the file, in
C:j2sdk1.4.1_01/bin/javac.exe but i cant seem to find
a way to change the path so that my compiler goes from
there.Your compiler, javac.exe, is there.
Are you confusing the compiler with your editor?
What editor are you using?

Similar Messages

  • Re: method computes final price for sales transaction-compiles wont run

    Thank you, I will try this. I must have definitely missed something while reading this chapter!
    Have a good day/evening.
    Gizelle

    How else can a pass a private BoughtList that we can
    see is created in the Cashier client to the Pick
    client to be used to display the orders. You could have the Cashier provide a reference to that ArrayList.
    There is also another class in another package that
    handles some aspects of the orders.I think you should get some OOD lessons, if several classes need the same "private" data, somethings wrong. Maybe the private data should become an object by itself, with all the functions that Cashier and Pick and whatever need it for...

  • Java 1.4.1 will compile clean but it wont run them using windows ME

    haveing trouble setting the path and the class path for windows me
    the code compiles clean but when i go to run it
    its wont run it comes up with a error of no class defination found
    thanks dkunze

    The Windows path is a set of pointers that Windows uses to locate programs that you execute, like javac.exe and java.exe. This setting is explained here:
    http://java.sun.com/j2se/1.4.1/install-windows.html
    Scroll down to: 5. Update the PATH variable
    (you should have already done this as part of the Java installation)
    The CLASSPATH is another set of pointers that is used by Java to find the files that you create and want compiled and/or run. This setting is explained here:
    Setting the Classpath:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/windows/classpath.html
    [NOTE: always start your classpath with ".;" which means the current directory. See my classpath, below]
    How Classes are Found:
    http://java.sun.com/j2se/1.4.1/docs/tooldocs/findingclasses.html
    Examples:
    This is my path
    PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\BATCH;C:\J2SDK1.4.1\BIN;C:\PROGRA~1\UTILIT~1;C:\PROGRA~1\WIN98RK
    This is my classpath
    CLASSPATH=.;C:\mjava;C:\mnrx;C:\NetRexx\lib\NetRexxC.jar;C:\j2sdk1.4.1\lib\tools.jar;C:\NetRexx\NrxRedBk

  • Code compiles but wont run

    Hi,
    My prgram was working fine until I added some database stuff to it, now it will compile but it wont run, heres my relevent code:
    import java.awt.*;
    import javax.swing.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
              /* sets up the transactions window and adds
                   it to the tabbedPane,this is where all the
                   transactions for all the accouns are displayed.
         try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT heading1 FROM demo");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
              }

    thats exactly what I put in... what else can I do so I can see whats going on? Here's the entire code in case you need it:
    import java.awt.*;
    import javax.swing.*;
    import javax.swing.event.*;
    import java.util.*;
    import java.sql.*;
    public class DisplayController extends JFrame 
         public JTextField txtTime, txtInterest, txtAmount;
         public JLabel lblTotal;
         static final String JDBC_DRIVER = "com.mysql.jdbc.Driver";
         static final String DATABASE_URL = "jdbc:mysql://localhost/Money?user=root&password=root";
         private Connection conn;
         private Statement stat;
         public JComboBox accountList;
         Vector vector1 = new Vector();
         ButtonHandler theButtonHandler = new ButtonHandler(txtTime, txtAmount, txtInterest, lblTotal);
       // set up GUI
       public DisplayController()
          super( "Goon Money Manager " );
          JTabbedPane tabbedPane = new JTabbedPane();
    /* sets up the transactions window and adds
         it to the tabbedPane,this is where all the
         transactions for all the accouns are displayed.
          try
                   Class.forName(JDBC_DRIVER);
                   conn = DriverManager.getConnection(DATABASE_URL);
                   stat = conn.createStatement();
                   ResultSet rs = stat.executeQuery("SELECT accountName FROM Money");
                   while(rs.next()) vector1.add(rs.getObject(1));
              catch(SQLException sqlException)
                   System.exit(1);
                   sqlException.printStackTrace();
              catch (ClassNotFoundException classNotFound)
                   System.exit(1);
                   classNotFound.printStackTrace();
          JTextArea mainWindow = new JTextArea(600,300);
              accountList = new JComboBox(vector1);
              JPanel displayTabPanel = new JPanel(new FlowLayout());
              displayTabPanel.setLayout(new FlowLayout() );
              displayTabPanel.add(accountList);
              displayTabPanel.add(new JScrollPane(mainWindow));
              tabbedPane.addTab("Transactions",null,displayTabPanel,"Transaction List");
              accountList.addListSelectionListener(
              new ListSelectionListener()
                   public void valueChanged(ListSelectionEvent event)
                        try
                             ResultSet resultSet = stat.executeQuery("SELECT * FROM demo");
                             StringBuffer results = new StringBuffer();
                             ResultSetMetaData metaData = resultSet.getMetaData();
                             int numberOfColumns = metaData.getColumnCount();
                             for(int i = 1; i<=numberOfColumns; i++)
                             results.append(metaData.getColumnName(i) + "\t");
                             results.append("\n");
                             while (resultSet.next())
                                  for(int i = 1; i<= numberOfColumns; i++)
                                  results.append(resultSet.getObject(i) + "\t");
                                  results.append("\n");
                        catch(SQLException sqlException)
                             JOptionPane.showMessageDialog(null,sqlException.getMessage(),
                             "Database Error1", JOptionPane.ERROR_MESSAGE);
                             System.exit(1);
         );//end anonymous inner class
    /* sets up a savings planner to
         calculate various saving senarios
          JComboBox weekMonthYear;
              JLabel amount = new JLabel("Amount         ");
              JLabel time = new JLabel("Time               ");
              JLabel interestRate = new JLabel("Interest Rate");
              JLabel total = new JLabel("Total");
              JButton calc = new JButton("Calculate");
              JPanel top, panAmount, panTime, panTotal, panCalculate;
              JPanel panInterest = new JPanel();
              JPanel container1 = new JPanel();
              String comboNames[] = {"Weekly","Monthly","Yearly"};
              container1.setLayout(new BoxLayout(container1, BoxLayout.PAGE_AXIS));
              weekMonthYear = new JComboBox(comboNames);
              top = new JPanel();
              top.setLayout(new FlowLayout());
              top.add(weekMonthYear);
              panAmount = new JPanel();
              panAmount.setLayout(new FlowLayout());
              panAmount.add(amount);
              txtAmount = new JTextField(7);
              panAmount.add(txtAmount);
              panTime = new JPanel();
              panTime.setLayout(new FlowLayout());
              panTime.add(time);
              txtTime = new JTextField(7);
              panTime.add(txtTime);
              panInterest.setLayout(new FlowLayout());
              panInterest.add(interestRate);
              txtInterest = new JTextField(7);
              panInterest.add(txtInterest);
              panTotal = new JPanel();
              panTotal.setLayout(new FlowLayout());
              panTotal.add(total);
              lblTotal = new JLabel();
              panTotal.add(lblTotal);
              panCalculate = new JPanel();
              panCalculate.setLayout(new FlowLayout());
              panCalculate.add(calc);
              container1.add(top);
              container1.add(panAmount);
              container1.add(panTime);
              container1.add(panInterest);
              container1.add(panTotal);
              container1.add(panCalculate);
              tabbedPane.addTab("Savings Planner",null,container1,"Test Savings Senerios");
              JPanel budgetTop, budgetBottom, budgetMain;
              JList budgetList;
              JButton addBudget;
              JTextField txtAddBudget;
              budgetMain = new JPanel();
              budgetList = new JList();
              budgetList.setVisibleRowCount(10);
              budgetTop = new JPanel();
              budgetTop.setLayout(new FlowLayout());
              budgetTop.add(budgetList);
              addBudget = new JButton("Add Budgeted Item");
              txtAddBudget = new JTextField(20);
              budgetBottom = new JPanel();
              budgetBottom.setLayout(new FlowLayout());
              budgetBottom.add(addBudget);
              budgetBottom.add(txtAddBudget);
              budgetMain.setLayout(new GridLayout(2,1));
              budgetMain.add(budgetTop);
              budgetMain.add(budgetBottom);
              tabbedPane.addTab("Budget",null,budgetMain,"View and Edit your Budget");
          getContentPane().add( tabbedPane );
          setSize( 700, 400 );
          setVisible( true );
       } // end constructor
       public static void main( String args[] )
          DisplayController app = new DisplayController();
          app.setDefaultCloseOperation( JFrame.EXIT_ON_CLOSE );
    } // end class DisplayController

  • Help with code please, it wont run

    Hi all can anyone tell me why this wont run please, thanks
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    class SwingApplication extends JFrame
    public SwingApplication()
    setDefaultCloseOperation(EXIT_ON_CLOSE);
    setLocation(300,200);
    setSize(700,600);
    JButton answerButton = new JButton("Answer");
    JButton submit = new JButton("Submit");
    JButton button = new JButton("Next Question");
    JButton NextRecord = new JButton("Next Record");
    JTextField answerText = new JTextField("");
    JTextArea QuestionArea = new JTextArea("QuestionArea");
    JPanel pane = new JPanel();
    JLabel label1 = new JLabel ("Answer the following question");
    JLabel mouseLabel = new JLabel();
    JLabel lblpic1 = new JLabel();
         lblpic1.setIcon(new ImageIcon("couple.jpg") );
    submit.setToolTipText("Click to get solution");
    pane.add(label1);
    pane.add(button);
    pane.add(answerText);
    pane.add(answerButton);
    pane.add(submit);
    pane.add(NextRecord);
    getContentPane().add(pane,BorderLayout.SOUTH);
    getContentPane().add(label1,BorderLayout.NORTH);
    getContentPane().add(lblpic1,BorderLayout.CENTER);
    getContentPane().add(QuestionArea, BorderLayout.WEST);
    public void mouseMoved(MouseEvent e)
    mouseLabel.add("x = " + e.getX() + ", y = " + e.getY());
    public static void main(String[] args)
         new SwingApplication().setVisible(true);
    }

    this compiles, anyway:
    import javax.swing.*;
    import java.awt.*;
    import java.awt.event.*;
    public class SwingApplication extends JFrame
       JButton answerButton = new JButton("Answer");
       JButton submit = new JButton("Submit");
       JButton button = new JButton("Next Question");
       JButton NextRecord = new JButton("Next Record");
       JTextField answerText = new JTextField("");
       JTextArea QuestionArea = new JTextArea("QuestionArea");
       JPanel pane = new JPanel();
       JLabel label1 = new JLabel ("Answer the following question");
       JLabel mouseLabel = new JLabel();
       JLabel lblpic1 = new JLabel();
       public SwingApplication()
          setDefaultCloseOperation(EXIT_ON_CLOSE);
          setLocation(300,200);
          setSize(700,600);
          lblpic1.setIcon(new ImageIcon("couple.jpg") );
          submit.setToolTipText("Click to get solution");
          pane.add(label1);
          pane.add(button);
          pane.add(answerText);
          pane.add(answerButton);
          pane.add(submit);
          pane.add(NextRecord);
          getContentPane().add(pane,BorderLayout.SOUTH);
          getContentPane().add(label1,BorderLayout.NORTH);
          getContentPane().add(lblpic1,BorderLayout.CENTER);
          getContentPane().add(QuestionArea, BorderLayout.WEST);
       public void mouseMoved(MouseEvent e)
          mouseLabel.setText("x = " + e.getX() + ", y = " + e.getY());
       public static void main(String[] args)
          new SwingApplication().setVisible(true);
    }Learn about coding standards and styles. Yours is awful.
    %

  • With icloud set up on my 4GS I deleted photos from camera roll. I run an older PPC G5 with Lion which wont run icloud. Can I transfer pics from i stream to camera roll to allow a non-icloud back up to my PPC? Precious photos are close to 30 day cut-off

    With i cloud set up on my 4GS I deleted photos from Camera Roll to make space knowing I would have them backed up on icloud via Photo Stream. I now find that my older PPC G5 with Lion which wont run icloud. I have an ipad3 too, which of course does. I want to copy photos from Photo Stream back to Camera Roll on the phone so that I can back up "old school" to iphoto on my ancient mac. The controls seem to suggest that as an option but when I select multiple photos in Photo Stream and select "Save to Camera Roll" the photos do not appear on Camera Roll as expected. I am running close to the 30 day limit and do not want to lose hundreds of precious photos (or have to email them to myself individually). Can the ipad3 help at all? Any ideas good people? Dan

    If only it were that easy Winston. I connect with a USB cable, iphoto opens and I can only see the photos in Camera Roll, not Photo Stream. There does not seem to be a way of aceessing other files in the phone from iphoto and, as in my initial message, I can not transfer the photos to Camera Roll on the phone. My iphone and ipad software is up to date, but my iphoto is '08 version 7.1.5 with my mac running 10.5.8 which is the best I can do on the PPC without messing everything up.  I dont have the dough for a new mac or I would have gone for that option...am I stuck?

  • Premiere Elements  12 wont run on my laptop

    Hi,
    I have a new laptop and I've just installed  Premiere Elements 12 but it wont run. When I create a new project I see the following message and as you can see there are no clues to what causing the issue. Organiser works fine.
    I've run a windows update, installed the latest graphic and sound drivers, I've reloaded but nothing works.
    OS Name
    Microsoft Windows 7 Enterprise
    Version
    6.1.7601 Service Pack 1 Build 7601
    System Type
    x64-based PC
    Processor
    Intel(R) Core(TM) i5-4300U CPU @ 1.90GHz, 2501 Mhz, 2 Core(s), 4 Logical Processor(s)
    Installed Physical Memory (RAM)
    8.00 GB
    Total Physical Memory
    7.90 GB
    Available Physical Memory
    4.45 GB
    Total Virtual Memory
    15.8 GB
    Available Virtual Memory
    10.6 GB
    Page File Space
    7.90 GB
    Page File
    C:\pagefile.sys
    [Sound Device]
    Item
    Value
    Name
    IDT High Definition Audio CODEC
    Manufacturer
    IDT
    Status
    OK
    Driver
    c:\windows\system32\drivers\stwrt64.sys (6.10.6499.0, 539.00 KB (551,936 bytes), 09/07/2014 13:41)
    [Display]
    Name
    Intel(R) HD Graphics Family
    PNP Device ID
    PCI\VEN_8086&DEV_0A16&SUBSYS_198F103C&REV_0B\3&E89B380&0&10
    Adapter Type
    Intel(R) HD Graphics Family, Intel Corporation compatible
    Adapter Description
    Intel(R) HD Graphics Family
    Adapter RAM
    (2,080,374,784) bytes
    Installed Drivers
    igdumdim64.dll,igd10iumd64.dll,igd10iumd64.dll,igdumdim32,igd10iumd32,igd10iumd32
    Driver Version
    10.18.10.3540
    I have got local Admin rights and more free hard disk space that I know what to do with.
    Thanks for any help you can offer.

    Spurringirl
    Before we go off the deep edge here, perhaps some clarification.
    What is the brand/model/settings for the Canon camera that you are using?
    I think that Hunt may be being jumping ahead here. Let me explain....
    For example, the Canon SX1 lS generates files with the file name starting with MVI_XXXX.mov. These are AVCHD.mov files 1920 x 1080p30 and have no problems in Premiere Elements 12.
    So, I would ask "In your case, is your MVI the file extension or the beginning of the file name?"
    Thanks.
    ATR

  • Oracle 8.1.7 on RH7.0 Installed fine now wont run at all!

    I was able to install Oracle 8.1.7 on RH 7.0 using this fix... http://ftp.valinux.com/pub/support/hjl/glibc/sdk/2.1/README.Oracle8i
    The database initialized correctly and I was able to setup and connect to the database. I even ran a port scanner and checked memmory...the thing was running! Then after the reboot the database wont run at all. When I type ./oracle it trys to load and then shows "Segmentation fault (core dumped)". When I try ./oracle start nothing is echoed. I tried to copy the lib files
    ld-linux.so.2
    libc-2.1.3.so
    libdl.so
    libpthread.so
    to the $ORACLE_HOME/lib/ dir and followed John Smiley's howto but the relink script doesn't work! Even still I think something else is wrong other than the library. Can someone help?

    Nevermind figured it out:) Like duh, I should read the damn Installation file:?

  • How to Compile and run Smart Card Application

    hi
    any one can help me reagrding Javacard API. i download the JavaCard Development Kit from sun and install on my machine but i didn't get all java files and class files of JavaCard API. where i obtain those files so my application get compile and run.
    pls help me i m new in this technology.
    Thanks in Advance.

    My program Test.java in F:\Tomcat5\webapps\Ambika\WEB-INF\Classes. I compiled in the format below. I got like this. What should I do for this? But yesterday I compiled like this only, It compiled and the folder com\cert\Test.class is created. Today again I compiled the pgm after deleting the already created folder 'com\cert', I got the error like this.
    I've given my pgm and the thing I've got when I compiled it.
    Test.java
    package com.cert;
    public class Test
         public void display()
              System.out.println("Hai");
    F:\Tomcat5\webapps\Ambika\WEB-INF\Classes>javac -d F:\Tomcat5\webapps\Ambika\WEB-INF\Classes\Test.java
    javac: no source files
    Usage: javac <options> <source files>
    where possible options include:
    -g Generate all debugging info
    -g:none Generate no debugging info
    -g:{lines,vars,source} Generate only some debugging info
    -nowarn Generate no warnings
    -verbose Output messages about what the compiler is doing
    -deprecation Output source locations where deprecated APIs are u
    sed
    -classpath <path> Specify where to find user class files
    -cp <path> Specify where to find user class files
    -sourcepath <path> Specify where to find input source files
    -bootclasspath <path> Override location of bootstrap class files
    -extdirs <dirs> Override location of installed extensions
    -endorseddirs <dirs> Override location of endorsed standards path
    -d <directory> Specify where to place generated class files
    -encoding <encoding> Specify character encoding used by source files
    -source <release> Provide source compatibility with specified release
    -target <release> Generate class files for specific VM version
    -version Version information
    -help Print a synopsis of standard options
    -X Print a synopsis of nonstandard options
    -J<flag> Pass <flag> directly to the runtime system
    F:\Tomcat5\webapps\Ambika\WEB-INF\Classes>
    Plz help me.
    thanks in advance
    Ambika

  • How to compile and run servlets in Eclipse?

    Does somebody known how can I compile and run servlets in Eclipse IDE? I've added and configured Tomcat's plugin. I've created a project with my example servlets source, and I don't know what farther. How do I have compile it without main method? I must add web.xml file from Tomcat's directory into projects in Eclipse and modify it?
    THX Chudzik

    Try googling for "eclipse servlet", surely someone has written instructions.

  • Photoshop cs 4 wont run after installation on mac book pro

    I recently brought the adobe design premium package with flash, illustrator, indesign, photoshop etc...
    after installation all other application works but just photoshop, it just wont start at all...
    it will pop up on the deck for a second or two and just disappear. the progra wont run at all. other applications like illustrator, indesign etc... all work just fine but just not photoshop... i dont get it what's wrong. no error or anything. just pop up and then disappear.
    the spec of my macbook pro
    mac osx 10.6.2
    2.53 ghz intel core 2 duo
    4 gb 1067 mhz ddr3

    So have you done the basics?
    Toss the PS folder and run the installer again?
    Run the updater from an app you can open? (this will update all)
    etc...

  • When i do initial set up w creative cloud set uo wont run send error message"installer failed to initialize" why and how can i get pass this

    When I do initial set up with creative cloud set up it wont run a send error message "installer failed to initialize" comes up. Why and how can I get passed this?

    Error "Installer Failed to Initialize" | Install desktop application | Windows

  • HT201210 I disconnected my iPhone in the middle of an iTunes update. Now it wont run properly what do I do?

    I disconnected my iPhone in the middle of an iTunes update. Now it wont run properly what do I do?  I was working online and I recieved a pop up from iTunes stating that there was an harwared update for my iPhone. I had it plugged up for a while , long enoung for me to watch a tv show have dinner and come back.  I thought the update was complete and came back to the computer and unplugged it. The next morning I saw a picture of aUSB cord  and the iTunes icon. I have no use of my phone and cannot get access to emails, internet contacts..nothing . Help !

    Well it should NEVER be unplugged when doing something.
    It actually had not installed the software at that stage, it had been copied over to the iPhone, it was being checked and then it would be installed.
    You need to connect your iPhone to the computer at home and hope that you can install the software again and then restore your backup.
    If you install iTunes at work you may be able to Restore the software but you will most likely lose the content on your iPhone as you do not have a backup to restore on that computer, or all your media / apps.

  • ITunes wont run after update today says missing file msvcr80.dll

    iTunes wont run after update today says missing file msvcr80.dll
    tried to reinstall, nothing changed.

    Check out the user tip below.
    https://discussions.apple.com/docs/DOC-6562

  • Java wont run at all on safari.

    Hello there,
    I have an issue, on my home computer java runs seamlessly in safari for windows, but here at my office, it just wont run, i downloaded the Sun JRE and installed with Admin priveleges, althought Safari 4 Win includes Apple JRE anyways, it is enabled in my preferences, but whenever i try to use the file manager in Webmin, or any other java applet on the web it just says "Java is Unavailable (SITE) tried to load java content but java is not installed or unavailable, would you like go to a page where you can download java?" and I did it again thinking maybe it required an earlier version, but still nothing. any help anyone can offer me i would be greatly appreciated
    Cheers,
    P.S. Im running WXP Pro, and JREs 6u1, 6u17
    Message was edited by: tyler.paquette

    Hi,
    I wasn't sure if this thread had already been closed or not, but if its still open, I'd like to chime in with some comments of my own, as well.
    I too have been experiencing very similar issues with my edition of Safari for Windows. I am running Windows Vista Basic, and my version of Safari is 4.0.4.
    I followed the instructions you gave to the person who started this thread, and after restarting Safari, I am still receiving the same error I was receiving before. Here is what the error says:
    _+*"Pogo.com games use the Java plug-in. You either do not have Java installed or you have a version that is incompatible with our games. It does not cost you anything to install Java.*+_
    _+*Do you want to install the Java plug-in now?"*+_
    Well, I know for a fact that I have Java installed on this machine, and it has been enabled for use with Safari.
    Here is the version of Java which I have presently installed on my machine. Aside from v. 17, I also have versions 1-7, which all show enabled as well.
    Name Java Plug-in 1.6.0_17
    Publisher Sun Microsystems, Inc.
    Status Enabled
    File date Sunday, October 11, 2009, 4:17 AM
    Version 1.6.0.17
    I have attempted (more times than I can remember) uninstalling and then re-installing Java on this machine, and I am still receiving this same error.
    Can you please help?
    Thanks!

Maybe you are looking for

  • Erasing Sales data from SAP

    Hello everyone, We are going to give the SAP server to another company from inside our organization and we are 'cleaning' up the data they won't need. For instance, we will use transaction code OBR1 to clean up some credit movements, etc.. I know tha

  • How to find out the batches released from ASCP

    hello gurus, Please let me know how to find out the batches which is released from the ASCP in the OLTP OPM instance, like for the Discrete in the WIP Order in the others tabe we can see that there will be a message like " Job mass loadded on......".

  • JSP page doesnt load for one user on machine1, but does 4 all on same box

    Hi, I have a Citrix application on a box to enable many users to connect remotely to different applications on differnt boxes using the browser on this box. Just like terminal Services or remote desktop I tested 15 users and all of them are able to l

  • Facetime not working

    facetime is not working on my new ipad2. it works on iphone.

  • R/3 call webservice through XI

    We try to call web service from R/3 system through XI, and indeed planning to use ABAP Proxy to pass parameters from R/3 to XI.Web Server have already got its own wsdl for request & response. Do we need any mapping for R/3 parameters to wsdl request