CLASSPATH in WindowsXP

ok..im not a fool.. ive been programming in java for a while and I know the basics of setting up a classpath .. that being said.. My current class path under windows XP does not work. I can type SET CLASSPATH and have it display.. so i know its there.. but it does not work. Anyone ever see this?
the goal im trying to achieve is that ive downloaded the javamail api and now i want to use it. So i have created the classpath to refrence the location of the jar files. If there is another way to accomplish this same thing.. that too would work for me.
Thanks,
J.

Well I am having the same strange problem,
and I found weird how Windows XP deals with CLASSPATH.
The problem is that despite I had declared (CLASSPATH, PATH, JAVA_HOME) in my "Enviroment variables" (look below) when I run the command prompt (cmd.exe) it does not run the classes straight, it says:
"Exception in thread "main" java.lang.NoClassDefFoundError:"
Then I need to run with: java -cp %CLASSPATH% ....
and it runs. Shouldn't the system recover the CLASSPATH automatically?
Strange when I go into command prompt and press "set"
it reports the PATH, CLASSPATH just as declared...
Do you think my enviroment variables are too large for the memory?
Another weird thing is that, in my opinion, should be enough to declare
in the classpath only the folders where the .jar libraries were
and not declaring each .jar file...
the JVM should scan them for the libraries automatically, but it does not happens!!
Look how I have to set my PATH and CLASSPATH for it to find them as example:
CLASSPATH=.;C:\j2sdk140\lib\;C:\j2sdk140\lib\tools.jar;C:\j2sdk140\lib\servlet.jar;C:\j2sdk140\lib\jspengine.jar;C:\Program Files\JavaSoft\JRE\1.3.1\lib\ext\QTJava.zip;C:\j2sdk140\lib\xt.jar;C:\j2sdk140\lib\sax.jar;C:\j2sdk140\lib\dom4j.jar;C:\j2sdk140\lib\xt.jar;C:\j2sdk140\lib\xp.jar;C:\j2sdk140\lib\saxon.jar;
PATH=%SystemRoot%\system32;%SystemRoot%;%SystemRoot%\System32\Wbem;c:\j2sdk140\bin;c:\j2sdk140\lib;c:\jswdk101;c:\jswdk101\lib;C:\PROGRA~1\COMMON~1\AUTODE~1;D:\PROGRA~2\BC5\BIN;
Don't you find it strange? Is it my mistake?
What can I do to avoid to type -cp %CLASSPATH% everytime
when running apps from XP command prompt (cmd.exe)??
Many Thanks
Al.

Similar Messages

  • I'm confused about classpath

    Please can anyody explain it to me? I have WindowsXP and in my folder i have some program in jar and classes12.zip (oracle jdc classes for version 8i). I try to load the driver ( Class.forName("oracle.jdbc.driver.OracleDriver") ). When I run it via "java -jar someprogram.jar" it throws ClassNotFoundException, when i try "java -classpath classes12.zip -jar someprogram.jar" it is same. But whe I copy classes12.zip to %JREHOME%/lib/ext/ it works. Can anyody explain to me how this mechanism of classloading (locations) works... in books I cannot find anything :( Thx

    The keyword to google for is Extension Mechanism:
    http://java.sun.com/j2se/1.4.2/docs/guide/extensions/spec.html

  • Problem in installing j2sdk on cygwin-a-top-windowsXP

    Sir/madam,
    I have cygwin installed on windowsXP. I am new to java. I needed j2sdk for a program and I downloaded the Linux .bin file "j2sdk-1_4_2_07-linux-i586-rpm.bin". I tried to use "./ " installation method as suggested on the site, but got the following messeges after agrreeing to licence terms:
    trap: bad signal HUP
    Unpacking..
    Checksumming...
    0
    0
    Extracting...
    ./install.sfx.924 not found
    Done
    But nothing was installed in the folder where I ran this command. Please tell me the solution at the earliest. Whether I downloaded the wrong file for Cygwin-win installation or something else is there. I have even tried the simple bin file but same problem exists.
    Thanking in advance.
    Rohit Thakkar

    Perhaps when flaming about what cygwin is or is not one should consider how it is used. Some folks take their unixy source and compile it, linking with the cygwin dll. But others of us live in a bash or ksh shell in an xterm, all UNDER CYGWIN ON WINDOWS. The problems folks have is that so many proprietary...uh...things, like Javac/java have hard coded methodologies, such as depending on a %PATH% vs. $PATH...Slash vs. backslash. Here's what is probably what should be known by you superdeduper portablility language lovers:
    java -classpath `cygpath -wp $CLASSPATH` [arguments]
    or
    java -classpath $(cygwath -wp $CLASSPATH) GoodByeCruelWorld.class
    Man page for cygpath...
    CYGPATH(1) CYGWIN CYGPATH(1)
    NAME
    cygpath - Convert Unix and Windows format paths, or output system path
    information
    SYNOPSIS
    cygpath (-d|-m|-u|-w|-t TYPE) [-f FILE] [OPTION]... NAME...
    cygpath [-c HANDLE]
    cygpath [-ADHPSW]
    OPTIONS
    Output type options:
    -d, --dos
    print DOS (short) form of NAMEs (C:\PROGRA~1\)
    -m, --mixed
    like --windows, but with regular slashes (C:/WINNT)
    -M, --mode          report  on  mode  of  file  (currently  binmode  or
    textmode)
    -u, --unix
    (default) print Unix form of NAMEs (/cygdrive/c/winnt)
    -w, --windows
    print Windows form of NAMEs (C:\WINNT)
    -t, --type TYPE
    print TYPE form: 'dos', 'mixed', 'unix', or 'windows'
    Path conversion options:
    -a, --absolute
    output absolute path
    -l, --long-name
    print Windows long form of NAMEs (with -w, -m only)
    -p, --path
    NAME is a PATH list (i.e., '/bin:/usr/bin')
    -s, --short-name
    print DOS (short) form of NAMEs (with -w, -m only)
    System information:
    -A, --allusers
    use `All Users' instead of current user for -D, -P
    -D, --desktop
    output `Desktop' directory and exit
    -H, --homeroot
    output `Profiles' directory (home root) and exit
    -P, --smprograms
    output Start Menu `Programs' directory and exit
    -S, --sysdir
    output system directory and exit
    -W, --windir
    output `Windows' directory and exit
    Other options:
    -f, --file FILE
    read FILE for input; use - to read from STDIN
    -o, --option
    read options from FILE as well (for use with --file)
    -c, --close HANDLE
    close HANDLE (for use in captured process)
    -i, --ignore
    ignore missing argument
    -h, --help
    output usage information and exit
    -v, --version
    output version information and exit
    DESCRIPTION
    The cygpath program is a utility that converts Windows native file-
    names to Cygwin POSIX-style pathnames and vice versa. It can be used
    when a Cygwin program needs to pass a file name to a native Windows
    program, or expects to get a file name from a native Windows program.
    Alternatively, cygpath can output information about the location of
    important system directories in either format.
    The -u and -w options indicate whether you want a conversion to UNIX
    (POSIX) format ( -u) or to Windows format ( -w). Use the -d to get
    DOS-style (8.3) file and path names. The -m option will output Win-
    dows-style format but with forward slashes instead of backslashes.
    This option is especially useful in shell scripts, which use back-
    slashes as an escape character.
    In combination with the -w option, you can use the -l and -s
    options to use normal (long) or DOS-style (short) form. The -d option
    is identical to -w and -s together.
    Caveat: The -l option does not work if the check_case parameter of
    CYGWIN is set to strict, since Cygwin is not able to match any Win-
    dows short path in this mode.
    The -p option means that you want to convert a path-style string
    rather than a single filename. For example, the PATH environment vari-
    able is semicolon-delimited in Windows, but colon-delimited in UNIX.
    By giving -p you are instructing cygpath to convert between these
    formats.
    The -i option supresses the print out of the usage message if no file-
    name argument was given. It can be used in make file rules converting
    variables that may be omitted to a proper format. Note that cygpath
    output may contain spaces (C:\Program Files) so should be enclosed in
    quotes.
    cygpath usage
    #!/bin/sh
    if [ "${1}" = "" ];
    then
    XPATH=".";
    else
    XPATH="$(cygpath -w "${1}")";
    fi
    explorer $XPATH &
    The capital options -D, -H, -P, -S, and -W output directories used
    by Windows that are not the same on all systems, for example -S might
    output C:\WINNT\SYSTEM32 or C:\WINDOWS\SYSTEM. The -H shows the Win-
    dows profiles directory that can be used as root of home. The -A
    option forces use of the "All Users" directories instead of the cur-
    rent user for the -D and -P options. On Win9x systems with only a
    single user, -A has no effect; -D and -AD would have the same out-
    put. By default the output is in UNIX (POSIX) format; use the -w or
    -d options to get other formats.
    COPYRIGHT
    Cygwin is Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002
    Red Hat, Inc.
    Cygwin is Free software; for complete licensing information, refer to:
    http://cygwin.com/licensing.html
    MAINTAINER
    This man page was written and is maintained by Joshua Daniel Franklin,
    [email protected]
    SEE ALSO
    The full documentation to the Cygwin Utilities is maintained on the web
    at:
    http://cygwin.com/cygwin-ug-net/using-utils.html
    The website is updated more frequently than the man pages and should be
    considered the authoritative source of information.
    2006 Aug 09 CYGPATH(1)

  • Problem in putting the classpath

    HI!
    I have a serious problem!
    I'm trying to create a connection using the antinav jdbc driver type 3 for WindowsXP and Access 2000.
    I also have installed JDK1.4.2 version and I use JCreatorLE environment.
    I followed the instructions of README.text but nothing works!
    I'll tell you what I did and please reply to me for a solution!
    First of all I run the Setup.exe contained in package AccessOnNT.zip
    After that I run the InstallAtinavService program from the StartMenu and I started the Service.
    I copied JdbcClasses.jar to a directory c:\AtinavDriver\classes\ and after that I went to ControlPanel-->System-->Environment and put as Variable=CLASSPATH and as a value=c:\AtinavDriver\classes\JdbcClasses.jar
    I also put the classpath to JCreatorLE. I went to Configure-->Options-->JDK Profiles and I added the package c:\AtinavDriver\classes\JdbcClasses.jar
    The code I wrote is the following:
    import java.sql.*;
    import java.util.*;
    public class test{
    public static void main(String[] arguments){
    try{
    Class.forName("acs.jdbc.Driver");
    } catch(Exception eDriver) {
    System.out.println("driver " +eDriver);
    String url="jdbc:atinav:localhost:7227:c:\\databases\\my movies.mdb";
    String username="Admin";
    String password=" ";
    try {
    Connection conn=DriverManager.getConnection(url,username,password);
    Statement st=conn.createStatement();
    ResultSet rec=st.executeQuery("SELECT title,category"+"FROM my movies.mdb Contacts"+
    "WHERE"+"ORDER BY title");
    while (rec.next()) {
    System.out.println(rec.getString("title")+"\n"+rec.getString("category"));
    st.close();
    }catch (Exception eConnection) {
    System.out.println("Connection " + eConnection);
    When I execute I get this message :
    driver java.lang.ClassNotFoundException: acs.jdbc.Driver
    Connection java.sql.SQLException: No suitable driver
    Press any key to continue...
    Please tell me what I did wrong as soon as posible!
    Thank you!

    Looks like your JCreator CLASSPATH is okay. If it wasn't, you would have gotten a ClassNotFoundException for the JDBC driver. Looks like you got past that.
    Your exception says "Connection java.sql.SQLException: No suitable driver". That usually means that your database connection URL is incorrect.
    String url="jdbc:atinav:localhost:7227:c:\\databases\\my movies.mdb";This does not look correct at all.
    I'm unfamilar with this Antinav type III driver you're using. Why isn't the JDBC-ODBC bridge driver sufficient? Did you have to pay for this? What made you think it was necessary?
    If you use the bridge driver, you can connect using this code:
    import java.sql.*;
    import java.util.*;
    public class AccessConnection
        public static void main(String [] args)
            try
                AccessConnection ac = new AccessConnection();
                if (args.length > 0)
                    ac.findMoviedByCategory(args[0]);
                else
                    System.out.println("Usage: java AccessConnection <category>");
            catch (Exception e)
                e.printStackTrace();
        public void findAllMoviesByCategory(final String category) throws SQLException, ClassNotFoundException
            Connection conn = null;
            PreparedStatement st = null;
            ResultSet rs = null;
            try
                Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
                String url      = "jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\\databases\\my movies.mdb";
                String username = "admin";
                String password =   "";
                conn        = DriverManager.getConnection(url,username,password);
                String sql  = "SELECT title,category FROM movies WHERE category = ? ORDER BY title";
                st          = conn.prepareStatement(sql);
                st.setString(1, category);
                rs = st.executeQuery();
                while (rs.next())
                    System.out.println(rs.getString("title") + " " + rs.getString("category"));
            finally
                try { if (rs != null) rs.close(); } catch (SQLException ignore) {}
                try { if (st != null) st.close(); } catch (SQLException ignore) {}
                try { if (conn != null) conn.close(); } catch (SQLException ignore) {}
    }There were other problems (e.g., your SQL query wasn't correct - no WHERE value.)

  • What classpath setting is needed for JMF 2.1.1.

    What classpath setting is needed to get JMF2.1.1 working on WindowsXP?
    I want to run some of my JMF code ..but am unable to do so ...please help ...thank you!!

    Hi
    When you install JMF2.1.1, Windows Performance Pack the classpath will be automatically set but i am still giving you the files for which the classpath has to be set.
    JMF21~1.1\LIB\SOUND.JAR;
    JMF21~1.1\LIB\JMF.JAR;
    JMF21~1.1\LIB\CUSTOM.JAR.;
    Try this and it will work.
    Also to check the working there is a class file which performs JMF Diagnostics, if you can give me your contact email, i can send you that file and how to use it.
    Thanks
    Swaraj

  • Classpath error while building the web dynpro project

    Hi
    I have created an application in which on clicking the button on one view , next view opens and data is displayed in the tables. This data i am giving as static, and for that i have created a java file. this java file is located in the subfolder i have created in the package path i have given. While building the application, i get these two errors :
    1) The project was not built due to classpath errors (incomplete or involved in cycle).
    2) Missing required source folder 'BPOutageTable/BPOT'
    BPOutageTable is the application name, and BPOT is the subfolder in which java file is present.
    This application is similar to "The Master/Detail Viewer Application" example in the tutorials.
    Can anybody please help in this?
    Thanks & regards,
    Anupreet

    Hi,
       You have give your classpath in your "lib" folder of the Dynpro application.
       check your lib folder shows exact class path or not.
    if you wish to add any jar files import it to your lib folder so you will not have compilation problem.
    Hope it helps.If it is then close this thread.
    Regards,
    Guru

  • Why WLS do not refresh the class in CLASSPATH?

    as title, and I have set development mode.

    Hi,
    due to classloader hierarchies, classes on the system classpath can not
    be refreshed (HotDeployment). If you want to use HotDeployment, you will
    have to load your application (and classes) through a WAR or EAR file.
    Hope that helps,
    Nils
    airwing wrote:
    >
    as title, and I have set development mode.--
    ============================
    [email protected]

  • Can not find xml file in classpath

    Hi,
    Can someone tell me how I can please or find a xml file in de webdynpro classpath: I have to place a xml and jar files in the classpath. The jar files are found in the application, but I get the following error: com.sap.tc.webdynpro.services.exceptions.WDRuntimeException: Unable to read the License file, please verify that you have SyncExLicense.xml file and it exists in the classpath or under com/yash/license folder.
    How can I check if this file is available in the classpath.
    Richard

    hi,
    have you check that all jar files are present or not.
    because when u import par file in to nwds it wont include jar files in that manully you have to import them.
    jayesh talreja

  • Configuring the PATH for jdk1.3.1_01 in WindowsXP

    I need help in configuring the autoexec.bat file for jdk1.3.1_01 . I am running on WindowsXP. (I used to have win 98 on my old pc that crashed and had jdk1.2.1 and working just fine) Now I have a new pc and have tried the following:
    windir=C:\WINDOWS
    SET winbootdir=C:\WINDOWS
    SET COMSPEC=C:\WINDOWS\COMMAND.COM
    SET PATH=C:\WINDOWS;C:\WINDOWS\COMMAND;C:\jdk1.3.1_01\bin
    SET PROMPT=$p$g
    SET TEMP=C:\WINDOWS\TEMP
    SET TMP=C:\WINDOWS\TEMP
    When I type in C:\path ...it does not show the path I entered. I have no clue what I am doing and the instructions I printed out from sun just do not help me out at all. I really need to get this working so I can continue learning. If anyone can please straighten me out on this I would really appreciate it. Feel free to email me at [email protected]
    Thanks Reba

    Your PATH appears to be correct. However, to verify your PATH you should be able to type the following:
    c:\>echo %PATH%
    This will display your PATH setting on the console. In addition, you can verify that your PATH setting is correct by typing:
    c:\>java -version
    If your path is set correctly, you should see something like:
    java version "1.3.0"
    Java(TM) 2 Runtime Environment, Standard Edition (build 1.3.0-C)
    Java HotSpot(TM) Client VM (build 1.3.0-C, mixed mode)
    If, instead, you get something like:
    "Bad command or file name"
    Then your PATH is not configured correctly.
    Hope this helps.

  • Jar Files in a Jar File - Classpath Error

    Hi,
    I created a jar file that will have all the class files of the application. In the manifest file class path, I have the jar files the application is dependent on. The dependent jar files were kept outside of the application jar file. I was able to execute the main file in the application jar file. Then I created another jar file that holds all the dependent jar files the application is dependent on along with the application jar file into one super jar file. configured the main class attribute of the super jar file to that in the application jar file. When I try to execute it, I'm getting an error saying Class Not Found. Can someone guide me in setting the classpath for this super jar file in its manifest file.
    Presently my manifest file classpath variable in the super jar file is set as App.jar Depend1.jar Depend2.jar
    Thanks,
    E H

    Java's standard class loaders do not support jar files inside of other jar files, and will give the error you see.
    You can write your own customized class loader, use a 3rd-party solution (onejar at sourceforge is one), or remove the interior jars.

  • Difference between path and classpath

    Difference between path and classpath?

    PATH - set of paths there executables will be found.
    CLASSPATH - set of paths and archives there class files will be found.

  • Why getResource of jar in classpath returns null?

    When i iterate through the jars in the classpath and try to turn them into URL's via the getResources(), they all return null. What am I doing wrong?
    (NOTE: It does print out the classpath properly when i print that out)
    String classPath = System.getProperty( "java.class.path" );
    String delim = System.getProperty( "path.separator" );
    String[] locations = classPath.split( delim );
    for ( int i = 0; i < locations.length; i++ )
          /* ** It doesn't work with either of these statments: ** */
          //This one tries the full path (e.g. /home/me/test/some.jar)
          //Enumeration en = getClass().getClassLoader().getResources( locations[ i ].substring( locations[ i ] );
          //This one tries to use just the local name of the jar (e.g. test.jar)
          Enumeration en = getClass().getClassLoader().getResources( locations[ i ].substring( locations[ i ].lastIndexOf( '/' ) + 1 ) );
          //This just prints null
          while (  en.hasMoreElements(); ) System.out.println( en.nextElement() );
    }Edited by: 6tr6tr on Dec 4, 2008 5:46 PM
    Edited by: 6tr6tr on Dec 4, 2008 5:47 PM

    What you are doing doesn't make sense. The resource locations within a JAR file are relative to the package directory structure within the JAR file, not to its own absolute location on the disk. And you seem to be expecting to retrieve a JAR file from within a JAR file. This makes no sense either.

  • LabView6.1(J) screws up WindowsXP(J)'s network property functions.

    Dear experts:
    I've faced some problems with Japanese versions of LV6.1 + WinXP. Would you please be a help?
    After uninstalling Labview6.0.2(J) and upgrading to 6.1(J) on WindowsXP(J), the "properties" feature of every network connections that appear in the "Control Panel"-"network connections" became unfunctionable.
    A dialog saying "An unexpected error has occured" appears, instead of the usual property dialog for the selected network connection.
    Also, some important features around the wireless connection lost their functionality.
    I confirmed this problem on two different machines.
    This problem did not happen with 6.0.2 + WindowsXP(J).
    Such problem was neither seen on Windows 2000(J).
    On installation, I've choosed the "Full installation" option.
    WindowsXP was updated to the newest state (all patches from "Windows Update" were applied) at Aug20.
    No special measuring devices were attached at the time of installation.
    Norton Internet security was installed, but was set to inactive state at the time of installation.
    Is there a way to avoid/fix this problem?
    Regards, Kei.

    Kei,
    Hi! This is Jin Takamura from NI Japan Applications Engineering. In regards to your question, we have tried on our site on several XP machines and was not able to reproduce the problem. I'd say that further investigation is needed in order to tackle the problem, but at the same time, I'd like you to try out the following expedience.
    Through a different case, we had found out on a Win2000 system that when installing NI-488.2 ver.2.0J removed the Network Neighborhood folder on the desktop. We had found a workaround for this case by accessing the following Microsoft's site:
    http://support.microsoft.com/default.aspx?scid=kb;EN-US;q269019
    Since both of these cases are relating to the same "Network settings", I think this might be useful to at least t
    ry out. Please give it a shot.
    Finally, I have had a comment from the other AE regarding this case that "the registry does get overwritten whenever you install any software, and there seems to be some difficulties with these OS's on what registries are being overwritten". NI does take a very cautious look at the registries that our software writes, but at the same time, there are instances where the OS malfunctions as you have encountered. For this case, it seems that Microsoft has a workaround, so this may be our first point in our journey to seek the answer.
    Let me know if you have further detail or updates. Thanks, and good luck.
    Jin
    Applications Engineering
    NI-Japan

  • Classpaths inside of Jar's effect on command line cp

    If I have a jar with Class-Path set in the manifest, will Java ignore the classpath I use at the command line:
    java -cp conf/log4j.properties;lib/a.jar com.some.target.Main
    If "a.jar" has the class path in the manifest, will the cp I try to pass in get ignored? It seems the case.

    When you execute a command like
    java SomeJar.jarthe only place that Java looks for a classpath is in the jar.

  • Not able to load jspx file from the classpath in Integrated OC4J

    Hi,
    I am using integrated OC4J from my jdeveloper to deploy my application as an ear file. It contains one jar file (with ejb deployment desscriptors) and a war file (including Model and Viewcontroller project contents).
    The war file contails a jspx file (say Test.jspx) which contails a link to another jspx file (say Remote.jspx) which resides in its WEB-INF/lib directory.
    When I load Test.jspx and click on the link, it fails to look for the Remote.jspx. It displays a message "OracleJSP error: java.io.FileNotFoundException:" on the web browser.
    From the message written to log file, found that it is actually trying to search for Remote.jspx file in the current context.
    Also tried including the classpath to the jar file containing the Remote.jspx file in orion-web.xml of the web application. using the following:
    <classpath path="file:/xxx/yyy.jar" />
    The issue is still there even after this.
    Can anyone suggest me how to achieve this?
    Thanks,
    Aparna

    this.getCodeBase(), would get RSPL / RLog or whatever you have in your codebase (html parameter of
    the OBJECT/APPLET(:hope not) tag.
    URL u = new URL(this.getCodeBase(), "../something.jpg");
    would get RSPL/something.jpg
    URL u = new URL(this.getCodeBase(), "../VIRA/JPG/00/1.jpg");
    would get RSPL / VIRA / JPG / 00 / 1.jpg
    If you are not sure what your codebase is your can print it out:
    System.out.println(this.getCodeBase().toString());

Maybe you are looking for

  • Can I create a linked server to this ODBC datasource (odbc driver by Progress OpenEdge) on Sql Server 2000 ?

    I installed the Progress OpenEdge ODBC driver for 32 bit database on my win7 workstation -- I used odbcad32.exe located at C:\Windows\SysWOW64 to configure the driver for 32 bit applications -- per the screen Shots here and I am able to connect to th

  • Problem charging 0MATERIAL INFOOBJECT Hierarchy from R/3 into BW

    Hi everyone, I'm having this problem when trying to load data into this infoobject's hierarchy. The problem is that i'm recieving an information IDOC  with status 8. it's message says that the table that the process is trying to get the data from in

  • Oracle Data Intergrator Access

    Hi to all, I'm new in a company and they are actually using Oracle Data Integrator . We had a problem on this one ( the master and work repository were deleted). Pleaaaaaaaaaaaese help me, i need to know if there is any way to know who (IP @) was con

  • Replacing Monitor on ibook

    Hi: A friend of mine dropped her ibook G4 and the monitor stopped working. Took it to the Apple store and they said it was just the monitor. Not wanting to pay the amount that Apple quoted, she purchased an LCD screen on ebay. She talked to the perso

  • Regarding sap script spool no

    Hi All , When i print a SAP script then in spool request it is completed but no print is actually printed from printer . So what's reason for that ???. I have spool no now what i do for printing in my printer????? Give me suggetion Thanks