SAP PI 7.1 Mapping resource not found

Hello Gururs,
We have been experiencing the issue on our QA SAP PI system after upgrade to 7.1 eHP1.
We just imported new set of components under new SWCV and namespace. While trying to process the message, getting below error. I already checked all system accounts and every thing looks Good. Performed full SXI_ CACHE and CPACACHE.  Also performed the steps given in note 764176. Any suggestions would be appreciated
Runtime error
Unable to find resource 46c20a71-248e-11dc-c4be-dd500a115642 in the following software component versions: http://sap.com/xi/SNC/GlobalZ_OrdersOrders05_ReplenishmentOrderNotification_0~-1
Unable to find resource Z_OrdersOrders05_ReplenishmentOrderNotification_02.xsl in the following software component versions: 46c20a71-248e-11dc-c4be-dd500a115642 Thrown:

I tried this option still same error.
I think this is what happening from error message.
1. ABAP runtime is able to identify and locate Operations mapping.
2. ABAP determined it as xsl mapping so made call to Java runtime for execution.
3. Java runtime is not able to locate the xsl map in runtime cache.
4. I can see this map in SXI_CACHE
5. These set of newly deployed maps are not there in cache monitoring from RWB which shows java runtime doesn't have these objects in cache.
Again appreciate if you have any other ideas.

Similar Messages

  • Interface test fails during mapping - Resource not found

    Just upgraded from 7.1 SP8 to EHP1 SP3. Testing of the existing interfaces has been successful. I have created a very simple HTTP -> RFC Sync interface to complete the testing. When testing it in the integration builder I get the following message.
    +Unable to find resource 5e0ce8a0-b99a-11de-9eb4-c576ac120353 in the following software component versions: urn:xxxxx.com:PI71com/sap/xi/tf/_MM_ONE_.class-1+
    I've checked cache status overview in the ID and ESB and the updates were successful. I've checked the cache (SXI_CACHE) and the objects are there - correct object ID's. I;ve also performed a full cache refresh and that works. I then recreated the objects under a new SWCV and Namespace and get the same problem. It looks like the mapping object cannot be found.  Checks of SDN and SAP help have mentioned a cache problem but we've ruled that out.
    Any help you can offer would be appreciated.

    I've just noticed something unusual about the entry in SXI_CACHE. Under mapping the type of mapping appears as 'JAVA_JDK'. When you click on the drop down box next to the entry the possible types of mappings are...
    R3_ABAP
    JAVA
    Xi_TRAFO
    XSLT
    RS_XSLT
    I'm not sure if this is an issue or not. I've checked SDN and SAP SUPPORT and I can't find anything.

  • While running servlets getting errors 404 or 505 resource not found

    Hi all,
    I'm novice to J2EE.
    I've encountered a problem while accessing the deployed module in weblogic 8.1 server.
    I'm sure that the webapplication module is deployed as i saw my module in administration console & also the status said that it is deployed.
    when i access my web application by specifying the proper server and port no and context root it is showing
    either 505 - resource not found error(http://localhost:7001/Suresh-2/Suresh) or 404 - not found error.( http://localhost:7001/Suresh-2/Suresh)
    Now let me elaborate what i've done till now.
    My webapplication folder structure is : C:\bea\user_projects\domains\mydomain\applications\Suresh\WEB-INF\classes\Sai\ServExamp.class
    My servlet is ServExamp.java
    I created a folder called "Suresh".  In that folder created another folder called "WEB-INF".  In WEB-INF created a folder called "Classes".
    Since my servlet is in package "Sai", the .class file reside in \Suresh\WEB-INF\Classes\Sai\ServExamp.class
    The source code is :
    package Sai;
    import javax.servlet.;*
    import javax.servlet.http.;*
    import java.io.;*
    public class ServExamp extends HttpServlet
    public void doPost(HttpServletRequest req,HttpServletResponse res)throws IOException
    PrintWriter out=res.getWriter();
    java.util.Date today=new java.util.Date();
    out.println("<html>"+"<body>"+
    *"<h1 align=center>HF\'s Chapter1 Servlet </h1>"*
    +"<br>"+today+"</body>"+"</html>");
    Now i'm almost done creating a web application.  Next, I constructed a simple web.xml descriptor that gives a web friendly name for my servlet, and points to the servlet. I constructed  web.xml descriptor file in the WEB-INF folder (C:\bea\user_projects\domains\mydomain\applications\Suresh\WEB-INF\).
    The web.xml file source is :
    *<!DOCTYPE web-app*
    PUBLIC "-//Sun Microsystems, Inc.//DTD Web Application 2.3//EN"
    *"http://java.sun.com/dtd/web-app_2_3.dtd">*
    *<web-app>*
    *<display-name>Hello World Web Application</display-name>*
    *<description>Test Servlet</description>*
    *<servlet>*
    *<servlet-name>ServExamp</servlet-name>*
    *<servlet-class>Sai.ServExamp</servlet-class>*
    *</servlet>*
    *<servlet-mapping>*
    *<servlet-name>ServExamp</servlet-name>*
    *<url-pattern>/Suresh</url-pattern>*
    *</servlet-mapping>*
    *</web-app>*
    Now I have told Weblogic that the URI /Suresh corresponds to my servlet "Sai.ServExamp".
    My Web Application is ready to be deployed at this point. I logged onto Weblogic's admin console,
    *1) clicked on deployments, then navigated to "Web Application Modules" .*
    *2) Clicked "Deploy new Web Application Module"*
    *3) Navigated to the location of your web application folder (Suresh). There was a radio button next to it indicating that I can select that folder as a valid web application.*
    *4) I Clicked that radio button and clicked "Target Module".*
    *5) It informed that my web application "Suresh" will be deployed to myServer.It asked a name for my web application deployment. By default it was "Suresh"*
    I clicked Deploy.
    *6) After deployment, my web application "Suresh" appeared in the "Web Application Modules" tree on the left.*
    I Clicked on "Suresh"( my web application) then clicked the testing tab, then clicked the link shown there(http://localhost:7001/Suresh-2).
    It was not showing  my servlet (showed a 403 error)
    Error - 403
    This status code is commonly used when the server does not wish to reveal exactly why the request has been refused, or when no other response is applicable.
    I think so it came b'coz I don't have an index.html or index.jsp page.
    *7)Instead,I added my servlet on to the URL it provided.*
    http://localhost:7001/Suresh-2/Suresh
    It is showing these error code: Http: 505 resource not allowed
    The page cannot be displayed
    The page you are looking for cannot be displayed because the address is incorrect.
    Please try the following:
    If you typed the page address in the Address bar, check that it is entered correctly.
    Open the localhost:7001 home page and then look for links to the information you want.
    Click  Search to look for information on the Internet.
    when i just type : http://localhost:7001/   -> Error 404 not found error
    it's showing
    Error 404--Not Found
    From RFC 2068 Hypertext Transfer Protocol -- HTTP/1.1:
    *10.4.5 404 Not Found*
    The server has not found anything matching the Request-URI. No indication is given of whether the condition is temporary or permanent.
    If the server does not wish to make this information available to the client, the status code 403 (Forbidden) can be used instead. The 410 (Gone) status code SHOULD be used if the server knows, through some internally configurable mechanism, that an old resource is permanently unavailable and has no forwarding address.
    I want to run my web application & any help would be appreciated.
    Thanks in advance.
    with regards,
    S.SayeeNarayanan.
    Note: I even deployed my war file, which i got by execution of (jar cv0f webapp.war . ) command from the root directory of my web application i.e. Suresh
    Then executed my webapplication it is showing
    error-505 resource not allowed.
    --------------------------------------------------------------------------------------------

    nammathamizhan wrote:
    Hi all,
    I'm novice to J2EE.
    You're also a novice to this forum.
    First, turn off the bold font.
    Second, post your question once and only once to a single forum. You only waited an hour before reposting your question. That's not the way this works. Asking your question multiple times will not increase the likelihood that you''ll get an answer. As a matter of fact, you're guaranteed nothing at all. Give it your best effort and hope for success. This isn't a paid consultancy - we're volunteers.
    I've encountered a problem while accessing the deployed module in weblogic 8.1 server.
    I'm sure that the webapplication module is deployed as i saw my module in administration console & also the status said that it is deployed.
    when i access my web application by specifying the proper server and port no and context root it is showing
    either 505 - resource not found error(http://localhost:7001/Suresh-2/Suresh) or 404 - not found error.( http://localhost:7001/Suresh-2/Suresh)
    If you're correct, and it's deployed, that would suggest that the URL you gave is incorrect.
    >
    Now let me elaborate what i've done till now.Good info - almost too much.
    %

  • BI IP - Upload flat file - "requested resource not found" when typing URL

    Hi,
    we tried to implement the "upload flat file" functionality (blog Marc Bernard). We followed the different steps and included the bug fixes as well. When we want to launch the URL in an internet explorer session we get message "requested resource not found".
    Hereby the URL used:
    http://sapscmbid.vpkgrp.int:50100/sap/bc/webdynpro/sap/zrsplf_file_upload?sap-language=EN&planning_sequence=FILE_SEQ&show_messages=WEXA
    Do you know what we did wrong? We would like to finish this by the end of this week ...
    kind regards
    D

    Hi,
    when we use URL http://sapscmbid.vpkgrp.int:50100/ we see the screens of the portal so I presume this server and port is accurate (we use the same link for the planning modeler and this works fine).
    The SICF service zrsplf_file_upload has been imported and has status active. Should we check other things as well?
    D

  • Error: Resource not found in FilterOptionCollection. Please help

    Hi Experts,
    I'm currently implementing Approve Requests at a customer.
    I've got the service TASKPROCESSING pointing to ERP_WF. I can see the catalog SAP_FND_TC_TX1 and I've created a tile, pointing to my scenario as defined in the netweaver gateway.
    When I go to launchpad the reference error message is displayed.
    Details on the word file.
    Error Resource not found Filter Option Collection - Approve Requests.docx - Google Drive
    Thanks in advance!

    Thank you Andre,
    We finally solved it. I post the correction for future reference.
    The problem was solved by changing the configuration on the assignment of the data provider to the data model.
    ZTM_TGW_SVC_MODEL_0001_BE software version was DEFAULT, when it should've been /IWPGW/BWF.
    The route in SPRO is: SAP Netweaver->Gateway>OData Channel>Administration>General Settings> Assign Data Provider to Data Model.

  • 404 Resource Not Found In UWL for Display Request in Travel Management

    Hi Team,
    Issue regarding Uwl in Travel Management.In Mss inbox when approver clicks on display form for travel request its throwing error like 404 resource not found.
    i have check all uwl iview properties like list actions to be excluded and Xml code etc.
    Regards,
    Venkat.

    Hi Venkat
    I hope you are well and many thanks for using the discussion forums .
    In relation to the scenario that you have described you mentioned that:
    Once a user (via the MSS Inbox) clicks on the display form for travel request you are encountering a 404 resource not found error.
    Ok so the first means of analysis is to ensure the UWL Destination Service Configuration is setup and maintained accordingly. Kindly review and consult the documentation below carefully.
    SAP Note: 1133821 - UWL Destination Service configuration
    After ensuring the destination(s) are setup accordingly and if the issue persists kindly restart the UWL service and clear the UWL cache to see if that resolves the issue.
    In the destination configuration kindly ensure there are no discrepancies or misconfigurations.
    Now have you navigated to your current connector setup and viewed the status columns to see if there are any exceptions appearing?
    Lastly kindly check if the URL being called (at the request page) is correct.
    Kindly update me as per your findings.
    Kind Regards & All The Best
    Troy Cronin - Enterprise Portal Support Engineer

  • Getting 104 resource not found error, when deploying my first servlet

    Hi,
    I am new to servlets, and after doing little home work i have created a small servlet but i am i getting http 104 resource not found error.
    steps i followed:
    1) installed pre-configured version of tomcat from http://www.coreservlets.com/Apache-Tomcat-Tutorial/.
    2)created new directory called ch1 under webapps, created WEB-INF under ch1
    3)included web.xml, classes in WEB-INF directly
    <?xml version="1.0" encoding="ISO-8859-1"?>
    <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_5.xsd"
    version="2.5">
    <servlet>
    <servlet-name>Ch1servlet</servlet-name>
    <servlet-class>Ch1servlet</servlet-class>
    </servlet>
    <servlet-mapping>
    <servlet-name>Ch1servlet</servlet-name>
    <url-pattern>/servlet</url-pattern>
    </servlet-mapping>
    </web-app>
    4) included .class file under classes folder from following Ch1servlet.java file, I have set class path to point to servlet-api.jar file and jsp-api.jar and compliled following java file to get .class file which is included in classes folder
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.io.*;
    public class Ch1servlet extends HttpServlet
    public void doGet(HttpServletRequest request,HttpServletResponse response)throws IOException
    response.setContentType("text/html");
    PrintWriter out=response.getWriter();
    java.util.Date today=new java.util.Date();
    out.println("<html>"+
    "<body>"+
    "<h1 align=center>HF\'s Chapter1 Servlet</h1>"
    +"<br>" + today + "</body>" + "</html>");
    5) I am started tomcat server and when typed http://localhost( changed port from 8080 to 80), its giving tomcat page and not showing any error
    6) When i typed http://localhost/ch1/servlet/Ch1servlet, its giving http 404 error
    type Status report
    message: /servlet/Ch1servlet
    description: The requested resource (/servlet/Ch1servlet) is not available.
    7) i have uncommented(it comes preconfigured) the invoker part in web.xml.
    I have tried including servlet in an package and without package
    I am not sure if its problem with server configuration orelse problem with my file placing.
    Please let me know if you have any idea what went wrong.

    I found this, unable to copy it, so i am typing it:
    Feb11,2008 11:55:57 AM org.apache.catalina.core.AprLifecycleLIstener init
    INFO: The Apache Tomcat Native Library which allows optimal performance in production environemnt was not found on the java.library.path:c:\program Files\Java\jdk1.6.0\bin;....
    last line says
    org.apache.cataline.startup.catalina start
    INfo: Server startup in 657ms

  • ADAggregationManager::GetNestedParents() -- Mapped group not found in graph

    Hi,
    I am new to Crystal Reoprts.
    We are getting errors in the same package. Users are getting authenticated OK, but we are unable to retrieve their privileges, Crystal Reports (V2.5) should be displayed based on AD groups they belong to.
    CMS logs show,
    [Wed May 28 15:20:45 2014]
    2288
    5256
    assert failure: (Y:\authentication\WindowsADAuthen\ADAggregationManager.cpp:1143). (0 : WINAD: ADAggregationManager::GetNestedParents() -- Mapped group not found in graph!).
    [Wed May 28 15:20:45 2014]
    2288
    5216
    assert failure: (Y:\authentication\WindowsADAuthen\ADAggregationManager.cpp:1143). (0 : WINAD: ADAggregationManager::GetNestedParents() -- Mapped group not found in graph!).
    [Wed May 28 15:20:45 2014]
    2288
    5256
    assert failure: (Y:\authentication\WindowsADAuthen\ADAggregationManager.cpp:1143). (0 : WINAD: ADAggregationManager::GetNestedParents() -- Mapped group not found in graph!).
    Any help really appreciated.

    That helps a bit more. CE 10 is end of life a long time ago.
    You can get the SDK help files for current versions from here:
    help.sap.com
    I don't believe the API's have changed for this part so use the SDK helpfile for more info.
    You may be able to find examples here:
    Crystal Reports for .NET SDK Samples - Business Intelligence (BusinessObjects) - SCN Wiki
    Don

  • Labview: resource not found ; Specifically a VI located in my LV 8.2 Project I am trying to download to my FP-2000 and run.

    Hi, 
    I am fairly new to the LV Project method of building executable files and embeded applications. 
    I have been using LV 7.2 for the last few years and finally switched over to 8.2 this last summer.
    My problem is that I have an embedded application that I need to troubleshoot, but every time I try and run it from my desktop, it hits me with one of these messages:
    Deploying MPPT-Testbed  (successfully deployed target settings)
    Deploying ErrorConvert.vi  (already deployed)
    Deploying FP Close(IO).vi
    Failed to download FP Close(IO).vi
    LabVIEW:  Resource not found.
    LabVIEW:  Resource not found.
    The FP Close(IO).vi is the latest issue, I have had other files that have failed to load as well.  I have attempted to make a common folder for all of my shared VIs, I have 6 FP-2000 controllers. 
    Any ideas? 
    I run LV 8.2 w/RT on my desktop, my FP-2000 is running LV 8.2, FP Drivers 5.2.0 and FP VI Manager 4.1.0
    -Bill

    Hi Bill,
    Since you produced code in a previous version of LabVIEW, and therefore previous FieldPoint driver version, you will need to revamp your code a little to be able to use it in LV 8.2 with FieldPoint 5.0. I'm assuming that the FP Close.vi is not available in the palette that is not available in LabVIEW 8.2. This is expected, as FieldPoint 5.0 utilizes different VIs than previous versions. Accordingly, you do not need to use the FP Open or FP Close VIs, as they are not available in this driver version. However, you only need to use a Browse I/O Point and either a FP Read, FP Write or FP Read/Write. Generally, a quick modification of your code will take care of this problem. Let us know if you need help with this; a screenshot of your code might be helpful. Thanks!
    Amanda Howard
    Americas Services and Support Recruiting Manager
    National Instruments

  • Error Message: Resource Not Found, Unable to Load SyncUICoreLocalized.dll

    I'm having trouble syncing my iPhone 4. I get an error message that says: Resource Not Found, Unable to load SyncUICoreLocalized.dll.  This is preventing me from transferring my information from my old phone to my new iPhone 5c.  Can anyone help me??? A simple restart of the computer did not solve the problem.
    Thanks :-)

    I found a thread of people having the same problem, and a suggestion by stanalet solved my problem! Thanks stanalet!

  • Can't Download from iTunes Store - "Requested Resource Not Found" Error

    I am trying to download a couple of (free) apps for my iPhone and iTunes is throwing up an error saying "The requested resource was not found. There was an error in the iTunes Store. Please try again later." Is anyone else having this issue at the moment? Is the store down?

    It has been a few hours now. Same problem. "Resource Not Found" error when trying to download apps from the iTunes store. Anyone else having this problem? Anyone NOT having this problem? Anyone?

  • Having an issue with itunes purchase, message shows "could not complete itunes store request, requested resource not found." My account has been debited for the price of the download, but I dont have the download.

    Need some help, I was downloading an album when the message "could not complete itunes store request, requested resource not found."  "Error in the itunes store please try again later." My account has been deducted for the amount of the album, but I dont have it downloaded on my computer. Please help!!! Thank you!!!

    Does the purchases show in your Purchased list?
    Downloading past purchases from the App Store, iBookstore, and iTunes Store
    Have you looked at the previous discussions listed on the right side of this page under the heading "More Like This"? Ones with a green checkmark are solved.
    Next contact iTunes by:
    Contact iTunes

  • Resource not found or internal server error when trying to edit location

    Hi all,
    ACS is appliance and version 5.2.0.26.7
    The problem is after creating location under all locations.
    When trying to click on the location name to edit location profile, there is an error page that shows
    "ACS:Resource not found or internal server error"
    But if click on the radio button and press the edit button at the bottom of page.
    There is no problem.
    Any on has the same problem?
    Detail step and screen capture in attached file.

    I can't find any CDETS that exactly match what you describe but up to patch 10 of 5.2 the follwoing CDETS related to NDGs are included:
    CSCtx83260
    NDG locations not showing up on GUI
    CSCtu02752
    ACS 5.2 patch 8 cannot display long lists of NDGs
    CSCtu04594
    ACS 5.2.0.26.7 - only 50 NDGs shown on GUI with more than 100 configured

  • Labview: resource not found error code 24 when building executable using 8.20 and dsc module

    I am trying to build an executable and I keep getting and error and cannot seem to figure out what is wring.  The whole error is "LabVIEW: resource not found.  An error occured loading "interface 3.vi"  Labview load error code 24:  this vi cannot be loaded because it is broken and has no block diagram."
    I am using LV 8.20 and DSC 8.2.  I am trying to create an executable that has the web server running for using remote panels, i have netowrk published shared variables, connecting to a fieldpoint unit, and I am using the NI system tray icon vis to load the program to the system tray.
    I have my shared variable library added as a support file, as well as the lvdsc.ini, and the tray icon files.  I have sleected "Enable Enhacned DSC run time support" in the app builder, did not remove any type def,etc.
    I cannot get the .exe to run on my development machine or another machine, I get the same error.  I tried creating an installer that installed the 8.2 runtime, dsc,fieldpoint, variable engine and manager and MAX.
    I could not find anything in the help files on the dsc, maybe someone else has some hints.  thanks
    Kenny

    Hi Kenny,
    I hope you are doing well today! What is interface 3.vi? Is it possible for you to post your project over here? Also, I would recommend creating a simple DSC application; and would like you to build it. Do you still get errors?
    Adnan Zafar
    Certified LabVIEW Architect
    Coleman Technologies

  • Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found

    Hi I'm having problems deploying my EJBs using the Pointbase Database.
    This is what I'm working with:
    standardjbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
       <defaults>
          <datasource>java:/PointbaseDS</datasource>
          <datasource-mapping>Pointbase</datasource-mapping>pointbase-ds.xml:
    <datasources>
         <local-tx-datasource>
              <jndi-name>PointbaseDS</jndi-name>
    <connection-url>jdbc:pointbase:server://localhost:19092/sample</connection-url>
              <driver-class>com.pointbase.jdbc.jdbcUniversalDriver</driver-class>
              <user-name>jboss</user-name>
              <password>password</password>
         </local-tx-datasource>
    </datasources>jbosscmp-jdbc.xml:
    <jbosscmp-jdbc>
         <defaults>
              <datasource>java:/PointbaseDS</datasource>
              <datasource-mapping>Pointbase</datasource-mapping>
         </defaults>I keep getting the error message:
    org.jboss.deployment.DeploymentException: Error in jbosscmp-jdbc.xml : datasource-mapping Pointbase not found
    Any ideas why?
    Thanks.

    By the way I'm using JBoss server.

Maybe you are looking for

  • Startup class is not working in oc4j

    hi I have a servlet .In init of that servlet I will create an instance of a startup class . In web.xml configuration I gave <load-on-startup></load-on-startup> .I created a war and an ear and deployed my application .The startup class is not called.

  • How to send digitally sign S/MIME messages with Powershell cmdlet Send-MailMessage?

    Hello, using AD Windows PKI I assigned a certificate EKU (1.3.6.1.5.5.7.3.4) to sign emails and get this with autoenrollment also to my CERT Store PS CERT:\CurrentUser\UserDS\ or the certificate could found via MMC / certificates in the store structu

  • My Server appears to have many connections to the router?

    When I look at a map of the network on my router, the server appears to have two IP Addresses and many, many connections. Most things are working okay, but there is a problem resolving domain names. I can RDP to the server with the IP address but not

  • Completely new to Soundtrack Pro - need help for school project

    I've never used Soundtrack Pro before, but I need to record and modify some dialogue for a project for one of my classes, and I think that's the only audio program we have on the computers in the lab I'm using. Can I use Soundtrack Pro to record myse

  • Is there a Snaplab plugin for Adobe CS6

    The Snaplab plugin I have now works great on CS5, but, doens't seemt o show up with CS6. Is tehre an update for making Snaplab borders for Win8 and Adobe CS6 or CC? A bonus would be to have drivers for the Snaplap CR10L and the DR150 for Windows 8...