Jasper exception? Class not found? But the resources are there!

Hi, thanks for reading. I am building a simple web application. Just servlets and jsp working together to either retrieve or add or edit or delete data in a mysql database.
The problem i have is, some servlets compile and run fine and properly, while others return me the 'jasper error' (see below) and class not found error. The code in these servlets (those that work, and those that don't) are almost identical. I've checked them a couple of times, does not seems like there is any problem with the programming at all.
Please advise. Thanks for reading. If there is any files that you think i should upload, please let me know. Though it says class not found, the resources are there! What could be wrong? From the advice of someone on another thread, i've looked into the web.xml. And it looks like its right.
If anyone is willing to look into the matter for me. I'll upload all the files. (But that feels really rude to just impose on someone like that). Irregardless, thanks, really.
And what about the Jasper Exception? I've googled that already. But nothing that i found has been useful (even the official ones from apache).
HTTP Status 500 -
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
javax.servlet.ServletException: Wrapper cannot find servlet class Maintenance.Support.AddProdLog or a class it depends on
     org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
     org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
     java.lang.Thread.run(Thread.java:619)
root cause
java.lang.ClassNotFoundException: Maintenance.Support.AddProdLog
     org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1352)
     org.apache.catalina.loader.WebappClassLoader.loadClass(WebappClassLoader.java:1198)
     org.apache.catalina.valves.ErrorReportValve.invoke(ErrorReportValve.java:105)
     org.apache.catalina.connector.CoyoteAdapter.service(CoyoteAdapter.java:148)
     org.apache.coyote.http11.Http11Processor.process(Http11Processor.java:869)
     org.apache.coyote.http11.Http11BaseProtocol$Http11ConnectionHandler.processConnection(Http11BaseProtocol.java:664)
     org.apache.tomcat.util.net.PoolTcpEndpoint.processSocket(PoolTcpEndpoint.java:527)
     org.apache.tomcat.util.net.LeaderFollowerWorkerThread.runIt(LeaderFollowerWorkerThread.java:80)
     org.apache.tomcat.util.threads.ThreadPool$ControlRunnable.run(ThreadPool.java:684)
     java.lang.Thread.run(Thread.java:619)
note The full stack trace of the root cause is available in the Apache Tomcat/5.5.17 logs.
type Exception report
message
description The server encountered an internal error () that prevented it from fulfilling this request.
exception
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 55 in the jsp file: /support_editUAT.jsp
Generated servlet error:
C:\Documents and Settings\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\MaintenanceSite\org\apache\jsp\support_005feditUAT_jsp.java:110: cannot find symbol
symbol  : variable branchname
location: class org.apache.jsp.support_005feditUAT_jsp
      out.print( branchname);
                 ^
An error occurred at line: 91 in the jsp file: /support_editUAT.jsp
Generated servlet error:
C:\Documents and Settings\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\MaintenanceSite\org\apache\jsp\support_005feditUAT_jsp.java:148: cannot find symbol
symbol  : variable branchname
location: class org.apache.jsp.support_005feditUAT_jsp
      out.print( branchname);
                 ^
2 errors
     org.apache.jasper.servlet.JspServletWrapper.handleJspException(JspServletWrapper.java:510)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:375)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)
root cause
org.apache.jasper.JasperException: Unable to compile class for JSP
An error occurred at line: 55 in the jsp file: /support_editUAT.jsp
Generated servlet error:
C:\Documents and Settings\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\MaintenanceSite\org\apache\jsp\support_005feditUAT_jsp.java:110: cannot find symbol
symbol  : variable branchname
location: class org.apache.jsp.support_005feditUAT_jsp
      out.print( branchname);
                 ^
An error occurred at line: 91 in the jsp file: /support_editUAT.jsp
Generated servlet error:
C:\Documents and Settings\Administrator\.netbeans\5.5.1\apache-tomcat-5.5.17_base\work\Catalina\localhost\MaintenanceSite\org\apache\jsp\support_005feditUAT_jsp.java:148: cannot find symbol
symbol  : variable branchname
location: class org.apache.jsp.support_005feditUAT_jsp
      out.print( branchname);
                 ^
2 errors
     org.apache.jasper.compiler.DefaultErrorHandler.javacError(DefaultErrorHandler.java:84)
     org.apache.jasper.compiler.ErrorDispatcher.javacError(ErrorDispatcher.java:328)
     org.apache.jasper.compiler.AntCompiler.generateClass(AntCompiler.java:249)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:297)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:276)
     org.apache.jasper.compiler.Compiler.compile(Compiler.java:264)
     org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:563)
     org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:303)
     org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:314)
     org.apache.jasper.servlet.JspServlet.service(JspServlet.java:264)
     javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
     org.netbeans.modules.web.monitor.server.MonitorFilter.doFilter(MonitorFilter.java:368)

Thanks for the reply. I'm sorry for cross-posting. The other thread is here: http://forum.java.sun.com/post!reply.jspa?messageID=9920352#
sunish_jose suggested that:
The servlet classes u mentioned in web.xml should be in WEB-INF/classes. U can add in many ways, you can manually copy and paste(But u have to follow the package structure) or You can mention the class folderd in your editor to
WEB-INF/classes so that the editor will automaticall generate the class file into that folder with the folder structure. By looking at the error.txt what I can understand is Exceptions are thrown due to the above issue and more than that there are some compilation errors in support_getContact.jsp.
And i'm looking into that right now.

Similar Messages

  • Java.rmi.UnmarshalException: skeleton class not found but required for clie

    Hello everyone,
    I am new to RMI and getting a strange exception. I am using Java 1.5.0_07 both on client and server. They are running on the same machine, the rmi registry is started inside the server application.
    I am wondering why java complains about skeletons, I thought they are automatically created when using java 5.0?
    Please have a look at the stacktrace below.
    Thank you for your help.
    Best Regards
    Patric
    java.rmi.ServerException: RemoteException occurred in server thread; nested exception is:
         java.rmi.UnmarshalException: error unmarshalling call header; nested exception is:
         java.rmi.UnmarshalException: skeleton class not found but required for client version
         sun.rmi.server.UnicastServerRef.dispatch(UnicastServerRef.java:325)
         sun.rmi.transport.Transport$1.run(Transport.java:153)
         java.security.AccessController.doPrivileged(Native Method)
         sun.rmi.transport.Transport.serviceCall(Transport.java:149)
         sun.rmi.transport.tcp.TCPTransport.handleMessages(TCPTransport.java:466)
         sun.rmi.transport.tcp.TCPTransport$ConnectionHandler.run(TCPTransport.java:707)
         java.lang.Thread.run(Thread.java:595)
         sun.rmi.transport.StreamRemoteCall.exceptionReceivedFromServer(StreamRemoteCall.java:247)
         sun.rmi.transport.StreamRemoteCall.executeCall(StreamRemoteCall.java:223)
         sun.rmi.server.UnicastRef.invoke(UnicastRef.java:343)
         sun.rmi.registry.RegistryImpl_Stub.lookup(Unknown Source)
         java.rmi.Naming.lookup(Naming.java:84)
         org.apache.jsp.index_jsp._jspService(index_jsp.java:58)
         org.apache.jasper.runtime.HttpJspBase.service(HttpJspBase.java:94)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)
         org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:324)
         org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:292)
         org.apache.jasper.servlet.JspServlet.service(JspServlet.java:236)
         javax.servlet.http.HttpServlet.service(HttpServlet.java:802)

    The full class path information that I can gather is as follows (some of the library path locations could be suspect...):
    Class path: /edge/node3/hotfix::/edge/node3/current/lib/JMdsApi.jar:/edge/node3/current/lib/MemoryProfilingAgent.jar:/edge/node3/current/lib/T2common-2.6.0-SNAPSHOT.3200.jar:/edge/node3/current/lib/T2scripting-jython.jar:/edge/node3/current/lib/activation.jar:/edge/node3/current/lib/alib.jar:/edge/node3/current/lib/alibom.jar:/edge/node3/current/lib/ant.jar:/edge/node3/current/lib/authapi.jar:/edge/node3/current/lib/bbdlapi.jar:/edge/node3/current/lib/bcpg-jdk15-136.jar:/edge/node3/current/lib/bcprov-jdk15-136.jar:/edge/node3/current/lib/c3p0-0.9.1.2.jar:/edge/node3/current/lib/castor-1.1-codegen-anttask.jar:/edge/node3/current/lib/castor-1.1-codegen.jar:/edge/node3/current/lib/castor-1.1-xml.jar:/edge/node3/current/lib/castor-1.1.jar:/edge/node3/current/lib/colt-1.2.0.jar:/edge/node3/current/lib/common-annotations.jar:/edge/node3/current/lib/commons-beanutils.jar:/edge/node3/current/lib/commons-codec-1.3.jar:/edge/node3/current/lib/commons-collections-3.2.1.jar:/edge/node3/current/lib/commons-jexl-1.1.jar:/edge/node3/current/lib/commons-lang-2.3.jar:/edge/node3/current/lib/commons-logging-1.1.1.jar:/edge/node3/current/lib/commons-net-1.4.1.jar:/edge/node3/current/lib/dsn.jar:/edge/node3/current/lib/eagleapi.jar:/edge/node3/current/lib/ezmorph-1.0.3.jar:/edge/node3/current/lib/f2-loader-1.8.jar:/edge/node3/current/lib/fasttrade-boviewer-1.0.1.jar:/edge/node3/current/lib/hsqldb.jar:/edge/node3/current/lib/icu4j-3.4.4.jar:/edge/node3/current/lib/ivy.jar:/edge/node3/current/lib/janino.jar:/edge/node3/current/lib/janus-sdk-1.7.0.0.jar:/edge/node3/current/lib/jasypt-1.4.1.jar:/edge/node3/current/lib/javolution.jar:/edge/node3/current/lib/jcalendar-1.3.2.jar:/edge/node3/current/lib/jcl-over-slf4j-1.5.6.jar:/edge/node3/current/lib/jcommon-1.0.9.jar:/edge/node3/current/lib/jconn2.jar:/edge/node3/current/lib/jconn3-6.05-b26214.jar:/edge/node3/current/lib/jdom.jar:/edge/node3/current/lib/jfreechart-1.0.5.jar:/edge/node3/current/lib/jgroups-all.jar:/edge/node3/current/lib/jline.jar:/edge/node3/current/lib/jmkv123p1.jar:/edge/node3/current/lib/jna.jar:/edge/node3/current/lib/joda-time-1.5.2.jar:/edge/node3/current/lib/jscience.jar:/edge/node3/current/lib/json-lib-2.2.1-jdk15.jar:/edge/node3/current/lib/jul-to-slf4j-1.5.6.jar:/edge/node3/current/lib/junit.jar:/edge/node3/current/lib/jython.jar:/edge/node3/current/lib/log4j-1.2.15.jar:/edge/node3/current/lib/log4j-over-slf4j-1.5.6.jar:/edge/node3/current/lib/loggablePreparedStatement-1.6.jar:/edge/node3/current/lib/looks-2.1.4.jar:/edge/node3/current/lib/mailapi.jar:/edge/node3/current/lib/model-12021.jar:/edge/node3/current/lib/mysql-connector-java-5.1.7-bin.jar:/edge/node3/current/lib/opencsv-1.8.jar:/edge/node3/current/lib/rfa.jar:/edge/node3/current/lib/rspcore.jar:/edge/node3/current/lib/slf4j-api-1.5.6.jar:/edge/node3/current/lib/slf4j-log4j12-1.5.6.jar:/edge/node3/current/lib/smtp.jar:/edge/node3/current/lib/smtphandler-0.6.jar:/edge/node3/current/lib/spring-2.5.2.jar:/edge/node3/current/lib/statsvn.jar:/edge/node3/current/lib/swingx-0.9.3.jar:/edge/node3/current/lib/t2-12021.jar:/edge/node3/current/lib/testng-5.9-jdk15.jar:/edge/node3/current/lib/tibmsg.jar:/edge/node3/current/lib/tibrvj.jar:/edge/node3/current/lib/trove.jar:/edge/node3/current/lib/velocity-tools.jar:/edge/node3/current/lib/velocity.jar:/edge/node3/current/lib/xalan.jar:/edge/node3/current/lib/xerces.jar:/edge/node3/current/lib/patng/activeio-core-3.0.0-incubator.jar:/edge/node3/current/lib/patng/activemq-core-4.1.1.jar:/edge/node3/current/lib/patng/avalon-framework-4.1.3.jar:/edge/node3/current/lib/patng/backport-util-concurrent-2.2.jar:/edge/node3/current/lib/patng/binding-1.4.0.jar:/edge/node3/current/lib/patng/cglib-nodep-2.1_3.jar:/edge/node3/current/lib/patng/common-1.30.jar:/edge/node3/current/lib/patng/commons-cli-1.0.jar:/edge/node3/current/lib/patng/commons-configuration-1.2.jar:/edge/node3/current/lib/patng/commons-discovery-0.2.jar:/edge/node3/current/lib/patng/commons-math-1.1.jar:/edge/node3/current/lib/patng/concurrent-1.3.4.jar:/edge/node3/current/lib/patng/geronimo-j2ee-management_1.0_spec-1.0.jar:/edge/node3/current/lib/patng/geronimo-jms_1.1_spec-1.0.jar:/edge/node3/current/lib/patng/logkit-1.0.1.jar:/edge/node3/current/lib/patng/mina-core-1.0.1.jar:/edge/node3/current/lib/patng/mina-filter-ssl-1.0.1.jar:/edge/node3/current/lib/patng/mina-java5-1.0.1.jar:/edge/node3/current/lib/patng/mx4j-remote-3.0.1.jar:/edge/node3/current/lib/patng/mx4j-tools-3.0.1.jar:/edge/node3/current/lib/patng/org.apache.felix.framework-1.0.0.jar:/edge/node3/current/lib/patng/org.osgi.core-1.0.0.jar:/edge/node3/current/lib/patng/pat-dt-common-1.18.jar:/edge/node3/current/lib/patng/pat-sdt-1.18.jar:/edge/node3/current/lib/patng/patNg-api-1.27.1.jar:/edge/node3/current/lib/patng/patNg-server-aoc-1.21.jar:/edge/node3/current/lib/patng/patNg-server-common-1.21.jar:/edge/node3/current/lib/patng/patNg-server-session-manager-1.21.jar:/edge/node3/current/lib/patng/patNg-utils-1.27.1.jar:/edge/node3/current/lib/patng/qpid-broker-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-client-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-common-2.2.2.0.jar:/edge/node3/current/lib/patng/qpid-mina-core-2.2.2.0.jar:/edge/node3/current/lib/patng/rsee-2.11.jar:/edge/node3/current/lib/patng/servlet-api-2.3.jar:/edge/node3/current/lib/patng/silk-1.3.jar:/edge/node3/current/lib/patng/slf4j-api-1.4.0.jar:/edge/node3/current/lib/patng/slf4j-log4j12-1.4.0.jar:/edge/node3/current/lib/patng/validation-1.2.0.jar
    Boot class path: /apps/jdk/1.6.0_13/linux/jre/lib/resources.jar:/apps/jdk/1.6.0_13/linux/jre/lib/rt.jar:/apps/jdk/1.6.0_13/linux/jre/lib/sunrsasign.jar:/apps/jdk/1.6.0_13/linux/jre/lib/jsse.jar:/apps/jdk/1.6.0_13/linux/jre/lib/jce.jar:/apps/jdk/1.6.0_13/linux/jre/lib/charsets.jar:/apps/jdk/1.6.0_13/linux/jre/classes:/tmp/yjp200811122006.jar
    Library path: /apps/jdk/1.6.0_13/linux/jre/lib/i386/server:/apps/jdk/1.6.0_13/linux/jre/lib/i386:/apps/jdk/1.6.0_13/linux/jre/../lib/i386::/edge/node3/current/lib:/home/eqdev/eqedgeuat/yourkit_7_5_11/yjp-7.5.11/bin/linux-x86-32:/edge/node3/current/lib:/home/eqdev/eqedgeuat/yourkit_7_5_11/yjp-7.5.11/bin/linux-x86-32:/usr/java/packages/lib/i386:/lib:/usr/lib

  • Errors with CF 8.0.1 hotfix 3 and hotfix 4, "Object Instantiation Exception.Class not found"

    We need to get our servers up to date with the latest ColdFusion hotfixes in order to pass our security scans and policies. We have been following the Adobe instructions for installing the hotfixes, but we’re getting the same errors each time. The CF 8 hotfix 2 works fine, but once we install hotfix 3 and/or hotfix 4, we get the following errors:
    "Object Instantiation Exception.Class not found: coldfusion.security.ESAPIUtils The specific sequence of files included or processed is: C:\ColdFusion\wwwroot\WEB-INF\exception\java\lang\Exception.cfm, line: 12 "
    coldfusion.runtime.java.JavaObjectClassNotFoundException:
    We have dozens of servers running Windows XP, Netscape Enterprise Server 6.1 (I  know, don’t laugh), ColdFusion 8,0,1,195765, and Java Version 1.6.0_04. Just about  the only good thing about running XP on our servers is that it matches  our development boxes, so we have almost mirrored environments for dev,  test, and production. We do NOT have the CF install with the J2EE configuration.
    The crazy thing is, on tech note 51180 (http://kb2.adobe.com/cps/511/cpsid_51180.html), it says that the fix for bug # 71787 (Fix for "Object Instantiation Exception" thrown when calling a Java object constructor or method with a null argument under JDK 1.6.) was added in cumulative hotfix 2. However we don’t see this problem until we go to hotfix 3 (or 4).
    I’ve also been reading that other people had this same problem, and that the CF 8 hotfix 3 was not compatible with certain versions of JDK, then when you read the Adobe site for CF 8.0.1 hotfix 3, it says “Added the updated cumulative hotfix to make it compatible with jdk 1.4.x, 1.5.x and 1.6.x.”, so that makes me think that Adobe was supposed to have fixed this CF 8.0.1 hotfix 3 JDK incompatability issue - but unfortunately it's still not working for us. We have followed the instructions for removing the jar files and starting/restarting the CF server as directed, we’ve tried this 5-6 times, and still no luck.
    Recommendations? Seems like this is a ColdFusion bug to me – one that says is fixed on the Adobe site, but is not fixed in our environment. Please advise, thanks.

    For what it's worth, we had an MXUnit user describe a similar, though not identical, problem after installing the latest hotfixes. In his case, he's getting "NoSuchMethodExceptions".

  • Hi, my MacBook keyboard letters are not responding but the numbers are

    Hello, the keyboard letters on my MacBook are not responding but the numbers are. Any help much appreciated

    Thank you, I did that and restarted. Now gives me a / instead of a ?
    Any thoughts? Thanks again
    Ed

  • Having synced my ipod, there are certain artists missing from the list on the ipod, but the tracks are there under the songs list.  Any reason why and how do i correct this.  Thanks.

    Having synced my ipod, there are certain artists missing from the list on the ipod, but the tracks are there under the songs list.  Any reason why and how do i correct this.  Thanks.

    We'll assume for now, that all the songs and albums in your iTunes Library are correctly labelled (dangerous assumption, by the way!), and that a Compilation album is one with songs by different artists. Unfortunately, the music industry (bless their little cotton socks!) often mark an album by one artist, that has a collection of their songs from old albums, as a compilation! iTunes doesn't think it is!
    The missing artists will be those who only appear on Compilation albums. For example, if you have one song by Fleetwood Mac in your Library, and it's on a multi-artist Compilation album, then Fleetwood Mac will not be listed in the Artists menu. But, if you then import a Fleetwood Mac album (or even a Fleetwood Mac single) into your Library, then not only will Fleetwood Mac appear under Artists, but the song by them in the Compilation album will also be listed.
    One way to sort this out is to remove the Compilations option from the Main Menu and the Music Menu on your iPod. To do this, go to Settings/Main Menu/Compilations and press the Select (centre) button to turn off the tick. Then repeat this in the Settings/Music Menu/Compilations.
    You should now find the missing artists listed in the Artists menu.
    By the way, I now routinely check all albums I import from CD into my iTunes Library. Before I start the import procedure, I make sure that Compilation CD is turned on (highlight the album in the import window and right-click/Compilation CD) if it really is a multi-artist CD - and off if it's a single artist CD. Once imported, I manually change the album info to; (highlight album and select ) File/Get Info/Info/Album Artist has "Various Artists" in the box. Make sure it's the Album Artist box, not the Artist box.

  • Loadjava - exception class not found

    Hi, I'm running Oracle 8.1.2.0 on HP UX and I've started to look at Java and Oracle. I created a sample class and when I try to load it in the database it gives me the following error:
    Class not found: oracle.aurora.server.tools.LoadJavaMain
    I've searched thru Technet and it says something about a aurora_tools.jar in lib dir, but I've searched my entire hd and didn't find it.
    Is there anything wrong with my instalation, or my version doesn't have that file?
    I have 8.1.6 in CD if I install it, it solves my problem? Please help...
    Eduardo

    <BLOCKQUOTE><font size="1" face="Verdana, Arial">quote:</font><HR>Originally posted by Oracle Support Analyst (Ravi):
    How come you are using 8.1.2.0 verion. This is a beta version. Please try with 8.1.5 or 8.1.6.
    Using 8.1.6/8.1.5 you should be able to use Java Stored Procedures.<HR></BLOCKQUOTE>i install oracle 8.1.5 and run initjvm.sql to install java classes, but oracle.aurora.server.tools.loadjavamain class is not exist. can you solve my problem?
    null

  • Reg: Exception (ALT NOT FOUND) in the fun.module CS_BOM_EXPL_MAT_V2

    Hi Experts,
    I called the fun. module CS_BOM_EXPL_MAT_V2 in SE38.
    While executing the function module, it is giving output for some types of material like (TP0331-).
    But it is raising the exception ALT NOT FOUND for some types of material like 'TB1000-'
    But for all types of material, it is giving correct output in SE37.
    I gave the input parameter's,
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
    EXPORTING
       CAPID                       = 'PP01'
       DATUV                       = sy-datum
       EMENG                       = '1'
       MKTLS                       = 'X'
       MEHRS                       = 'X'
       MTNRV                       = 'TB1000-'
       STLAL                       = '1'
       STLAN                       = '1'
       SVWVO                       = 'X'
       WERKS                       = '0010'
       VRSVO                       = 'X'
      TABLES
        stb                         = it_stpox
    EXCEPTIONS
       ALT_NOT_FOUND               = 1
       CALL_INVALID                = 2
       MATERIAL_NOT_FOUND          = 3
       MISSING_AUTHORIZATION       = 4
       NO_BOM_FOUND                = 5
       NO_PLANT_DATA               = 6
       NO_SUITABLE_BOM_FOUND       = 7
       CONVERSION_ERROR            = 8
       OTHERS                      = 9
    Can you please suggest me, why for the particular types of material, these function module is executing correctly in SE37 not in SE38.
    Whether i need to give some more inputs in SE38.
    Please guide me,
    Thanks in advance,
    Vijay.R

    hi,
    i have done the code like this,
    CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
    EXPORTING
    CAPID = 'PP01'
    DATUV = sy-datum
    EMENG = '1'
    MKTLS = 'X'
    MEHRS = 'X'
    MTNRV = 'TB1000-'
    STLAL = '01'  """" i have changed the value as 01 instead of 1.
    STLAN = '1'
    SVWVO = 'X'
    WERKS = '0010'
    VRSVO = 'X'
    TABLES
    stb = it_stpox
    EXCEPTIONS
    ALT_NOT_FOUND = 1
    CALL_INVALID = 2
    MATERIAL_NOT_FOUND = 3
    MISSING_AUTHORIZATION = 4
    NO_BOM_FOUND = 5
    NO_PLANT_DATA = 6
    NO_SUITABLE_BOM_FOUND = 7
    CONVERSION_ERROR = 8
    OTHERS = 9
    it is a small problem..
    whether u need any more information..
    please let me know.. still it is not working means,
    paste your code.. i will check
    regards
    vijay

  • The VCC property was not found on the resource

    Hi all,
    I used a subversion to download/upload process in one of my application.
    At a point it give an error like this.
    svn: The VCC property was not found on the resourceCan someone tell me what that error means, and how to fix it.
    Thanks in advance,
    itsjava :)

    There are several resources available if you do a Google (or other favorite search engine) search on this such as [this one|http://www.svnforum.org/2017/viewtopic.php?t=6271&highlight=vcc+property+resource] and [this one|http://svn.haxx.se/dev/archive-2003-10/0674.shtml] and [this one|http://readlist.com/lists/subversion.tigris.org/users/2/11220.html] (that talks about this usually being a web server configuration error). I recommend specifically focusing on Subversion forums such as the [General Setup & Troubleshooting forum|http://www.svnforum.org/2017/viewforum.php?f=16] at [SVNForum.org|http://www.svnforum.org/].

  • Class not found on the first run

    The piece of code following is in my servlet. The first time (after start
              WL server) I access the servlet, WL complains It can't find
              ArgosClientBeans.ArgosSession and gives me a "500" error in the browser.
              But if I open up the a new browser and re-run it, it would see and create
              the bean fine.
              What's going on? Am I missing something?
              Thanks,
              Tin
              try {
              argosSessionBean = (ArgosClientBeans.ArgosSession)
              Beans.instantiate(getClass().getClassLoader(),"ArgosClientBeans.ArgosSession
              } catch (Exception e) {
              argosSessionBean = null;
              throw new weblogic.utils.NestedRuntimeException("cannot instantiate
              'ArgosClientBeans.ArgosSession'", e);
              

    The problem was indeed related to the failure to load the plugin.
    I renamed the package containing my test using the refactor command.
    But the refactor did not update the plugin.xml file. This was prevent
    the test plugin to load and generating the exception.
    The fact that the refactoring does not update the plugin.xml is already
    entered as a bug:
    https://bugs.eclipse.org/bugs/show_bug.cgi?id=72296
    Thanks Chris for the suggestion.
    Best regards,
    Cedric
    Chris Senior wrote:
    > I have had the same kind of exception being raised (ClassNotFoundEx)
    > where the reported class is my TestCase.
    > However after stepping through lots of complex Eclipse class loader code
    > I found that the plugin it was dependent on (the one who's functions I
    > was testing) was not loading correctly. The plugin class
    > (BundleActivator) start() method was crashing with a dumb NullPointerEx.
    >
    > What I found irritating was that this exception (the real one) was never
    > reported!? Rather Eclipse failed to start my plugin and then failed to
    > load any classes from that plugin.
    > This caused my test case not to be loaded because it's dependent classes
    > were not correctly loaded.
    >
    > Normally stuff like this would get written to the log files. However in
    > headless JUnit test mode I can't find the logs (the workspace mentioned
    > in the launch does not exist). Are there any? If so where?
    >
    > Maybe you have a similar problem?
    >
    > - Chris
    >

  • Dependent class not found in the classpath

    Hi, Recently I was implemented a Class that implement "CallbackHandler".
    This class help me to build a security header for a SOAP Message, but when I execute this one in a OC4J, I obtain the next error:
    oracle.classloader.util.AnnotatedClassNotFoundException:
    Dependent class: oracle.security.wss.WSSecurity
    Loader: oracle.ws.security:10.1.3
    Code-Source: /E:/jdeveloper/webservices/lib/wssecurity.jar
    Configuration: <code-source> (ignore manifest Class-Path) in META-INF/boot.xml in E:\jdeveloper\j2ee\home\oc4j.jar
    This load was initiated at oracle.ws.security:10.1.3 using the Class.forName() method.
    The missing class is available from the following locations:
    I'm using JDeveloper 10.1.3.4. Any help?
    Edited by: user5540744 on 04-jul-2011 4:53

    Here is the work around:
    If you add the generated xxx_wsdl.jar to your buildpath in the ant build file, this warning goes away.

  • My Ipod touch recently fell into water, but once dried, it worked with seemingly little to no problems. Today, after working for at least an hour, the screen froze and is now not working, but the sounds are still functioning.

    I accidentally dropped my Ipod into the lake, at the beach yesterday, but i caught it early and it wasn't too soaked... i wiped it off for the most part, and most of the buttons and the screen worked fine! i was shocked, and there were a few glitches with the camera and the slide button on the lock screen, but otherwise it was greatly intact! so i gave it a rest, put it in my purse, and picked it up fifteen minutes later, and it was working 100% normally again! when i got home a few hours later, i put it in rice for a few hours, taking it out every once and a while to check my notifications... it still seemed to be working perfectly, so i just set it down out of the rice, assuming the moisture was gone. this morning, again, everything was working normally, no glitches, UNTIL, i opened my instagram app, and the screen froze, and it seemed like it had two separate screens, and i held the Sleep button down until the screen went black... then i tried turning it back on, etc. and it still didn't work, and so i plugged it into the computer, holding down the sleep and home buttons, and itunes identified it as in recovery mode, and started updating. i tried again to press the sleep and home butttons, maybe pressing only the home button, because I heard the Siri noise, as well as the charging sound, but the screen was still black.... i checked my iTunes, and lo and behold, it had identified my iPod, and synced it to the computer, as if it were normally functioning. However, the screen is still not working, and Siri is not working either. The sounds may be the only thing that's functioning. Should i send it in?

    - Restore from backup. See:                                 
    iOS: How to back up                             
    - Restore to factory settings/new iOS device.
    If still problem, make an appointment at the Genius Bar of an Apple store since it appears you have a hardware problem.
      Apple Retail Store - Genius Bar              
    Apple will exchange your iPod for a refurbished one for $199 for 64 GB 4G, $99 for the other 4Gs, $99 for the 16 GB 5G and $149 for the other 5Gs. They do not fix yours.
      Apple - iPod Repair price
    Sometime it takes a little while for the water to damage the iPod.

  • Visual Studio 2003 - Empty subreport, but the rows are there....

    I'm building a report and I have two subreports. The first subreport has single datafields and works perfectly, the second one has a table to show multiple line with articles data.
    The dataset beeing used has the data. I confirmed it by debugging the application. The strange behaviour is that if I have three articles, the subreport has three lines and so on, but no data is showing.
    No, the fields are not set as invisible or what so ever. Any Idea?

    Amazing, I thought a long time searching what is the difference between the first subreport and the second one.
    The first one only has a text object and a formula field. The second one has data fields.
    I created one formula field for each datafield that I wanted and used them in the subreport, and now, magic, all data shows up!!!!!
    I know I shouldn't use this way, but if somebody has any idea of the origin of the problem I will be really, really, really happy about changing it.
    Best regards,
    Olivier Voutat
    Edited by: Olivier Voutat on Jan 16, 2009 1:44 PM

  • Class not found but exists in classpath..

    Hi all! I'm using the Eclipse IDE and i put a jar file in my build path.. I import a class from this file with no problem but when i run my application, it tells me that:
    java.lang.NoClassDefFoundError
    where is the problem....??
    Thanx in advance..

    By double-clicking the resulting JAR file?No.. i put the jar file in my build path, i import the class from this jar file with no problem, i run my application, but it can't find the class from the jar file that i've imported..

  • My watched and downloaded tv shows still appear on my iPad, not on my computer.  how do i delete them from the iPad.  They don't take up storage, but the titles are there and they have links to the cloud

    How can I delete watched and unwanted TV shows from my ipad.  They don't show on my mac, they don't show up in the useage tab.  But when I click on videos, the tv shows show up with links to the cloud.  How can I delete?

    The question is not only how to to hide them, but also how to mark them as watched!

  • JSF resource bundle class not found,

    When I put the resource bundle class in session-ejb.jar, it works fine. But when I moved the resource bundle class into web module web.war, JBoss AS complained: the resource bundle class were not found.
    In the web module, I put the bundle class under:
    /WEB-INFO/classes
    war file:
    /WEB-INF/classes/resource/Messages
    JSP file:
    <f:loadBundle basename="resource.Messages" var="bundle"/>
    Thanks for help.

    has anyone made the following example work in JBOSS?
    http://www.coreservlets.com/JSF-Tutorial/code/jsf-messages.zip
    I got error message:
    resouce bundle not found.
    The resource properties files are under WEB-INF/classes.
    Where to put resource bundle files?
    Can any one please shed some light? Thank you very much.

Maybe you are looking for

  • How can I have Mail on my MacBook Pro show only notes and not the iCloud inbox in the Mailboxes column?

    I use iCloud to sync my notes between my computer and ios devices, but I don't want to see the inbox in mail.  Is there any way to hide or remove the icloud inbox in Mail? Thanks.

  • Star Schema doubts?

    Exepert's, I have cube ZSAL_ANA .I am having Two dimensions 1.Sales and 2.Customer. Sales Region contains Sales Region  and Sales Location.Customer Dimension contains Customer Type and Customer location.Ok Now Correct me if I am wrong? In Fact table

  • No Administrator Account (Windows 8)

    I was helping my mom with her laptop because she kept complaining that she had to put a password in every time she logged on. There is only one user on her laptop. I looked online how to remove the log in password and it said to open Run and type net

  • Canoscan LIDE 100 platen not moving

    My canon LIDE 100 scanner was working perfectly, but after a recent move, stopped. The scanner is present in About my Mac, and responds to calls but makes a short grinding noise and then a driver communication error pops up. I tried the scanner under

  • Can't place order for iBoo

    I upgraded to Leopard and using iLife '08; I get an error message trying to order an iBook - it takes a lot of effort to put these books together and I have never had a problem in the past. I have tried several times -using the current 10% discount,