Error Trace

Dear All,
Could you guys share with me based on your experience how we know what are the exactly errors in one scenario integration when let say the result not as per  our expected.
Maybe there's a step by step to trace where are the errors. Because this is integration scenario. The errors can be come from many parties.
I just done one scenario  RFC --> XI --> File.
RFC executed successfully in R/3 but when i go to SXMB_MONI t-code in XI there's no message shown.
I have no idea, how i can trace where is the error why the message is not created.
Thanks in Advance,
Victor.

Hi Swarup,
Thanks again for your prompt reply.
I have 2 errors in RFC Sender Channel (RFC Adapter).
1. Cluster node details:
Sender channel 'RFC_SenderChannel' for party '', service 'JJ_DEV_035' (internal name 'RfcServer[RFC_SenderChannel]')
Server data: {jco.server.gwhost=192.168.5.30, jco.server.progid=sap123, jco.server.gwserv=sapgw00, jco.server.unicode=0}
Repository data: {jco.client.lang=EN, jco.client.snc_mode=0, jco.client.client=035, jco.client.passwd=******, jco.webas.ignore_jdsr_error=1, jco.client.user=SP-VICTORW, jco.client.sysnr=00, jco.client.ashost=192.168.5.30}
Current pool size: 1, maximum pool size : 1
2. Processing details:
Error in processing caused by: com.sap.aii.af.rfc.afcommunication.RfcAFWException: lookup of alternativeServiceIdentifier via CPA-cache failed for channel 'RFC_SenderChannel' (8c0ab0d72c7d3e269396b9f3f91ee0bb, party '', schema 'TechnicalSystem', identifier 'D01#035')
Any idea?
Thanks,
Victor.

Similar Messages

  • The Error Trace

    Exception occurred during event dispatching:
    java.lang.NullPointerException
    at DataD$MyComboListener.actionPerformed(DataDictionary.java:143)
    at javax.swing.JComboBox.fireActionEvent(JComboBox.java:865)
    at javax.swing.JComboBox.selectedItemChanged(JComboBox.java:889)
    at javax.swing.JComboBox.contentsChanged(JComboBox.java:941)
    at javax.swing.AbstractListModel.fireContentsChanged(AbstractListModel.j
    ava:74)
    at javax.swing.DefaultComboBoxModel.setSelectedItem(DefaultComboBoxModel
    .java:81)
    at javax.swing.JComboBox.setSelectedItem(JComboBox.java:410)
    at javax.swing.JComboBox.setSelectedIndex(JComboBox.java:450)
    at javax.swing.plaf.basic.BasicComboPopup$ListMouseHandler.mouseReleased
    (BasicComboPopup.java:577)
    at java.awt.AWTEventMulticaster.mouseReleased(AWTEventMulticaster.java:2
    26)
    at java.awt.Component.processMouseEvent(Component.java:3710)
    at java.awt.Component.processEvent(Component.java:3539)
    at java.awt.Container.processEvent(Container.java:1159)
    at java.awt.Component.dispatchEventImpl(Component.java:2588)
    at java.awt.Container.dispatchEventImpl(Container.java:1208)
    at java.awt.Component.dispatchEvent(Component.java:2492)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2216)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
    at java.awt.Container.dispatchEventImpl(Container.java:1195)
    at java.awt.Window.dispatchEventImpl(Window.java:923)
    at java.awt.Component.dispatchEvent(Component.java:2492)
    at java.awt.EventQueue.dispatchEvent(EventQueue.java:334)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchTh
    read.java:126)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThre
    ad.java:93)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:88)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:80)

    My question hads been posted before.They had asked me
    to copy the error trace for which i had copied.
    Regards
    MouliThey probably wanted you to post it in the same thread.

  • How to get Error Trace on Linux

    Hi All,
    I am trying to run my JAR ( A simple JAR that uses JCO) on Linux SUSE 10, when I run it, it just gives me the following error, there is no trace.
    How can I get the full trace. Please help.
    This is what im doing and the next line is the error message.
    dsadm@mach1:/opt/IBM/media/SAP/sapjco> java -jar ditest1.jar
    The java class is not found: com/sap/mw/jco/JCO$Exception
    dsadm@mach1:/opt/IBM/media/SAP/sapjco>
    This is the (ONLY) class file in the JAR, I exported my JAVA project from NWDS as a JAR file.
    package com.test;
    * Conn.java
    * Property of SAP AG, Walldorf
    * (c) Copyright SAP AG, Walldorf, 2000-2003.
    * All rights reserved.
    import com.sap.mw.jco.*;
    public class Conn {
      // The MySAP.com system we gonna be using
      static final String SID = "R3";
      // The repository we will be using
      com.sap.mw.jco.IRepository repository;
      public Conn()
         System.out.println("**** DI11 *****");
             this.buildConnection();
           System.out.println("**** DI 22*****");
      public void buildConnection(){
         try {
                   System.out.println("**** DI2 *****");
                // Add a connection pool to the specified system
                //    The pool will be saved in the pool list to be used
                //    from other threads by JCO.getClient(SID).
                //    The pool must be explicitely removed by JCO.removeClientPool(SID)
              com.sap.mw.jco.JCO.addClientPool( SID,         // Alias for this pool
                                        10,          // Max. number of connections
                                        "040",       // SAP client
                                        "testuser",   // userid
                                        "pass",  // password
                                        "EN",        // language
                                        "ipaddress",// host name
                                        "xx" );
                // Create a new repository
                //    The repository caches the function and structure definitions
                //    to be used for all calls to the system SID. The creation of
                //    redundant instances cause performance and memory waste.
                repository = com.sap.mw.jco.JCO.createRepository("MYRepository", SID);
              catch (Exception ex) {
                System.out.println("Caught an exception: \n" + ex.getMessage());
      // Retrieves and prints information about the remote system
      public void systemInfo()
        try {
          // Get a function template from the repository
          IFunctionTemplate ftemplate = repository.getFunctionTemplate("RFC_SYSTEM_INFO");
          // if the function definition was found in backend system
          if(ftemplate != null) {
            // Create a function from the template
            JCO.Function function = ftemplate.getFunction();
            // Get a client from the pool
            JCO.Client client = JCO.getClient(SID);
            // We can call 'RFC_SYSTEM_INFO' directly since it does not need any input parameters
            client.execute(function);
            // The export parameter 'RFCSI_EXPORT' contains a structure of type 'RFCSI'
            JCO.Structure s = function.getExportParameterList().getStructure("RFCSI_EXPORT");
            // Use enumeration to loop over all fields of the structure
            System.out.println("System info for " + SID + ":\n" +
            for (JCO.FieldIterator e = s.fields(); e.hasMoreElements(); ) {
              JCO.Field field = e.nextField();
              System.out.println(field.getName() + ":\t" + field.getString());
            }//for
            System.out.println("\n\n");
            // Release the client into the pool
            JCO.releaseClient(client);
          else {
             System.out.println("Function RFC_SYSTEM_INFO not found in backend system.");
         catch (JCO.Exception ex) {
           System.out.println("Caught an exception: \n" + ex);
      // Retrieves and displays a sales order list
      public void salesOrders()
         JCO.Client client = null;
        try {
          // Get a function template from the repository
          IFunctionTemplate ftemplate = repository.getFunctionTemplate("BAPI_SALESORDER_GETLIST");
          // if the function definition was found in backend system
          if(ftemplate != null) {
              // Create a function from the template
              JCO.Function function = ftemplate.getFunction();
              // Get a client from the pool
              client = JCO.getClient(SID);
              // Fill in input parameters
              JCO.ParameterList input = function.getImportParameterList();
              input.setValue("0000001200", "CUSTOMER_NUMBER"   );
              input.setValue(      "1000", "SALES_ORGANIZATION");
              input.setValue(         "0", "TRANSACTION_GROUP" );
              // Call the remote system
              client.execute(function);
              // Print return message
              JCO.Structure ret = function.getExportParameterList().getStructure("RETURN");
              System.out.println("BAPI_SALES_ORDER_GETLIST RETURN: " + ret.getString("MESSAGE"));
              // Get table containing the orders
              JCO.Table sales_orders = function.getTableParameterList().getTable("SALES_ORDERS");
              // Print results
              if (sales_orders.getNumRows() > 0) {
                // Loop over all rows
                do {
                  System.out.println("-----------------------------------------");
                  // Loop over all columns in the current row
                  for (JCO.FieldIterator e = sales_orders.fields(); e.hasMoreElements(); ) {
                     JCO.Field field = e.nextField();
                     System.out.println(field.getName() + ":\t" + field.getString());
                  }//for
                } while(sales_orders.nextRow());
              else {
                System.out.println("No results found");
              }//if
          else {
             System.out.println("Function BAPI_SALESORDER_GETLIST not found in backend system.");
           }//if
        catch (Exception ex) {
          System.out.println("Caught an exception: \n" + ex);
        finally {
           // Release the client to the pool
          JCO.releaseClient(client);
      protected void cleanUp() {
        JCO.removeClientPool(SID);
      public static void main(String[] argv)
        Conn e = new Conn();
      e.systemInfo();
      e.salesOrders();
      e.cleanUp();
    This is standard SAP code, please help on how can I get the complete error trace on linux.

    You do not require RFCSDK to build a jaava application that uses JCO on LINUX.

  • How to send Error Trace in Alert

    Hi All,
    I am using the following blog to raise an exception in mapping
    /people/alessandro.guarneri/blog/2006/01/26/throwing-smart-exceptions-in-xi-graphical-mapping
    I am able to get the exceptions as expected, which is good.
    When i executed the interface, if it failed then throwing an exception but it is giving in TRACE part of the MONI.
    When an alert triggered, it says mapping error. I would like to have the Exception message in the alert.l
    Is there any way to get that Exception message to Alert
    Regards

    Hi Vamsi Krishna,
    You can access only limited Constant Field Values using Java API (UDF or Java Mapping). [Link1|http://help.sap.com/javadocs/pi/SP3/xpi/constant-values.html#com.sap.aii.mapping.api.StreamTransformationConstants.DYNAMIC_CONFIGURATION]
    May be you can use this method [Link2|http://help.sap.com/javadocs/pi/SP3/xpi/com/sap/engine/interfaces/messaging/api/exception/MessagingException.html#setErrorCategory(java.lang.String)] . Please explore more about this API, you can use "setErrorCategory" method and in CCMS alerts you can sent that ErrorCategory. But I am think SAP will not recommend it.
    Regards,
    Raghu_Vamsee

  • Report error trace ![CDATA[java.lang.OutOfMemoryError: Java heap space

    Hi,
    I am getting the below error while trying to run any report in workspace
    <?xml version="1.0" encoding="UTF-8"?>
    <BpmResponse action="" type="error">
    <code>0</code>
    <desc>Java heap space</desc>
    <trace><![CDATA[java.lang.OutOfMemoryError: Java heap space
    ]]></trace>
    </BpmResponse>
    Looking for a qucik response!!!
    Thanks
    Ramya

    You are running out of memory. You can change the allocated java heap space for reporting if you haven't tried that already.
    Here is a thread regarding how to change the java heap space. Oracle recommends setting your -xmx to 1024.
    JVM Heap Size setting
    Hope this helps,
    DQ

  • ORA-00600 , Internal Error ,  Trace File and 50% CPU use HTMLDB library

    Hi HTMLDB team
    One HTMLDB allpication processes generated an ORA-00600 error as follows :
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [], []
    The Trace file is as follows :
    *** SESSION ID:(32.925) 2006-08-01 13:17:07.574
    *** 2006-08-01 13:17:07.497
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [], []
    ORA-06502: PL/SQL: numeric or value error
    ORA-06502: PL/SQL: numeric or value error
    ORA-06502: PL/SQL: numeric or value error
    Current SQL statement for this session:
    declare
    rc__ number;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 255;
    null;
    null;
    null;
    null;
    f(p=>:p);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    :rc__ := rc__;
    end;
    Also , this process has been consuming an unacceptable amount of cpu :
    18146 oracle 1 0 0 3924M 1840M cpu/1 167:24 49.62% oracle
    OEM reports the lastest SQL run by this process is the same as above.
    Is there anyway I could upload the trace file for you to have a look at ?
    Thanks
    Indira

    Hi HTMLDB team
    One HTMLDB allpication processes generated an ORA-00600 error as follows :
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [], []
    The Trace file is as follows :
    *** SESSION ID:(32.925) 2006-08-01 13:17:07.574
    *** 2006-08-01 13:17:07.497
    ksedmp: internal or fatal error
    ORA-00600: internal error code, arguments: [kohdtf048], [], [], [], [], [], [], []
    ORA-06502: PL/SQL: numeric or value error
    ORA-06502: PL/SQL: numeric or value error
    ORA-06502: PL/SQL: numeric or value error
    Current SQL statement for this session:
    declare
    rc__ number;
    begin
    owa.init_cgi_env(:n__,:nm__,:v__);
    htp.HTBUF_LEN := 255;
    null;
    null;
    null;
    null;
    f(p=>:p);
    if (wpg_docload.is_file_download) then
    rc__ := 1;
    wpg_docload.get_download_file(:doc_info);
    null;
    null;
    null;
    commit;
    else
    rc__ := 0;
    null;
    null;
    null;
    commit;
    owa.get_page(:data__,:ndata__);
    end if;
    :rc__ := rc__;
    end;
    Also , this process has been consuming an unacceptable amount of cpu :
    18146 oracle 1 0 0 3924M 1840M cpu/1 167:24 49.62% oracle
    OEM reports the lastest SQL run by this process is the same as above.
    Is there anyway I could upload the trace file for you to have a look at ?
    Thanks
    Indira

  • Any clues on this error trace? Flash Builder compiling for iOS...

    Hi,
    All of a sudden, I am seeing the following when I try to compile an app for iOS:
    [code]
      Error occurred while packaging the application:
    # A fatal error has been detected by the Java Runtime Environment:
    # Internal Error (0xe06d7363), pid=3736, tid=7512
    # JRE version: 6.0_16-b01
    # Java VM: Java HotSpot(TM) Client VM (14.2-b01 mixed mode windows-x86 )
    # Problematic frame:
    # C [KERNELBASE.dll+0xc41f]
    # An error report file with more information is saved as:
    # C:\Users\GAIUSC~1\AppData\Local\Temp\AOT1351170957959\hs_err_pid3736.log
    [/code]
    The error log has been deleted by the time I get to it and there is no other clue, not aware of making any other changes that could affect it.
    Will try restarting but...
    Any clues or ideas would be welcome!
    Thanks,
    G

    Hmm.
    I have googled the error code C [KERNELBASE.dll+0xc41f] and it is suggesting an incompatibility with 64-bit versus 32-bit systems. I did previously install the 64-bit Flash Builder 4.7 trial, and then uninstall it again because it gave too many bugs on my machine and played havoc with FB 4.6.
    I will try in the 4.7 forum to see if they have any ideas.
    G

  • HR - BI7 authorization error trace

    Hi gurus,
    I had a HR structural brought in to BI7 analysis authorization. I got a test user who has access to a particular node in the heirarchy. I run a query which has a customer exit and this what I got from the trace.
    ==========================
    Characteristic
    0ORGUNIT
    0TCAACTVT
    Partially or Fully Authorized (Intersection)
    SQL Format:
    ORGUNIT >= '00000001'
    AND TCAACTVT = '03'
    Result
    Not Authorized
    The ORGUNIT heirarchy doesn't have that value "00000001" in our heirarchy value always starts with the "5???????". I do not know where it is getting it from..
    Can someone of you review and analyze my issue?

    Hi Gaurav, First of all thanks for replying to me that quick.
    This is what I have in my analysis auth:
    Characteristics
    0ORGUNIT
    0TCAACTVT
    0TCAIPROV
    0TCAVALID
    Value Auth
    I     EQ     #
    I     EQ     :
    Hierarchy Auth
    Hier Nm    Tech Node Nm  Typ    Level      AreaVal
    ORGEH     $0ORGUNIT        1     0              0
    ORGEH     REST_H              1      0              0

  • Tabbar controller error trace back

    Hi, I have a tabbarcontroller that directly delegates UIViewController. This works fine in 2.x but is not allowed in 3.x. I am trying to address the delegation without having to rewrite the application. Is there some apple document that describes how to use the traceback shown below to find the line of code it is failing on? I thought I knew where this was failing but I set debug breakpoints at what I thought was the beginning of the program and removed large sections of code and I still get the error message. If the program was failing in some psuedo code generated by the Interface Builder, what would the traceback point to?
    9/7/09 9:07:11 PM Inv. Return[328] * Terminating app due to uncaught exception 'NSInternalInconsistencyException', reason: 'Changing the delegate of a tab bar managed by a tab bar controller is not allowed.'
    9/7/09 9:07:11 PM Inv. Return[328] Stack: (
    807902715,
    2475159099,
    807986683,
    807986522,
    816549532,
    810716389,
    814864521,
    816538544,
    807805711,
    816533170,
    816541363,
    814712305,
    814750229,
    814739251,
    814722434,
    814748641,
    839148405,
    807687520,
    807683624,
    814715661,
    814752238
    )

    Hi Flash -
    Is there some apple document that describes how to use the traceback shown below to find the line of code it is failing on?
    You might want to look at Backtraces in +Debugging with GDB+ from the Mac OS X Library. However, I think this is the tutorial that might be most helpful: [http://cocoawithlove.com/2008/10/debugging-tips-for-objective-c.html]. Scroll down to +"info symbol": get the symbolic name for an address+ on that page.
    I set debug breakpoints at what I thought was the beginning of the program and removed large sections of code and I still get the error message.
    Well the exception message was very clear. Cocoa thinks you set the tab bar's delegate. If so, I don't think you need to read the stack, and I don't think anything will fix this problem until you either (1) Remove the tab bar controller (I recently posted some code that shows how to get the tab bar to do lots of what you might want without a tab bar controller), or (2) Remove any code or IB connection that sets the tab bar delegate. The 3.0 UITabBar doc doesn't leave much wiggle room in this regard:
    Important: In iPhone OS 3.0 and later, you should not attempt to use the methods and properties of this class to modify the tab bar when it is associated with a tab bar controller object. Modifying the tab bar in this way results in the throwing of an exception. Instead, any modifications to the tab bar or its items should occur through the tab bar controller interface. You may still directly modify a tab bar object that is not associated with a tab bar controller.
    So if it's not the tab bar delegate that got changed, make sure your code isn't sending some other message directly to the tab bar. In 2.x, I know there were a few things you could change in a controlled tab bar. But in 3.0, most or all of those will no longer fly.
    If the program was failing in some psuedo code generated by the Interface Builder, what would the traceback point to?
    Not sure what you mean by psuedo code, but I think NSInternalInconsistencyException is the exception I usually see when the runtime system doesn't like what it found in a nib. I would assume the exception would be raised during or very soon after running a NSCoder method, but have never traced the stack remaining after an inconsistency exception.
    So my best guess is, in MainWindow.xib, the tab bar delegate is connected in to an object it shouldn't be talking to, and though this will compile nicely, it's never going to work with 3.0 at runtime.
    Hope that helps!
    \- Ray

  • Error in ST05 - trace record pair error block. How to resolve/tackle issue?

    Hello,
    Someone approached me last week in asking me how to resolve an issue in ST05. Basically I used the transaction to filter "inclusive VBPA".
    The error is ....
    Internal error - trace record pair error block 8 link no. 0
    Message no. 0S 026
    Diagnosis
        Each SQL statement is described by two SQL trace records that have the
        same link number. In this case, there are at least three records with the
        same link number.
        The system outputs the number of the block in which the third SQL trace
        record was found, as well as the link number of the records.
    System response
        Program processing continues after the message is displayed. The system
        processes all of the trace records. You should assume, however, that the
        SQL trace in this case is not displayed correctly.
    Procedure
    You cannot correct this error yourself. If you can reproduce the error,
    contact the SAP Hotline.
    SQL trace list editing terminated after 6 errors
    While using the trace I am executing the program that selects VBPA once and, I am assuming, as it goes through the BAPI BAPI_SALESORDER_CHANGE used to unblock a delivery block. I am guessing the problem or source is from the BAPI but do you guys have other insights in what is causing this issue?
    Thanks again, hope to hear from you soon, and good day.

    Our ERP LIVE Production around 11am all users encountered cannot generate print record from the submit new request. see below errorFor production issues, please log a SR.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.
    ORA-00060: Deadlock detected. More info in file /u/oracle/PROD/db/tech_st/11.1.0/admin/PROD_tailindb/diag/rdbms/prod/PROD/trace/PROD_ora_4026.trc.Please see these docs.
    OERR: ORA 60 "deadlock detected while waiting for resource" [ID 18251.1]
    What to do with "ORA-60 Deadlock Detected" Errors [ID 62365.1]
    Thanks,
    Hussein

  • Error in trace log - Error in Mapping EngineODIException

    Hi,
    in the trace log file of OID i am getting the following error:
    Trace Log Started at Mon Sep 24 08:56:34 CEST 2007
    c360f8d929b0427faf0c332e05e78025_85bf9c6eeeec452c8a41c3ab23d03fc6 - Error in Mapping EngineODIException: Exception Connecting to DB :java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    ODIException: Exception Connecting to DB :java.sql.SQLException: ORA-01017: invalid username/password; logon denied
         at oracle.ldap.odip.gsi.DBConnector.connect(DBConnector.java:134)
         at oracle.ldap.odip.prov.ProvWriter.initialise(ProvWriter.java:113)
         at oracle.ldap.odip.engine.ProvThread.mapInitialise(ProvThread.java:642)
         at oracle.ldap.odip.engine.ProvThread.execMapping(ProvThread.java:559)
         at oracle.ldap.odip.engine.ProvThread.runOldVersion(ProvThread.java:543)
         at oracle.ldap.odip.engine.ProvThread.run(ProvThread.java:173)
    java.lang.NullPointerException
         at oracle.ldap.odip.gsi.DBConnector.end(DBConnector.java:210)
         at oracle.ldap.odip.engine.ProvThread.mapEnd(ProvThread.java:718)
         at oracle.ldap.odip.engine.ProvThread.runOldVersion(ProvThread.java:546)
         at oracle.ldap.odip.engine.ProvThread.run(ProvThread.java:173)
    java.lang.NullPointerException
    Exception in Provthread
    It started since I changed password of PORTAL schema.
    everything works but i am wondering what's going on because trc file is now full of those messages
    thanks,
    Branislav

    Hi Sami,
    Check if thse threads can help u,
    Error in BPE Adapter
    BPM - BPE_ADAPTER errors
    BPE Adapter Error
    Exeception during execution error
    ***********Reward points if helpfull************

  • Need ABAP table/Report for getting trace of error messages

    Hi experts,
    My requirement is to display Detailed Error trace text of the error message, on my screen.
    Now i need to know, which tables in XI it is stored or is there any abap report available that can provide thsi information.
    any function module ??
    thanks in advance for your help.
    Regards,
    Priyanka

    Hi,
    Check these out.
    http://wiki.sdn.sap.com/wiki/display/XI/XI+Tables
    Cheers,
    Earlence

  • Error in SRM 7.01,Trace showing Partner Ship-To Address not found in FEH.

    Hi Gurus,
    Please throw some light on my isssue.
    We are developing Plan Driven Procurement Business Scenario in SRM.
    Current System details are ECC 6.0 EHP4, PI 7.1 & SRM 7.01.
    We have done all the configuration settings in ECC, PI & SRM.
    PR created in ECC 6.0 and External source of Supply tab generated in PR, processed through SAP PI successfully to SRM 7.01. In SRM it showing an error trace as *Partner Ship-To address not found* . We are using ABAP Proxies and standard content for this PDP Scenario.Using PurchaseRequestERPSourcingRequest_Out as an outbound interface and PurchaseRequestERPSourcingRequest_In as Inbound interface. shopping cart is not getting created in SRM system. FEH is enabled in SRM system to trace the error.
    Please provide inputs to resolve the issue.
    Ashok

    Dear Poster,
    As no response has been provided to the thread in some time I must assume the issue is resolved, if the question is still valid please create a new thread rephrasing the query and providing as much data as possible to promote response from the community.
    Best Regards,
    SDN SRM Moderation Team

  • SAP instance Slow and trace file generates below errors :  DiagOConvert...

    Hello,
    please help to resolve the problem bellow :
    SAP informations :
    - SAP ECC 6.0
    - ORACLE : 10.2.0.4.0
    - Kernel release : 700
    Trace file content :
    *** ERROR => platform      : WINDOWS/NT [diagsrv.c    842]
      *** ERROR => gui version   : 710        [diagsrv.c    851]
      *** ERROR => gui patchlevel: 12                                                 [diagsrv.c
      *** ERROR => transaction   : SP01                 [diagsrv.c    867]
      *** ERROR => user          : SAPSERVE     [diagsrv.c    881]
      *** ERROR => display    : FRBOUD083 [diagsrv.c    887]
      *** ERROR => DiagOConvert: input and output buffer overlap [diagconv.c   1146]
    +0)  0x400000000149b6a8   CTrcStack2 + 0x1d8  [dw.sapP05_DVEBMGS21]+
    +1)  0x400000000149b4c0   CTrcStack + 0x18  [dw.sapP05_DVEBMGS21]+
    +2)  0x40000000015d5080   DiagOConvert + 0x1e0  [dw.sapP05_DVEBMGS21]+
    +3)  0x40000000015d7050   DiagoString0 + 0xf0  [dw.sapP05_DVEBMGS21]+
    +4)  0x400000000161e740   DiagoCurrentCodepage + 0x2c0  [dw.sapP05_DVEBMGS21]+
    +5)  0x4000000001601490   diagoutput + 0xb50  [dw.sapP05_DVEBMGS21]+
    +6)  0x40000000016003fc   diagmout + 0x1cc  [dw.sapP05_DVEBMGS21]+
    +7)  0x4000000001620f20   diagmsgo + 0x638  [dw.sapP05_DVEBMGS21]+
    +8)  0x4000000001508728   dytrcexit + 0x648  [dw.sapP05_DVEBMGS21]+
    +9)  0x4000000001507a30   dypex00 + 0x858  [dw.sapP05_DVEBMGS21]+
    +10)  0x4000000001513498   dynpoutf + 0x450  [dw.sapP05_DVEBMGS21]+
    +11)  0x400000000150a464   dynprctl + 0x61c  [dw.sapP05_DVEBMGS21]+
    +12)  0x4000000001504554   dynpen00 + 0x1f04  [dw.sapP05_DVEBMGS21]+
    +13)  0x400000000128e9c8   Thdynpen00 + 0xf08  [dw.sapP05_DVEBMGS21]+
    +14)  0x400000000128d1a8   TskhLoop + 0x5980  [dw.sapP05_DVEBMGS21]+
    +15)  0x4000000001281e44   ThStart + 0x214  [dw.sapP05_DVEBMGS21]+
    +16)  0x40000000011c8648   DpMain + 0x410  [dw.sapP05_DVEBMGS21]+
    +17)  0x40000000011c5c0c   nlsui_main + 0x14  [dw.sapP05_DVEBMGS21]+
    +18)  0x40000000011c5bd4   main + 0x3c  [dw.sapP05_DVEBMGS21]+
    +19)  0xc00000000000b7a8   $START$ + 0xa0  [/usr/lib/pa20_64/dld.sl]+
    Thank you.

    first of all, Than you for your answer,
    Yes i'v already seen thta note, but what they propose exactelly as aplicative solution by this text :
    Solution
    By applying a kernel patch, the trace output is enhanced with the information of the callpoint so that the cause of the problem can be analyzed faster.
    The error traces were issued with the print view of texts. The problem is solved with a kernel patch.
    The error trace output now works at trace levels higher than 1 only.

  • 'System Error' status at Message Monitoring( HTTP to FILE )

    I have created a scenario HTTP to FTP. I sent message to XI server using the HTTP Client.
    After sending the message I am getting the response at browser.
    Result:
    http-Status:  200 Message accepted
    Payload:
    But when I look in to the Message monitoring at RWB, I am getting the message status as
    System error. while going to the details i can see below error category.
    Error Category       MAPPING
    Error Code      EXCEPTION_DURING_EXECUTE
    (Is the password different for port 50000 and 8000)
    Please help me to solve this issue.
    Thanks in Advance,
    John

    This is the trace message that I got for this error
    <Trace level="1" type="T">com.sap.aii.utilxi.misc.api.BaseRuntimeException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:46) at com.sap.aii.mappingtool.tf3.Transformer.checkParserException(Transformer.java:41) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:70) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:231) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:63) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:91) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:77) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:88) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:63) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:80) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0.processFunction(MappingServiceObjectImpl0.java:131) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy24.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:95) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal(RFCJCOServer.java:113) at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:171) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)</Trace>
      <Trace level="1" type="T">Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_HTTP2File_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:46)</Trace>
      <Trace level="1" type="T">com.sap.aii.ibrun.server.mapping.MappingRuntimeException: Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_HTTP2File_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:46) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:72) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:91) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:77) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:88) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:63) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:80) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0.processFunction(MappingServiceObjectImpl0.java:131) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy24.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:95) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal(RFCJCOServer.java:113) at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:171) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162) Root Cause: com.sap.aii.utilxi.misc.api.BaseRuntimeException: Fatal Error: com.sap.engine.lib.xml.parser.ParserException: XML Declaration not allowed here.(:main:, row:1, col:46) at com.sap.aii.mappingtool.tf3.Transformer.checkParserException(Transformer.java:41) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:70) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:231) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:63) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:91) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:77) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:88) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:63) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:80) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0.processFunction(MappingServiceObjectImpl0.java:131) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.ejb.session.stateless_sp5.ObjectStubProxyImpl.invoke(ObjectStubProxyImpl.java:187) at $Proxy24.processFunction(Unknown Source) at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method) at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:95) at com.sap.engine.services.rfcengine.RFCJCOServer.handleRequestInternal(RFCJCOServer.java:113) at com.sap.engine.services.rfcengine.RFCJCOServer$ApplicationRunnable.run(RFCJCOServer.java:171) at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37) at java.security.AccessController.doPrivileged(Native Method) at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:94) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:162)</Trace>

Maybe you are looking for

  • Creating checktable for custom table field

    Hello Guys, Can anybody explain me steps involved in createing a check table for the field in ztable.if possible can u send me link with screen shots. your help will be greatly appreciated. Regards Janapathi

  • OPTIMIZE SCANNED PDF PROBS Acrobat Pro 9

    "Optimize Scanned PDF" option under DOCUMENT seems to do a great job, only problem is that it seems to take parts of the document and overlap itself. The source PDF is fine. But the result always have these overlaps. The only way I can describe it is

  • Firefox appending or leaving out Browser History results

    Fire fox for years has not been accurate with my Browser history. This is clearly not a bug, as I've used multiple versions of firefox on up to 30 computers in the last 5 years. For example I did a little googling to find some cheat codes on the game

  • Trouble importing from Canon HF20 to Final Cut Express 4.0

    Took me a while trying to find the file, but after reading on another topic, i learned about menu file then log and transfer. anyways, when i try to drag footage to the lower left, i get this red exclamation mark under status and it says "Error: No D

  • Crystal Reports 11.5 ( XIR2) on  W2K8-64Bit Server,  ASP ActiveX Viewer

    Hi  experts, hope this is the right Forum to solve my problem. During the last months , i had to migrate/upgrade at least 5 Customer, coming from a Win2K3 32 Bit Server Environment, using  various  CR Versions ( 9 to 11 ). Target Plattform : W2K8 64B