Resource not available error for JSP application

Hi
i have developed J2EE - Web Module DC with JSP pages. I built the .WAR file of this application. Now I created J2ee - Enterprise application DC which references above WAR file and created EAR file. This EAR was then deployed on the server and RC was 0. but when i try to access the JSP page, it is giving me "The Requested Resource is not available".
this error comes only when i deploy the DC thru NWDI. if I deploy it directly from NWDS, i can access the JSP.
Please guide.
Deepak

The Deployment is not successful, the activity associated with the deployment is still in import queue.
Check in http://<hostname>:<port>/TCS/Deployer and check in <namespace>_<trackname>_D and see if the activity is in import queue.
Trigger the deployment manually.
Hope this helps.
Cheers-
Pramod

Similar Messages

  • Requested resource not available error

    I am using Apache Tomcat 4.1.31 and have JDK 1.4.
    The default JSP and servlet examples that come with Tomcat are running,
    but the problem is my own applications are not running. I have kept the application in the webapps directory but when I enter the URL for example for an application named 'myapp' saved in the webapps/myapp directory I get an error page displaying the following error message:
    HTTP Status 404 - myapp/filename type Status report
    message myapp/filename
    description The requested resource (myapp/filename) is not available.
    Apache Tomcat/4.1.27
    the examples folder and myapp folder is in the same directory..
    /usr/local/tomcat/webapps/
    please help me..thanks in advance for your help..

    do you error like this:
    HTTP Status 404 - /myapp
    type Status report
    message /myapp
    description The requested resource (/myapp) is not available.
    Apache Tomcat/5.5.15

  • Resource not available error with tomcat 5.5.26

    hi
    to all forum members,i am a new member of this forum.
    i have a problem with running my servlet on apache tomcat/5.5.26 in window xp enviorenment.
    when i am running my servlet as typing URL http://localhost:8080/mukesh_test/mks , i am gettig error "
    the requested resource(/mukesh_trst/mks) is not available
    my servlet path is webapps/mukesh_test/WEB-INF/classes/mks.class
    my web.xml is this
    <web-app xmlns="http://java.sun.com/xml/ns/j2ee"
    xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
    xsi:schemaLocation="http://java.sun.com/xml/ns/j2ee http://java.sun.com/xml/ns/j2ee/web-app_2_4.xsd"
    version="2.4">
    <display-name>Welcome to Tomcat</display-name>
    <description>
    Welcome to Tomcat
    </description>
    <!-- JSPC servlet mappings start -->
    <servlet>
    <servlet-name>org.apache.jsp.index_jsp</servlet-name>
    <servlet-class>org.apache.jsp.index_jsp</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>org.apache.jsp.index_jsp</servlet-name>
    <url-pattern>/index.jsp</url-pattern>
    </servlet-mapping>
    <!-- JSPC servlet mappings end -->
    <servlet>
    <servlet-name>mks</servlet-name>
    <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    <init-param>
    <param-name>debug</param-name>
    <param-value>0</param-value>
    </init-param>
    <load-on-startup>2</load-on-startup>
    </servlet>
    <servlet-mapping>
    <servlet-name>mks</servlet-name>
    <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>
    </web-app>
    plz help me out guys...

    <servlet>
      <servlet-name>mks</servlet-name>
      <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>mks</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>1) To avoid confusion, I would not use mks for the <servlet-name>. It's a fake name internal to your web.xml file anyway, so be creative and use something like: Flying Tigers.
    2)
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mukesh_test.WEB-INF.classes.mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>The stuff between the <servlet-class> tags is wrong. You need to put the "fully qualified class name of your class" between the <servlet-class> tags. For instance, if your file mks.java (why are you using lower case names for classes?) does not have a package statement at the top of the file, then the fully qualified name of your class is: mks. On the other hand, if mks.java has a package statement at the top of the file like this:
    package com.example;
    then the fully qualified name of your class would be: com.example.mks. In addition, if you had that package statement at the top of mks.java, your .class file would need to be placed in the directory: .../mukesh_test/WEB-INF/classes/com/example/.
    3)
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/mukesh_test/mks</url-pattern>
    </servlet-mapping>The url-pattern is also fake. The whole idea is to hide your actual directory structure from hackers, so specifying your real directory structure there means that the url will also appear on your web page. And if the url appears on your web page, anyone can see it by clicking on View/Source in their browser. Use a fake directory and a fake file name instead:
    <servlet>
      <servlet-name>Flying Tigers</servlet-name>
      <servlet-class>mks</servlet-class>
    </servlet>
    <servlet-mapping>
      <servlet-name>Flying Tigers</servlet-name>
      <url-pattern>/Animals.do</url-pattern>
    </servlet-mapping>That means your html page would call the servlet using the url: Animals.do. The extension .do is a common extension given to fake file names.
    4) There's a forum here specifically for servlets called: Java Servlets.

  • Resource not available error in servlet

    This is my directory structure C:\Program Files\Apache Software Foundation\Tomcat 4.1\webapps\VSG\WEB-INF and here i have in web-inf my web.xml which looks like this
    <web-app>
    <servlet servlet-name>Myservlet</servlet-name>
    <servlet-class>Myservlet<servlet-class>
    </servlet>
    <servlet-mapping >
    <servlet-name>Myservlet</servlet-name>
    <url-pattern>/myservlet</url-pattern>
    </servlet-mapping>
    </web-app>
    while my class file is at this position C:\Program Files\Apache Software Foundation\Tomcat 4.1\webapps\vsg\WEB-INF\classes
    Now i run my servlet in browser as
    http://localhost:8080/vsg/myservlet
    it gives me error that resource is not available.... any idea on this ???

    ganeshmb wrote:
    Package-less classes are no longer supported .. .. when you use Tomcat 4.1 with Java 1.4 or newer due to a security bugfix. Since Tomcat 5.0 it is been "fixed" by an internal workaround.
    Still, putting classes in a package is highly recommended. You can only access classes from another packages when you explicitly import it. As you cannot import from the default package, the classes in the default package remains unaccessible for classes in another packages (like the application server implementation classes).

  • SimpleRepositoryManager resource not available error

    Environment: Netweaver 2004, EP6.40 SP16
    I've deployed the sample SimpleRepositoryManager as is, only changing the OSRoot.  It is working partially - I can traverse folders and list files, but when I click on a document it gives me a 404 error: "The requested resource is not available".  I will appreciate any help
    Thanks

    Hi Leon,
    > EP6.40 SP16
    Have you installed KMC Patch 3 for SP16? If not, this would be the problem... See SAP Note 938124.
    Hope it helps
    Detlev

  • 'YouTube not available' error for my abos

    Hi,
    I have some abos at youtube. Those are created at my PC. When I start the youtube app and change to my abos there, I get the correct list of all of my abos, but when I try to click on one of them, I just get the 'youtube not available' message.
    Like one of twenty abos is working, for the rest I get the error message. On my PC they are working fine.
    Any idea?

    What else can I do?
    Don't use Youtube.
    It is Youtube not iPhone.
    Youtube is very buggy (The most famous bug is the inability to post a text comment).
    These work better.
    http://www.the-top-tens.com/lists/best-alternatives-youtube.asp
    http://www.youtubealternative.com/

  • Database Error: RSR0009: Resource not available for pool. Wait-time expired

    i am occassionally receiving the following error during database connections in my servlet:
    Database Error: RSR0009: Resource not available for pool [webAdvisorTestPool]. Wait-time expired
    i understand that this is a result of a connection leak from improper closure of my Connection object, but i thought that i was properly closing my connection.
    i can get the error if i do the following steps:
    1) access my login page and enter login credentials.
    2) submit the login which then hits the Authentication servlet.
    3) Authentication servlet authenticates and takes me to home page.
    4) hit the back button to get back to the login page.
    5) repeat this process until i hit the Max Pool Size (from web server).
    6) then i get the error message
    here are some details:
    i have an Authentication servlet; here is the pertinent code from that servlet:
    try {     // retrieve the user and add the User object to the session     DAO dao = new DAO();     Person authenticUser = dao.getPerson(userID, password);     session.setAttribute("validUser", authenticUser);     redirectPage = mapping.findForward("success"); }
    i also have a DAO object that handles all of my DB transactions (and you can see from my code above that the Authentication servlet is using that object); here is the pertinant code from that servlet:
    public DAO() {     datasource = "java:comp/env/jdbc/webAdvisorTest"; } public Person getPerson(String userID, String password)     throws ObjectNotFoundException {     // JDBC variables     DataSource ds = null;     Connection conn = null;     PreparedStatement stmt = null;     ResultSet results = null;     // User variables     Person validUser = null;     try     {         // Retrieve the DataSource from JNDI         InitialContext ctx = new InitialContext();         // if this statement fails, NamingException is thrown         ds = (DataSource)ctx.lookup(datasource);         // get DB connection and perform SQL operations         conn = ds.getConnection();         // User variables         String validUserID = null;         String validFName = null;         String validLName = null;         String validEmail = null;         // get DB connection and perform SQL operations         conn = ds.getConnection();         stmt = conn.prepareStatement(PERSON_QUERY);         stmt.setString(1, userID);         stmt.setString(2, password);         results = stmt.executeQuery();         // iterate through the results         if (results.next())         {             validUserID = results.getString("id");             validFName = results.getString("first_name");             validLName = results.getString("last_name");             validUser = new Person(validUserID, validFName, validLName);         }     }     // handle SQL errors     catch(SQLException e)     {         e.printStackTrace(System.err);         throw new RuntimeException("Database Error: " + e.getMessage());     }     // handle JNDI errors     catch(NamingException e)     {         throw new RuntimeException("JNDI Error: " + e.getMessage());     }     // clean up resources     finally     {         doClosure(results, stmt, conn);     }     // if the user was not found, throw ObjectNotFoundException     if(validUser == null)     {         throw new ObjectNotFoundException();     }     return validUser; } protected void doClosure(ResultSet results, PreparedStatement stmt,     Connection conn) {     if (results != null)     {         try { results.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (stmt != null)     {         try { stmt.close(); }         catch (SQLException e) { e.printStackTrace(System.err); }     }     if (conn != null)     {         try         {             System.out.println("R18Resources.conn before close: " + conn);             conn.close();             System.out.println("R18Resources.conn after close: " + conn);             System.out.println("R18Resources.conn is closed? " +                 conn.isClosed());         }         catch (SQLException e)         {             System.out.println("R18Resource conn close error: " +                 e.getMessage());         }     } }
    as you can see, i've added some print statements in my connection closure block. based on my output log, each connection is being properly closed and i am not encountering any errors during that closing block.
    any ideas???
    Message was edited by:
    millerand

    Please try the following code in your doClosure method. Replace your code with the following code.
    public void doClosure(ResultSet pResultSet, Statement pStmt, Connection pConn) throws Exception {
    try {
                   if (pResultSet != null) {
                        pResultSet.close();
                        pResultSet = null;
              } catch (SQLException se) {
              logger.error( se );
              } finally {
                   try {
                        if (pStmt != null) {
                             pStmt.close();
                             pStmt = null;
                   } catch (SQLException se) {
                   logger.error(se);
                   } finally {
                        try {
                             if (pConn != null) {
                                  pConn.close();
                                  pConn = null;
                        } catch (SQLException se) {
                        logger.error(se);
    And let me know if you still face this issue. What is the application server you are using?

  • Error message "iTunes Helper Resources not available" and saving to wrong Drive

    I am trying to upgrade iTunes to 10.7 on my PC but I keep getting the error message "iTunes Helper Resources not available". Diagnostics take me a support page which talks about not being able to see the device in iTunes - but I can see the device without problems.
    I thought I would try reinstalling iTunes from the webpage and it downloaded to my PC fine but when I went to setup, it showed me it is saving to a DVD drive - not my Hard drive. It also won't let me change the location for the file. I have no idea how that's happened as I obviously don't use the DVD drive as a USB (although the PC see's it as one) and I've never chosen it as the location for iTunes in the 7-8 years that I've been using it.
    I then thought I'd try uninstalling it and reinstalling it (to the correct drive) but again, it comes up that the DVD drive is invalid and won't uninstall iTunes.
    So I'm stuck and haven't been able to find anything helpful on the support pages or in iTunes Help.
    Please someone help ...
    Thanks.

    Try the following user tip. (Probably, the section on clearing the installation database might be best given that you've currently got a drive on the problematic letter at the moment.)
    "Invalid drive X:\" install errors

  • DMS BP giving 'requested resource is not available' error

    Hello, smart KM people 
    I'm having a problem with our DMS business package in our EP6 SP16 portal.  I configured the DMS repository manager successfully.. and the Document Explorer workset is functional and I'm able to navigate through the folder structure and see the documents listed that are located in the DMS.  However, the problem comes in when I click on one of the documents to view it.  When I click on the document, I get a "404 - The requested resource is not available" error.
    What would be the cause of this?  Permissions seem to be set correctly... I'm able to navigate through the folder structure and see the list of documents.  If I access the DMS through SAPGUI, I'm able to view the documents without a problem.  Has anyone had this problem in the past, or have any hints about what configuration to troubleshoot?
    Thanks in advance for the help!
    Cheers,
    Fallon

    Hello Samta -
    I followed your steps and am still receiving the same error, so it must not be a problem with the logon ticket.  And when I went to the Component Monitor, the DMS Repository Manager looked just fine.
    Julian, here's the stack trace I found when viewing the source of the 404 error:
            com.sapportals.wcm.protocol.webdav.server.WDServletException: resource not available
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.setContentLocation(WDGetHandler.java:756)
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.internalHandle(WDGetHandler.java:495)
         at com.sapportals.wcm.protocol.webdav.server.WDGetHandler.handle(WDGetHandler.java:253)
         at com.sapportals.wcm.protocol.webdav.server.WDServlet.doGet(WDServlet.java:777)
         at com.sapportals.wcm.protocol.webdav.server.WDServlet.service(WDServlet.java:458)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sapportals.wcm.portal.proxy.PCProxyServlet.service(PCProxyServlet.java:331)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sapportals.portal.prt.core.broker.ServletComponentItem$ServletWrapperComponent.doContent(ServletComponentItem.java:110)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.serviceDeprecated(AbstractPortalComponent.java:209)
         at com.sapportals.portal.prt.component.AbstractPortalComponent.service(AbstractPortalComponent.java:114)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.component.PortalComponentResponse.include(PortalComponentResponse.java:215)
         at com.sapportals.portal.prt.pom.PortalNode.service(PortalNode.java:646)
         at com.sapportals.portal.prt.core.PortalRequestManager.callPortalComponent(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.dispatchRequest(PortalRequestManager.java(Compiled Code))
         at com.sapportals.portal.prt.core.PortalRequestManager.runRequestCycle(PortalRequestManager.java:753)
         at com.sapportals.portal.prt.connection.ServletConnection.handleRequest(ServletConnection.java:240)
         at com.sapportals.portal.prt.dispatcher.Dispatcher$doService.run(Dispatcher.java:545)
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sapportals.portal.prt.dispatcher.Dispatcher.service(Dispatcher.java:405)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java(Compiled Code))
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java(Inlined Compiled Code))
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java(Compiled Code))
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java(Compiled Code))
         at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java(Compiled Code))
         at java.security.AccessController.doPrivileged1(Native Method)
         at java.security.AccessController.doPrivileged(AccessController.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java(Compiled Code))
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java(Compiled Code))
    Any hints from this?  We keep running up against brick walls with this problem.
    Thanks for your help!

  • Code insight is not available when eding jsp by using 10.1.3.36.73

    I use 10.1.3.36.73 jdeveloper on windows to develop web application,
    but code insight is easy not available when editing jsp 2.0.
    I must restart jdeveloper and it still isn't often available.
    ex. in jsp
    ArrayList al = new ArrayList();
    for (Iterator it=al.
    Code insight is not supported for jsp or this is bug?

    Do you still have any code error in your jdev editor? no matter the error is JSP or HTML (it is signed by little red box at the right of the window near scroll bar), code insight sometimes is not available.

  • Sticky resource not available - ACE Module

    hi,
    I am getting the below error on defining stickiness. Please assist.
    switch/Admin(config)# sticky ip-netmask 255.255.255.255 address both ACE-CKH-STICKY
    Error: sticky resource not available
    Thanks.

    Note The syslog message statistics do not include the syslogs generated from the dataplane when you enable the logging of connection setup and teardown syslog messages through the logging fastpath command.
    •regexp-Limits the amount of regular expression memory.
    •sticky-Limits the number of entries in the sticky table. You must configure a minimum value for sticky to allocate resources for sticky entries, because the sticky software receives no resources under the unlimited setting.
    •xlates-Limits the number of network and port address translations entries.
    •minimum number-Specifies the lowest acceptable value. Enter an integer from 0.00 to 100.00 percent (two-decimal places of granularity). The number argument specifies a percentage value for all contexts that are members of the class. When used with the rate keyword, the number argument specifies a value per second.
    •maximum {equal-to-min | unlimited}-Specifies the maximum resource value: either the same as the minimum value or no limit.
    Note The limit that you set for individual resources when you use the limit-resource command overrides the limit that you set for all resources when you use the limit-resource all command.
    If you lower the limits for one context (context A) in order to increase the limits of another context (context B), you may experience a delay in the configuration change because the ACE will not lower the limits of context A until the resources are no longer being used by the context.
    For example, to allocate 20 percent of all resources (minimum and maximum) to all member contexts of the resource class, enter:
    (config-resource)# limit-resource all minimum 20% maximum equal-to-min
    System Resource Maximum Values
    Resource Maximum Value
    Application Acceleration Connections
    10000 connections
    ACL Memory
    34123184 bytes
    Buffer Memory (Syslog)
    1048576 bytes
    Concurrent Connections
    1,000,000 connections (Layer 4),
    100,000 connections (SSL)
    HTTP Compression
    100 megabits per second (Mbps). You can upgrade the ACE maximum HTTP compression rate to 1 Gbps by purchasing a separate license from Cisco Systems. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
    Management Connections
    5000 connections
    Proxy Connections (Layer 7)
    256,000 connections
    Rate
    Bandwidth
    1 gigabits per second (Gbps). You can upgrade the ACE maximum bandwidth to 2 Gbps by purchasing a separate license from Cisco Systems. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
    Connections (any kind)
    120,000 connections per second (Layer 4), 40, 000 connections per second (Layer 7)
    MAC miss
    2000 packets per second
    Management traffic
    125,000,000 bits per second
    SSL connections
    1000 transactions per second (TPS). You can upgrade the SSL bandwidth to a maximum of 7500 TPS with a separate license. For more information, see the Cisco 4700 Series Application Control Engine Appliance Administration Guide.
    syslog
    For traffic going to the ACE (control plane), 3000 messages per second
    For traffic going through the ACE (data plane), 120,000 messages per second
    Regular Expression Memory
    1,048,576 bytes
    Sticky Entries
    800,000 table entries
    Xlates (network and port address translation entries)
    64,000 Xlates (network entries),
    1,000,000 Xlates (port address translation entries)
    Kind Regards,
    Sachin Garg
    Senior Specialist Security
    HCL Comnet Ltd.
    http://www.hclcomnet.co.in
    A-10, Sector 3, Noida- 201301
    INDIA
    Mob: +91-9911757733
    Email: [email protected]

  • Sticky resource not available ?

    I get the following error message then i try to configure sticky on an ACE:
    Error: sticky resource not available
    What is the problem ?
    I have release "c6ace-t1k9-mz.A2_1_2.bin" and sticky should be supported.
    ace-10/RGW_Front_servers(config)# sticky ip-netmask 255.255.255.255 address source RGW-FRONT
    Error: sticky resource not available
    Regards,
    Ola Haglund

    Hi Ola,
    By default sticky resources are not available. You need to go to the Admin context and define a new resource class with some stickiness. See Server LoadBalancing Guide Chapter 5 p8. For example:
    resource-class RC1
    limit-resource all minimum 0.00 maximum unlimited
    limit-resource sticky minimum 10.00 maximum equal-to-min
    Obviously the amount of sticky resource to allocate will depend on your application.
    And then you need to make the context that needs stickiness a member of that resource class.
    For example:
    context Test
    allocate-interface vlan 292-293
    member RC1
    HTH
    Cathy

  • 503 Service not available error while testing web service in SOAMANAGER

    Hi guys,
    We have created a web service in ABAP and want to test it in soamanager.
    When trying to test it using the    "Open Web Service navigator for selected binding" link in web service administration page    we get the error page--
    503 Service not available
    Error: -6
    Version: 7000
    Component: J2EE Server
    Date/Time: Thu Jul 30 10:40:50 2009 
    Module: http_j2ee.c
    Line: 820
    Server: cmphr_HRC_10
    Error Tag:
    Detail: Cannot reach external Application Server on localhost:51000
    we have enabled the wsdl service in SICF and also the APP SOA MANAGER service.
    Can anyone please help.
    Thanks in advance.
    Regards
    Prince

    Hi,
    Detail: Cannot reach external Application Server on localhost:51000
    51000 is the port when the j2ee engine runs. As you dont have java stack am afraid this would not work.
    Regards,
    Vamshi.

  • Product category not available error in SAP CRM 7.0

    hi Gurus,
    while i try creating opportunity transaction, there under product tab when i enter product category(as we maintian product category and not product) and pass on other data and finally press enter ..i get error "product category "3lAA" not available" same for other category. even when i try F4 help only very few categories it shows, not all.
    but then i went back and checked for category and hierarchy in CRM system ..it is showing all there and it is downloaded form R/3 system.
    Can you please tell me what all places i can check..? or what is missing ?
    Thanks,
    gaurav

    Hi,
          I believe all the categories which you are viewing currently in the pop up are from a single hierarchy ( Most probably R3PRODHIER). And the categories which you are looking for is probably from a different hierarchy ( R3MATCLAS, R3PRODSTYP etc.).
    By standard, for sales applications only R3PRODHIER is supported. Please have a look at the IMG path Cross-Application Component->SAP Product-> Product Category->Assign Category Hierarchy to Applications, where you can verify this. If you are so particular about using categories from a different hierarchy you might need to change this setting - I am not sure about other implications that can cause if you change that like downloading from R/3 etc.
    Regards,
    Sreejith

  • "connection not available error code - 4161" what...

    Hi
    I have been trying to upload my workouts to Nokia traker but when I start the application I get the following "connection not available error code - 4161" What does this mean and how do I sort it
    Thanks

    I did a comparison, and your connection string is different
    than mine. Mine does not show any password/userid entries, but
    perhaps that's the difference between using SQL and SQL Express.
    (I'm using SQL.) I am, of course, assuming that you have actual
    values for "servername," "database," etc.
    Given that you can't get in from RSC Explorer, it would seem
    that either you are not using the same userid/password as the one
    you set up for the administrator when you created the DB, or else
    there's something wrong with the DB itself.
    Try creating a test DB. Be careful to specify the same
    administrator name and password as the login you use to get on the
    RSC server. After you've created the test DB, open it up from RSC
    Explorer. If you can do this successfully, then everything ought to
    be working OK. From that point, I'd start over and create a new DB,
    and upload to that one. (In fact, I've actually gone through
    exactly that total exercise before.
    G

Maybe you are looking for

  • Fonts synched from Typekit do not show up in fonts list.

    My Typekit Account is showing two fonts (Muscle Narrow & Wide), amongst others, as being synched. However, the two fonts named are not shown in my Creative Cloud Manager nor in the list of fonts in my Creative Cloud applications. I have not had this

  • MOVED: overclocking problem with P965 NEO

    This topic has been moved to Overclockers & Modding Corner. https://forum-en.msi.com/index.php?topic=108588.0

  • Screen went black on iphone 5

    charged, everything works except screen is black

  • Fonts in Wordprocessor

    Hi, I have decided to give Appleworks a go for my wordprocesing. Up to now I've been using Word on a PC. I have imported all my fonts from my collection on my PC and manage them with Font Book. However I'm having a few issues: 1/ I have 'Show actual

  • Javac command doesn't work

    i have installed jdk1.5.0_04 in /usr/java/ in Linux OS,and set the environment variable in /etc/profile. But when i compile java file, #javac, it output error msg: libgcj-java-placeholder.sh This script is a placeholder for the /usr/bin/java and /usr