Error while Creating External definition with WSDL file

Hi ALL,
I need to create a External defination with a WSDL file in PI 7.1.so i selected the Option WSDL & From all available message defination while creating External defination  & imported the WSDL file.
I am getting an error
javax.ejb.EJBException: nested exception is: java.lang.RuntimeException: java.lang.NoSuchMethodError: com.sap.aii.utilxi.wsdl.api.WsdlHandler.parseWsdlWithOrderRearrange(Lcom/sap/aii/utilxi/xml/xdom/XElement;Z)Lcom/sap/aii/utilxi/wsdl/api/Wsdl; java.lang.RuntimeException: java.lang.NoSuchMethodError:
Note : i checked the WSDl file in altova its no error's ,i know there is no problem with the WSDL file ,i tried importing the same in other XI 3.0 system it has no problem.
help me in solving this ..
Regards
Shakeif

Hi Tony,
Somehow I solved this issue. I dont remember what exactly I did, as it was sometime back in December. I think I used the Wizard initially to do the configurations in Solution Manager and again i tried to do the same manually as the earlier one threw some errors.
It seems the wizard proceeded half-way through and hence the entry was made in the database already and hence that error.
Anyways thank you for replying me.
best regds,
Alagammai.

Similar Messages

  • Error while creating  a PO with Account assignment

    HI MM Gurus
    In our case, we need to create the STO for account assignment cat `Unknown`.
    In SPRO I maintained combination of account assign cat and item cat.
    Now, while creating  a PO with Account assign U we get Error message -  ME069 :Unknown account assignment not defined for use here.
    Please advise how to resolve this issue.

    Hi
    When you are posting actuals, you need to give true account assignment object. With U (unknown), system cannot identify which account to be posted. Change account assignment in PO to another.
    In standard SAP Unknown account assignment is not allowed in PO's. Only exception is Blanket PO.
    Unknown is allowed only in PR and Blanket PO.
    The reason is logically you are releasing the PO to the external vendor or Plant in this case you must know the account assignment.
    Regards,
    Ninad Kshirsagar

  • Error while creating sales order with ref to contract

    while creating sales order, with refernce to contract system is giving a message
    Configuration not possible for material : Reason 3 --> Help
    Message no. V1360
    and the message is as follwed can any one explain
    Diagnosis
    This may have been caused by one of the following:
    1. The configuration profile for the material allows or requires the bill of materials to be exploded during order processing. However, a plant has not been specified in the item.
    2. The configuration profile of the material allows or requires the bill of materials to be exploded during order processing, but the order quantity in the item must be greater than 0.
    3. A configuration profile has not been maintained
    or
    A configuration is not permitted for the material
    or
    4. The configuration profile of the material allows or requires the bill ofmaterials to be exploded during order processing. However, the system could not determine a date because important data is missing from the item (see incompletion log).

    Hi
    I think you have both Variant configuration and BOM.
    Pls ensure the following.
    1. BOM masterdata is maintained for the variants
    2. Variant configuration is configured correctly
    Configuration profile is created for the material
    Knowledge base object and run time version are available
    3. Maintain materials as not relevant for delivery or dont give delivery quantity as 0
    Once you are sure that these are in proper shape, you can start creating order. The problem wont come.
    Reward points if it helps you.

  • Error while creating external table

    Hi i tried to create external table. The table is created but while selecting that table it is throwing below errors
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19I've created temp directory in window under oracle directory " C:\oracle\product\10.2.0\temp"
    In the temp directory i've a text file countries1.txt
    the text file has the below information
    ENG,England,English
    SCO,Scotland,English
    IRE,Ireland,English
    WAL,Wales,WelshI've connected to system user and created one directory and granted the read and write permissions to user SCOTT.
    SQL> create or replace directory ext_tables as 'C:\oracle\product\10.2.0\temp\';
    Directory created.
    SQL> grant read,write on directory ext_tables to scott;
    Grant succeeded.The creation of external table query is
    CREATE TABLE countries_ext (
      country_code      VARCHAR2(5),
      country_name      VARCHAR2(50),
      country_language  VARCHAR2(50)
    ORGANIZATION EXTERNAL (
      TYPE ORACLE_LOADER
      DEFAULT DIRECTORY ext_tables
      ACCESS PARAMETERS (
        RECORDS DELIMITED BY NEWLINE
        FIELDS TERMINATED BY ','
        MISSING FIELD VALUES ARE NULL
          country_code      CHAR(5),
          country_name      CHAR(50),
          country_language  CHAR(50)
      LOCATION ('Countries1.txt')
    PARALLEL 5
    REJECT LIMIT UNLIMITED;And the error is
    SQL> select *from countries_ext;
    select *from countries_ext
    ERROR at line 1:
    ORA-29913: error in executing ODCIEXTTABLEOPEN callout
    ORA-29400: data cartridge error
    KUP-04040: file Countries1.txt in EXT_TABLES not found
    ORA-06512: at "SYS.ORACLE_LOADER", line 19
    SQL> Please help me in this

    You are missing something. Most probably the file does not exists in your specified path. This is working in my 10.2.0.3
    Step1: Check the file is actually there.
    C:\oracle\product\10.2.0>mkdir temp
    C:\oracle\product\10.2.0>cd temp
    C:\oracle\product\10.2.0\temp>dir
    Volume in drive C is C_Drive
    Volume Serial Number is 8A93-1441
    Directory of C:\oracle\product\10.2.0\temp
    07/30/2011  12:00 PM    <DIR>          .
    07/30/2011  12:00 PM    <DIR>          ..
    07/30/2011  12:00 PM                79 countries1.txt
                   1 File(s)             79 bytes
                   2 Dir(s)  50,110,582,784 bytes free
    C:\oracle\product\10.2.0\temp>type countries1.txt
    ENG,England,English
    SCO,Scotland,English
    IRE,Ireland,English
    WAL,Wales,Welsh
    C:\oracle\product\10.2.0\temp>Step 2: Creating the directory object.
    SQL> show user
    USER is "SYS"
    SQL> SELECT * FROM v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Prod
    PL/SQL Release 10.2.0.3.0 - Production
    CORE    10.2.0.3.0      Production
    TNS for 32-bit Windows: Version 10.2.0.3.0 - Production
    NLSRTL Version 10.2.0.3.0 - Production
    SQL> create or replace directory ext_tables as 'C:\oracle\product\10.2.0\temp';
    Directory created.
    SQL> grant read,write on directory ext_tables to scott;
    Grant succeeded.
    SQL>Step 3: Table definition.
    C:\>sqlplus scott@orclsb/tiger
    SQL*Plus: Release 10.1.0.4.2 - Production on Sat Jul 30 12:04:24 2011
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.2.0.3.0 - Production
    With the Partitioning, OLAP and Data Mining options
    SQL> CREATE TABLE countries_ext (
      2    country_code      VARCHAR2(5),
      3    country_name      VARCHAR2(50),
      4    country_language  VARCHAR2(50)
      5  )
      6  ORGANIZATION EXTERNAL (
      7    TYPE ORACLE_LOADER
      8    DEFAULT DIRECTORY ext_tables
      9    ACCESS PARAMETERS (
    10      RECORDS DELIMITED BY NEWLINE
    11      FIELDS TERMINATED BY ','
    12      MISSING FIELD VALUES ARE NULL
    13      (
    14        country_code      CHAR(5),
    15        country_name      CHAR(50),
    16        country_language  CHAR(50)
    17      )
    18    )
    19    LOCATION ('Countries1.txt')
    20  )
    21  PARALLEL 5
    22  REJECT LIMIT UNLIMITED;
    Table created.
    SQL> SELECT * FROM countries_ext;
    COUNT COUNTRY_NAME
    COUNTRY_LANGUAGE
    ENG   England
    English
    SCO   Scotland
    English
    IRE   Ireland
    English
    COUNT COUNTRY_NAME
    COUNTRY_LANGUAGE
    WAL   Wales
    Welsh

  • SNC : Error while creating Subcon PO with Order (F) account assignment cat

    Hi,
    I am trying to implement Outsourced Manufacturing scenario with ECC 604 and SNC 7.0
    We would like to demonstrate "Real Time Consumption" once a phase has been completed for WO in SNC.
    For this, it is necessary create Subcon PO with A/c assignment category F. While trying to create PO, i get the following error:
    1. Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    Diagnosis
    Errors occurred during the determination of the account assignment in the account assignment manager. Thus it is not possible to determine the account assignment.
    2. Characteristics for Controlling object have errors
    Message no. IAOM034
    Diagnosis
    There are errors in the characteristics that are transferred when creating or changing a Controlling object.
    System Response
    Processing stopped.
    Procedure
    Look at the messages prior to this object in the error log. They give an indication as to which characteristics have errors.
    3. Hierarchy level 01 not defined in business scenario Outsourced Manufacturing
    Message no. IAOM027
    Diagnosis
    In business scenario 'Outsourced Manufacturing', hierarchy level 01 was accessed. There is no key characteristic defined for this hierarchy level.
    System Response
    Processing is terminated.
    Procedure
    Inform SAP or the provider of the business scenario, if the business scenario was not provided by SAP.
    If you are responsible for the business scenario yourself, check the definition of the business scenario.
    Settings specific to CO order that have been maintained:
    IAOM1 - Maintain Controlling Scenario
    IAOM2 - Maintain Controlling Integration
    KA02 - Default Cost assgnmnet
    Tick RT consumption in ME11 (Vendor Purchasing Info Record).
    Any idea???
    Regards,
    Sandeep

    Dear,
    Did you also experience the following?
    We are at the following step in the scenario:
    Supplier confirms production progress =>Manufacturingworkorderproductionprogressnotification XML is generated => POST component consumption is executed in the R/3 system (ECC 6 EHP4).
    We see the following problems after posting the component consumption
    -     table EKBE_SC is not filled
    -     in transaction kkf3 => CO production order => no booking/posting of progress
    -     Component consumption is reflected in an outbound delivery with movement type 543, but it is missing the link with the purchase order+item (see screenshot below) => as a result any post issue booking is not possible.
    Thanks for your help.
    Kindr regards,
    Stefan Hemeryck

  • Error while creating Subcon PO with Order (F) account assignment cat

    Hi,
    I am trying to implement Outsourced Manufacturing scenario with ECC 604 and SNC 7.0
    We would like to demonstrate "Real Time Consumption" once a phase has been completed for WO in SNC.
    For this, it is necessary create Subcon PO with A/c assignment category F. While trying to create PO, i get the following error:
    1. Acct assignment determination is not poss.in the account assgnmnt manager
    Message no. IAOM220
    Diagnosis
    Errors occurred during the determination of the account assignment in the account assignment manager. Thus it is not possible to determine the account assignment.
    2. Characteristics for Controlling object have errors
    Message no. IAOM034
    Diagnosis
    There are errors in the characteristics that are transferred when creating or changing a Controlling object.
    System Response
    Processing stopped.
    Procedure
    Look at the messages prior to this object in the error log. They give an indication as to which characteristics have errors.
    3. Hierarchy level 01 not defined in business scenario Outsourced Manufacturing
    Message no. IAOM027
    Diagnosis
    In business scenario 'Outsourced Manufacturing', hierarchy level 01 was accessed. There is no key characteristic defined for this hierarchy level.
    System Response
    Processing is terminated.
    Procedure
    Inform SAP or the provider of the business scenario, if the business scenario was not provided by SAP.
    If you are responsible for the business scenario yourself, check the definition of the business scenario.
    Settings specific to CO order that have been maintained:IAOM1 - Maintain Controlling Scenario
    IAOM2 - Maintain Controlling Integration
    KA02 - Default Cost assgnmnet
    Tick RT consumption in ME11 (Vendor Purchasing Info Record).
    Any idea???
    Regards,
    Sandeep

    well it seems to be an CO issue
    please check if the g/l is maintained as cost element
    also check the setting s of account assignment catergory F and let us on which modifier key is maintained there make sure in OBYC-GBB the g/l is maintained for the material valuation class and which should be cost lement

  • ODI XML data server error while creating External databse tables.

    Hi,
    i am trying to create External database tables using XML data server.
    i am getting the following error,i have done this same thing for small xml files before.
    Java.sql.SQLException: ORA-00904: : invalid identifier
         at com.sunopsis.jdbc.driver.xml.bz.execute(bz.java)
         at com.sunopsis.jdbc.driver.xml.ca.execute(ca.java)
         at com.sunopsis.xmlfifth.b.u.a(u.java)
         at com.sunopsis.xmlfifth.b.bj.a(bj.java)
         at com.sunopsis.xmlfifth.b.bj.a(bj.java)
         at com.sunopsis.jdbc.driver.xml.u.a(u.java)
         at com.sunopsis.jdbc.driver.xml.u.g(u.java)
    Thanks,
    RK

    RK,
    With no details of how you configured the XML server, what were the parameters used in the configuration for using external database, etc, I dont know how much can someone help you.
    This is an Oracle error, so a few things that could be problematic with your "big" xml -
    1.) An element name could be of length > 30 characters (Oracle table name length limit is 30)
    2.) There are some special characters in the element name
    3.) Element name begins with a Number
    4.) Element name is an Oracle reserved word.
    This list can go on.

  • Error while creating external alias for BSPs & DMS

    Hello All,
    Has anybody encountered the below error dump while creating the external aliases for Business Server Pages and Document Management Service?
    The error dump I have received is "ITAB_DUPLICATE_KEY"
    "A Row with same key already exists"
    The error has ocurred in the program "RSICFTREE".
    I am getting this above described error while navigating to the "Target Element" tab.
    Can anybody help pls?
    best regds,
    Alagammai.

    Hi Tony,
    Somehow I solved this issue. I dont remember what exactly I did, as it was sometime back in December. I think I used the Wizard initially to do the configurations in Solution Manager and again i tried to do the same manually as the earlier one threw some errors.
    It seems the wizard proceeded half-way through and hence the entry was made in the database already and hence that error.
    Anyways thank you for replying me.
    best regds,
    Alagammai.

  • HTTP error while sending SOAP request using wsdl file

    We created SOAP request using the wsdl file ; while sending SOAP request from Altova XMLSpy, we are getting the below error.
    HTTP error: could not post file
    Can you please explain how to resolve this issue
    Regards,
    Sanghamitra

    there is very little information to help you here.
    Can you confirm if this is a SOAP sender scenario or SOAP receiver scenario?
    Also do go to thru these links to help you out;
    Troubleshooting
    Troubleshooting - RFC and SOAP scenarios *** Updated on 20/04/2009 ***
    RFC -> SOAP
    RFC -> XI -> WebService - A Complete Walkthrough (Part 1)
    RFC -> XI -> WebService - A Complete Walkthrough (Part 2)
    SOAP <-> XI <-> RFC/BAPI
    Walkthrough - SOAP  XI  RFC/BAPI

  • Getting error while creating Business Action with EDI EDIFACT 837 document.

    Hi,
    When I am trying to create a business action with EDI 837 &lsquo;.ecs&rsquo; file, I am getting a error. It is not creating the business action. Even it is not displaying any error details.
    Please help me in resolving this issue as it's very urgent.
    Thanks in advance.

    Hi Jyotirmoy,
    What error you are getting exactly while creating the business action? Did you try to create business action for any other protocol? If not, then please try to create business action for any other protocol and check whether you are getting the same error over there also.
    Regards,
    Anuj

  • Error while creating creditmemo request with reference to invoice

    HI aLL,
    I am facing one issue while creating a credit memo request in VA01 with reference to invoice.
    Our project stock is valuated stock.In projects we always use valuated stock so i cannot change the valuated into non valuated.
    When we try top copy the error pops up" Valuated project stock not allowed with customer stock." and the line item is not copied in the credit memo.
    Diagnosis:The entered wbs manages a valuated project stock,at the same time sales order stock is maintained on sales order line item.this combo is not allowed as different valuation methods within a project is not allowed.
    Tarun Kapur

    Hi Arun,
    Have you check & maintained middleware setting for  document transfer
    (tcode R3AC1). Check object SALESDOCUMENT and try maintain transaction
    type there. Don't forget to activate use tcode R3AS.
    hope this helps.
    Gun

  • Error while creating sales order with network/project

    Dear All,
    we are getting the following message while creating a sales order with assembly processing with network/project system .
    The standard Network used as a reference contains assignments to a standard WBS. However you have maintained WBS assignments manually.which assignment should be used?
    manually maint         pre-defined
    reward points are assured for valuable help.
    thanking you
    Best regards,
    R.Srinivasan

    Dear Murali,
    Thankyou very much for your reply.We have checked for these things which you have mentioned.
    ie
    Assignment of Standard WBS in the Standard network and WBS Assignment of Operastional network.We are still getting this error.
    Kindly let me know What are the other possibilities for this error.
    Thanking you,
    Best regards,
    R.Srinivasan

  • Error while creating sales order with ref using SD_SALESDOCUMENT_CREATE

    Hi
    I am creating sales order with reference using function module SD_SALESDOCUMENT_CREATE , while creating i am getting error
    Document doesn't have document category even thougth i am passing document category in header as well as item lavel.
    In VBUK table there is no value for VGTYP.
    Can you please help me how to resolve it.
    Thanks & regards
    kiran

    Problem resolved by passing   REFDOC_CAT in the FM along with  SD_DOC_CAT.
    Thanks

  • Error while creating purchase order with account assignment category "A"

    Dear All,
                      At the time of creating purchase order with account assignment category A - Asset its throwing error as " GL Account 123400 can not be used"
    how to resolve this  issue"
    Edited by: Matt on Sep 16, 2010 10:09 AM - removed bold tags

    HI,
    Assign all assets GL to Asset Class
    spro --> financial accounting new -->assets accounting --> assets accounting (lean Implementation) --> organization structures --> Assign GL
    Hope Help U !
    Regards,
    Pardeep Malik

  • JS error while using input fields with type=file on XP SP2

    Hi all,
    we found a new problem in applications which use input fields with type=file running in a browser on Microsoft Windows XP with SP2.
    A typical test layout might look like:
    <html>
      <head>
        <title>File-Upload</title>
      </head>
      <body>
        <form action="/cgi-bin/upload.pl" method=post
              enctype="multipart/form-data">
          <input type=file size=50 maxlength=100000 name="file"
                 accept="text/*"><br>
          <button onclick="document.forms[0].submit();">Send</button>
        </form>
      </body>
    </html>
    When you add a link without the fully qualified path (for example pic01.jpg instead of c:\pictures\pic01.jpg) and click on the 'Send' button, nothing happens and you get a Javascript error 'Access denied'.
    The solution can be found in the MS Knowledge Base article 892442:
    http://support.microsoft.com/default.aspx?scid=kb;en-us;892442
    We still investigate this issue and will inform you about the further proceeding.
    Regards,
    Rainer

    Hi Yepin Jin,
    I am facing the same issue did you solved it?
    Regards,
    Orlando Covault

Maybe you are looking for

  • How to make the client connect to the server at the command prompt?

    I found this code on IBM's website, it was a training session on servers and clients using java. The code compiles fine and the server seems to start up properly when I use java Server 5000. I think whats happening is the server is running and listen

  • Error when installing the JAVAVM in oracle 9.2

    Hi, Today I tried to install the JAVAVM in my database. The version of the database is 9.2 in HP unix mechine. I ran the script initjvm.sql. Few procedures for created successfully but after some time I got the below error and disconnected from oracl

  • Nokia C6-01 FM Radio FREEZE

    Hei Guys , i'm new here ,  i have a Nokia C6-01 and i have a problem .. when i turn on the radio works fine for 5 sec , after that , the phone is totally freezed , i can't actually kill the fm radio from task manager .. please help me how to solve th

  • IPhoto'11 versie 9.1

    Hi, in the new version it's not possible to split events and give the event instantly a new name. you have to go back to "all events" and then find the new events. When you have a lots of events you gets crazy by looking for it. I know that in the "p

  • How to use html template on a php script, if possible..

    Hello, I buy it smartjobboard script which is made in php ( ''SmartJobBoard software design and layout is based on 'Templates' system. Templates used in the software are built on html and Smarty. '') . This is advanced job board script with user regi