Dunp during  testing

Hi All,
The following runtime error happened during testing of the  system. the t-cde sued was AS03. When we click on the mastre data the runitme error occurs. Below is the detaisl of the error.
Runtime Errors         ASSIGN_CAST_WRONG_LENGTH
Short text
     Wrong assignment of a field symbol in program "SAPLSDSD".
What happened?
     Error in the ABAP Application Program
     The current ABAP program "SAPLSDSD" had to be terminated because it has
     come across a statement that unfortunately cannot be executed.
     The type assigned to one of the field symbols
     is not allowed.
Error analysis
     In the current program "SAPLSDSD", the ASSIGN ... TYPE ... statement was
     used to assign the type "D" to the field symbol "<%_1_SYSINI>". The length
     defined for this type is 16, but the reference field is 8 characters
     long. The type to be assigned is in the field "S_DESCR-INTTYPE".
Trigger Location of Runtime Error
    Program     SAPLSDSD
    Include     LSDSDF11
    Row     813
    Module type     (FORM)
    Module Name     PERSONAL_VALUES_CONVERT
Please suggest...
Regards,
arvind

Hi,
SAP [Note 1227426|https://service.sap.com/sap/support/notes/1227426] should solve this problem.
Regards,
Markus

Similar Messages

  • Dump during testing of ECC 6.0

    Dear All,
    My client is upgrading from 4.7 to ECC 6.0. During testing of the new system dumps for some transactions have been arising.
    For the transaction codes F-06, F-07, FBL5N and FB02 same kinds of errors have been found with similar program u201CSAPMF05Lu201D in the line no 1023. In the BSEG table the value of Docln is found out to be u201C#u201D for all the documents that have been imported from 4.7 to ECC 6.0.
    Please note that these transactions are still working fine in the 4.7 system.
    Below is the detail description of the error that we are receiving in ECC6.0 for the above mentioned transaction codes.
    Steps to recreate the dump:
    1.     Go to T-code FBL5N
    2.     Provide the u201Ccustomer accountu201D, u201Ccompany codeu201D and u201Copen at key dateu201D. Then Execute.
    3.     Double click on the Doc date and the dump occurs.
    How do we go about it..
    Regards,
    Arvind

    My issue has been resolved after running below program which SAP has recommended.
    Run this report in the Dev --->ZF_DOCLN_UPDATE_YJ
    *& Report ZF_DOCLN_UPDATE_YJ
    *&Report to update the DOCLN field in BSEG, which has a hex value and is
    *&shown as # to initial. Please note this report is not to be used for
    *&FAGLFLEXA table problems.
    REPORT zf_docln_update_yj.
    TABLES: bseg.
    DATA: BEGIN OF itab_bseg OCCURS 0,
    bukrs LIKE bseg-bukrs,
    belnr LIKE bseg-belnr,
    gjahr LIKE bseg-gjahr,
    buzei LIKE bseg-buzei,
    docln LIKE bseg-docln,
    END OF itab_bseg.
    DATA: cnt TYPE i,
    cnt_commit TYPE i.
    FIELD-SYMBOLS: <docln>.
    CONSTANTS: c_badchar(2) TYPE x VALUE '0000',
    c_commit TYPE i value 10000.
    SELECTION-SCREEN BEGIN OF BLOCK 001 WITH FRAME.
    SELECT-OPTIONS: p_bukrs FOR bseg-bukrs,
    p_gjahr FOR bseg-gjahr,
    p_belnr FOR bseg-belnr,
    p_buzei FOR bseg-buzei.
    PARAMETERS: update AS CHECKBOX,
    detail AS CHECKBOX.
    SELECTION-SCREEN END OF BLOCK 001.
    SELECT *
    INTO CORRESPONDING FIELDS OF TABLE itab_bseg
    FROM bseg
    WHERE bukrs IN p_bukrs
    AND belnr IN p_belnr
    AND buzei IN p_buzei
    AND gjahr IN p_gjahr.
    ASSIGN itab_bseg-docln(1) TO <docln> CASTING TYPE x.
    LOOP AT itab_bseg.
    IF <docln> EQ c_badchar.
    IF update = 'X'.
    ADD 1 TO cnt_commit.
    UPDATE BSEG SET docln = space
    WHERE bukrs = itab_bseg-bukrs
    AND belnr = itab_bseg-belnr
    AND gjahr = itab_bseg-gjahr
    AND buzei = itab_bseg-buzei.
    IF cnt_commit GE c_commit.
    COMMIT WORK.
    CLEAR cnt_commit.
    ENDIF.
    ENDIF.
    ADD 1 TO cnt.
    ELSE.
    DELETE itab_bseg.
    ENDIF.
    ENDLOOP.
    IF update = 'X'.
    COMMIT WORK.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED.
    WRITE: /'Update Run'.
    FORMAT COLOR COL_NEGATIVE INTENSIFIED OFF.
    ELSE.
    FORMAT COLOR COL_HEADING INTENSIFIED.
    WRITE: /'Test Run'.
    FORMAT COLOR COL_HEADING INTENSIFIED OFF.
    ENDIF.
    FORMAT COLOR COL_GROUP INTENSIFIED.
    WRITE: /'Report run by ',sy-uname, 'at',sy-uzeit.
    FORMAT COLOR COL_GROUP INTENSIFIED OFF.
    ULINE.
    SKIP 2.
    ULINE.
    FORMAT COLOR COL_GROUP INTENSIFIED.
    WRITE: /'DOCLN changed for Documents'.
    FORMAT COLOR COL_GROUP INTENSIFIED OFF.
    ULINE.
    WRITE: /5 'CoCode',
    15 'Doc Num',
    30 'Line no',
    45 'Fiscal Year',
    60 'Six-Figure Line Item for Ledger'.
    ULINE.
    IF detail EQ 'X'.
    LOOP AT itab_bseg.
    WRITE:/5 itab_bseg-bukrs,
    15 itab_bseg-belnr,
    30 itab_bseg-buzei,
    45 itab_bseg-gjahr,
    60 itab_bseg-docln.
    ENDLOOP.
    ENDIF.
    WRITE: /1 'BSEG Line Item Update Count:', cnt.

  • How to Use synchronous RFC calls during test run for remote accesses

    there is a Setting for the usage of RFC accesses from a tested system
    using eCATT.
    'X' - Use asynchronous RFC calls during test run for remote accesses
    ' ' - Use synchronous RFC calls during test run for remote accesses
    I developed an eCATT as following :
      SAPGUI ( SAPGUI_1 , Target_system_1 ).
      SAPGUI ( SAPGUI_2 , Target_system_2 ).
    My question is how to run the eCATT in a synchronous RFC calls
    PS: I do not want to change the Target_system to the same one in the
    above script of ecatt.Because I need to run it in 2 different Target
    systems sometime.
    for example, I give a Target_system_3 when run this eCATT
    I want the SAPGUI_1 and SAPGUI_2 run the Target_system_3 but not the
    Target_system_1 or Target_system_2 .
    Could you please tell me how to make it without the changes in script?
    Edited by: Weitong Liu on Mar 24, 2011 9:44 AM

    Hi Liu,
    Weitong Liu wrote:
    > ' ' - Use synchronous RFC calls during test run for remote accesses
    This is the standard option value. Asynchronous are not the standard way and used only for very special purposes.
    Weitong Liu wrote:
    > I developed an eCATT as following :
    >   SAPGUI ( SAPGUI_1 , Target_system_1 ).
    >   SAPGUI ( SAPGUI_2 , Target_system_2 ).
    > My question is how to run the eCATT in a synchronous RFC calls
    The commands will be executed in sequence. So each call will be synchronously replayed against TS1 and TS2.
    What is you issue with this standard procedure?
    Kind regards,
    Christoph

  • How can I hide non visible layers during test movie ?

    Flash CS5
    I have a layer I am using for construction purposes, it shows though in test movie. If I go to publish settings and untick include hidden layers on the flash tab, when I test movie, my cars don’t appear along the guide lines at all and just pop into view as movie ends.
    How does one hide turned off visibility layers during test movie without affecting hidden guide lines ?
    Envirographics

    If I have a layer that is only acting as a guide for laying things out or whatever, what I do is right click that layer's name and select "Guide" from the menu that appears.  It will not appear in when I use Test Movie

  • Using internally created certificate for IP-HTTPS lisenter temporarily during testing. Any issues?

    We are planning our Direct Access environment now and plan to also use SSTP VPN on the same box.
    I understand that the best practice is to use a certificate published by a public CA for the outward facing IP-HTTPS listener and we plan to do this however during testing we would like to use a certificate created from our internal CA. If our testing phase
    is successful and we plan to go ahead we would then buy a public CA certificate and replace the internally created one.
    I would just like to know how much of an issue/hassle it would be to do this. I believe that during the DA setup wizard it automatically inserts the certificates you provide. Is it a problem to change it afterward? Do you have uninstall DA and run through the
    wizard again? Thanks.

    Or you can use a Public 30-day trial SSL that is supported on all Clients.
    The hassle of changing it, will be the same as when you are renewing a public SSL certificate in the future. And yes, you have to re-run the wizard again, after you have imported the new SSL certificate on the DA server.

  • Corrupt result display during testing.

    I have a custom UI running TestStand sequences. The sequences call my COM DLL to display results during testing. The results are displayed in a CWnd derived list. The results scroll in the list. If anything interacts with the list (message box, or mouse) the list becomes corrupted (blank lines etc), and eventually the process crashes. This occurs on win2000 but not on WinNT. Any similar problems, or suggestions?
    Also, the COM DLL dialog is run in a user interface thread.

    I have done something very similiar to what you are doing. I have an MFC User interface that runs test sequences. I also have a DLL interface to an active X automation server that the sequences call. The server also displays test progression information sent directly from client applications that the sequences call. I also had problems with my displays working correctly when we moved from NT to 2000. I resolved the problems by upgrading to MFC service pack 5.0 and rebuilt all my components in Windows 2000.
    I hope this helps,
    Steve

  • NavigateToURL Works During Testing But Not Once Published

    Trying to create a simply hyperlink in Flash.  Works perfectly during testing.  But when I upload to the net, clicking the link takes me to www.thirdnewhope.com/iamtnh.blogspot.com rather than to just www.iamthn.blogspot.com.  I've tried changing allowscriptaccess to always.  That doesn't work either.  I am stumped :-(
    AS3 code:
    button_1.addEventListener(MouseEvent.CLICK, goClick);
    function goClick(evt:MouseEvent):void {
       var url:String = "http://www.iamtnh.blogspot.com";
       var req:URLRequest = new URLRequest(url);
       navigateToURL(req, "_blank");
    HTML code:
    <div id="flashContent">
                <object classid="clsid:d27cdb6e-ae6d-11cf-96b8-444553540000" width="560" height="400" id="events2013" align="middle">
                    <param name="movie" value="events2013.swf" />
                    <param name="quality" value="high" />
                    <param name="bgcolor" value="#000000" />
                    <param name="play" value="true" />
                    <param name="loop" value="true" />
                    <param name="wmode" value="window" />
                    <param name="scale" value="showall" />
                    <param name="menu" value="true" />
                    <param name="devicefont" value="false" />
                    <param name="salign" value="" />
                    <param name="allowScriptAccess" value="sameDomain" />
                    <!--[if !IE]>-->
                    <object type="application/x-shockwave-flash" data="events2013.swf" width="560" height="400">
                        <param name="movie" value="events2013.swf" />
                        <param name="quality" value="high" />
                        <param name="bgcolor" value="#000000" />
                        <param name="play" value="true" />
                        <param name="loop" value="true" />
                        <param name="wmode" value="window" />
                        <param name="scale" value="showall" />
                        <param name="menu" value="true" />
                        <param name="devicefont" value="false" />
                        <param name="salign" value="" />
                        <param name="allowScriptAccess" value="sameDomain" />
                    <!--<![endif]-->
                        <a href="http://www.adobe.com/go/getflash">
                            <img src="http://www.adobe.com/images/shared/download_buttons/get_flash_player.gif" alt="Get Adobe Flash player" />
                        </a>
                    <!--[if !IE]>-->
                    </object>
                    <!--<![endif]-->
                </object>
            </div>

    WOW!!!  Knew it would be something simple causing so much pain :-)  Thank you kglad!!!

  • Why does my site look nothing like the design and during testing once uploaded to the server?

    Why does my site look nothing like the design and during testing once uploaded to the server?,
    Im using Muse whichj crashes like you would not beleive, but after much perseverance I got a basic 4 page holding site together, I tested the site and it all looked fine, when I uploaded it to the server it looks nothing like the site I tested, to the point that even the background has changed colour and nothing is in the rite place.

    Hi John, Sure it's
    http://www.thezine.co.uk
    thanks
    it should be looking like this

  • AppleCare: TechTool Deluxe crashed during test...

    Hi Everyone! Has anyone experienced the AppleCare TechTool Deluxe crashing during testing? After installing Leopard on my MacBook, I tested each application to find out if it runs fine. And I came up up to TechTool Deluxe, and I get a popup window saying, "TechTool Deluxe has not been fully tested with Mac OS X 10.5 or later. Application will continue" with the continue button available. I clicked continue and ran a test and it froze up my macbook. It was stuck for a long time and I forced it to restart with the power button. Is there going to be a fix or update of TechTool Deluxe to properly run on Leopard? thanks for your help...

    http://docs.info.apple.com/article.html?artnum=25186
    http://search.info.apple.com/index.html?q=applecare%20techtool%20deluxe&lr=lang_ en&search=Go&type=
    https://support.apple.com/techtooldeluxe/main?id=dl
    +"TechTool Deluxe is an abridged version of the TechTool Pro diagnostic utility made by MicroMat. TechTool Deluxe is available only through Apple by purchasing the Apple Protection Plan for your Macintosh computer. Through the AppleCare Protection Plan, Apple provides technical support for TechTool Deluxe."+
    As far as I know, Micromat has not yet updated TechTool Pro for Leopard compatibility and I would assume that until Micromat does, AppleCare TechTool Deluxe won't be compatible either. You should never use a disk or system utility with a system upgrade like leopard unless you know that it's compatible. Bad things can happen. Hopefully you haven't hosed your system. You can probably go to Micromat's website and see what their timeline is for upgrading TechTool Pro.
    Cloudhr

  • BaseFileName cannot be nothing or an empty String during Test Connection

    Dear All,
    I have FDM+Foundation+HSF 11.1.2 installed
    I have stacked with the following problem:
    when I try to Test Connection (Authentication Provider Window) during Load Balance Configuration I am getting
    +“BaseFileName cannot be nothing or an empty String+
    Parameter name: value”
    Can somebody help me with it?
    Best Regards,
    Siarhei

    same error i faced, i restarted the APP server and it worked then.

  • Get source FileName - RuntimeException during test of Message Mapping

    Hi,
    Inside a graphical mapping, I want to get the source file name, and then use it.
    For that I use Michal's post inside a UdF: The specified item was not found.
    And that works perfectly during the treatment (File -> Mapping -> IDoc)...
    But my problem is when I try to test my Message Mapping inside the I.R (see tab "Test"), I have a RuntimeException due to the fact that DynamicConfiguration does not exist (obviously!) in the SOAP.
    So I tryed to encapsulate the line "String ourSourceFileName = conf.get(key);" by a try/catch or by using the method "containsKey", but I have always the same RuntimeException...
    is there someone who know how to catch this exception ?
    Regards
    Mickael
    Note: JavaDoc is: http://help.sap.com/javadocs/NW04S/current/pi/com/sap/aii/mapping/api/DynamicConfigurationKey.html

    Hi Progirl
    yes... but it will be not really pratical for the maintenance to think everytimes that this "error" is not an error and to think to delete the link in order to realize a test and then to not forget to add (again) this link.
    the risk is too important.
    Hi Varun,
    yes... but with the Test of Interface Mapping, I don't have the possibilty to see the Queue and all options than we have inside the Message Mapping... So it's will be not really practical for the maintenance.
    The solution is really to catch this exception directly inside the UdF which generates this Exception.
    I'm sure there is a Java solution for that, but not yet found the good syntax... I continue.
    Regards.
    Mickael

  • VStest.console.exe Query for a Data Row Result DURING Test Execution Status

    I started with the following
    thread and was asked to create a new thread. 
    I have the following test that reads a .csv as a data source.
    /// <summary>
    /// Summary description for Test
    /// </summary>
    [TestCategory("LongTest"),
    TestCategory("Visual Studio 2013"), TestMethod]
    [DeploymentItem("data.csv")]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV",
    "|DataDirectory|\\data.csv",
    "data#csv",
    DataAccessMethod.Sequential),
    DeploymentItem("data.csv")]
    public void Create_And_Build_All_Templates()
    testmethodname = "Create And Build All Templates ";
    LaunchVisualStudio2013();
    When I run the test from VStest.console.exe, I see the following:
    vstest.console.exe /testcasefilter:"TestCategory=LongTest" /settings:"C:\testing\CodedUI.testsettings" /logger:TRX /logger:CodedUITestLogger C:\AppTests\CodedUITest.dll
    Microsoft (R) Test Execution Command Line Tool Version 12.0.31101.0
    Copyright (c) Microsoft Corporation. All rights reserved.
    Running tests in C:\testing\bin\debug\TestResults
    Starting test execution, please wait...
    I want to report on the status of the iterations DURING the test run from VStest.console.exe, like how the test explorer window does this. 
    How can I achieve the output below (notice the (Data Row ) values) ?
    vstest.console.exe
    /testcasefilter:"TestCategory=LongTest"
    /settings:"C:\testing\CodedUI.testsettings"
    /logger:TRX
    /logger:CodedUITestLogger
    C:\AppTests\CodedUITest.dll
    Microsoft (R) Test Execution Command Line Tool Version 12.0.31101.0
    Copyright (c) Microsoft Corporation. All rights reserved.
    Running tests in C:\testing\bin\debug\TestResults
    Starting test execution, please wait...
    Test Passed - Create_And_Build_All_Templates (Data Row 1)
    Test Passed - Create_And_Build_All_Templates (Data Row 2)
    Test Failed - Create_And_Build_All_Templates (Data Row 3)
    Test Passed - Create_And_Build_All_Templates (Data Row 4)
    Ian Ceicys

    Jack, again the results are printed to the std. out console AFTER the test data row has been completed. Is there a way to query VSTest.console and find out which test\data row is being executed so it can be written out to the console
    DURING the test run? 
    I put together the following screencast showing the issue: 
    http://www.screencast.com/t/IrxxfhGlzD
    Also here is the github repo with the source code that I included in the screen cast:
    https://github.com/ianceicys/VisualStudioSamples2015
    Take a look at LongRunningDataDrivenTest.sln
    Unit Test
    [TestClass]
    public class UnitTest
    public static int _executedTests = 0;
    public static int _passedTests = 0;
    public void IncrementTests()
    _executedTests++;
    public void IncrementPassedTests()
    _passedTests++;
    [TestInitialize]
    public void TestInitialize()
    IncrementTests();
    Console.WriteLine("Total tests Row executed: {0}", _executedTests);
    [TestCleanup]
    public void TestCleanup()
    if (TestContext.CurrentTestOutcome == UnitTestOutcome.Passed)
    IncrementPassedTests();
    Console.WriteLine("Total passed tests: {0}", _passedTests);
    private TestContext testContextInstance;
    /// <summary>
    /// Long Running Test
    /// </summary>
    [TestCategory("Long Running Test Example"),TestMethod]
    [DeploymentItem("data.csv")]
    [DataSource("Microsoft.VisualStudio.TestTools.DataSource.CSV",
    "|DataDirectory|\\data.csv",
    "data#csv",
    DataAccessMethod.Sequential),
    DeploymentItem("data.csv")]
    public void LongRunning_TestMethod_Takes_Over_30_Seconds_to_Run()
    WaitTime(Convert.ToInt32(TestContext.DataRow["WaitTime"].ToString()));
    public void WaitTime (int waittime)
    Thread.Sleep(waittime);
    public TestContext TestContext
    get { return testContextInstance; }
    set { testContextInstance = value; }
    data.csv
    WaitTime,
    13000
    19000
    10000
    11000
    15000
    Ian Ceicys

  • Error during test configuration

    Hi friends,
    Hope u all r doing well.
    I am getting the an error while doing Test configuration in ID.
    I am getting the error in the step 'Interface determination & mapping' -> Interface mapping.
    *Interface Mapping <Not found>*
    *Runtime error*
    *com.sap.aii.utilxi.misc.api.BaseRuntimeException thrown during application mapping com/sap/xi/tf/_MTO_MTI_MM_: RuntimeException in Message-Mapping transformatio~*
    I have succesfully tested both the msg mapping and interface mapping in IR
    Please help me out.
    The following is the entire stack trace
    <Trace level="1" type="B">CL_MAPPING_XMS_PLSRV3-ENTER_PLSRV</Trace> <Trace level="1" type="T">Interface Mapping http://debansu.com MIOA_MIIA_MI </Trace> <Trace level="1" type="T">RuntimeException during appliction Java mapping com/sap/xi/tf/_MTO_MTI_MM_ </Trace> <Trace level="1" type="T">com.sap.aii.utilxi.misc.api.BaseRuntimeException: RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:406) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:64) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source) 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 $Proxy189.processFunction(Unknown Source) at sun.reflect.GeneratedMethodAccessor887.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:277) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:219) at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:260) 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:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: com.sap.aii.mappingtool.tf3.IllegalInstanceException: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:286) at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:312) at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:401) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:64) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source) 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 $Proxy189.processFunction(Unknown Source) at sun.reflect.GeneratedMethodAccessor887.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:277) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:219) at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:260) 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:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) </Trace> <Trace level="1" type="T">Runtime exception occurred during execution of application mapping program com/sap/xi/tf/_MTO_MTI_MM_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd </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/_MTO_MTI_MM_: com.sap.aii.utilxi.misc.api.BaseRuntimeException; RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:73) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source) 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 $Proxy189.processFunction(Unknown Source) at sun.reflect.GeneratedMethodAccessor887.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:277) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:219) at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:260) 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:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: com.sap.aii.utilxi.misc.api.BaseRuntimeException: RuntimeException in Message-Mapping transformation: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:406) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:64) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source) 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 $Proxy189.processFunction(Unknown Source) at sun.reflect.GeneratedMethodAccessor887.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:277) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:219) at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:260) 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:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) Root Cause: com.sap.aii.mappingtool.tf3.IllegalInstanceException: Cannot produce target element /ns0:MTI_Output/Input. Check xml instance is valid for source xsd and target-field mapping fulfills requirements of target xsd at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:286) at com.sap.aii.mappingtool.tf3.AMappingProgram.processNode(AMappingProgram.java:312) at com.sap.aii.mappingtool.tf3.AMappingProgram.start(AMappingProgram.java:401) at com.sap.aii.mappingtool.tf3.Transformer.start(Transformer.java:142) at com.sap.aii.mappingtool.tf3.AMappingProgram.execute(AMappingProgram.java:105) at com.sap.aii.ibrun.server.mapping.JavaMapping.executeStep(JavaMapping.java:64) at com.sap.aii.ibrun.server.mapping.Mapping.execute(Mapping.java:92) at com.sap.aii.ibrun.server.mapping.MappingHandler.run(MappingHandler.java:90) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleMappingRequest(MappingRequestHandler.java:95) at com.sap.aii.ibrun.sbeans.mapping.MappingRequestHandler.handleRequest(MappingRequestHandler.java:68) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceImpl.processFunction(MappingServiceImpl.java:79) at com.sap.aii.ibrun.sbeans.mapping.MappingServiceObjectImpl0_0.processFunction(MappingServiceObjectImpl0_0.java:131) at sun.reflect.GeneratedMethodAccessor389.invoke(Unknown Source) 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 $Proxy189.processFunction(Unknown Source) at sun.reflect.GeneratedMethodAccessor887.invoke(Unknown Source) at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25) at java.lang.reflect.Method.invoke(Method.java:324) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.call(RFCDefaultRequestHandler.java:277) at com.sap.engine.services.rfcengine.RFCDefaultRequestHandler.handleRequest(RFCDefaultRequestHandler.java:219) at com.sap.engine.services.rfcengine.RFCJCOServer$J2EEApplicationRunnable.run(RFCJCOServer.java:260) 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:100) at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170) </Trace> <Trace level="1" type="E">CL_XMS_PLSRV_MAPPING~ENTER_PLSRV</Trace>

    hi Debansu Sarkar .
    let do this:
    copy the structure from IR to test configuration, also be sure you put all right parametes like, BS and MI.
    in test configuration, the fist step you configure the sender agreement, there, put the BS an sender MI, after put the payload and run test.
    see this blog
    Test Your XI Configuration With The New Test Tool
    thanks
    Ps: Reward points if usefull

  • Error during test deployment

    We are getting the following error during a test deployment and cannot install the app we built.
    Deployment failed with HRESULT: 0x80073CF3, Package failed updates, dependency or conflict validation.
    Windows cannot install package Test2 because this package depends on another package that couldn't be found. This package requires minimum version 1.0.9600.16408 of framework Microsoft.WinJS.2.0 published by any publisher to install; the frameworks with
    name Microsoft.WinJS.2.0 available to the user are Microsoft.WinJS.2.0_1.0.9600.16384_neutral__8wekyb3d8bbwe. Provide the correct framework along with this package.
    NOTE: For additional information, look for [ActivityId] 88451b6b-4aaa-0000-b01b-4588aa4acf01 in the Event Log or use the command line Get-AppxLog -ActivityID 88451b6b-4aaa-0000-b01b-4588aa4acf01
    I have tried updating the computer but I can't seem to find the correct file to install to make this error go away.  Any help would be appreciated.

    Hi Dracodoom, we haven't seen such error before and can't reproduce it here. To help us troubleshoot, can you please describe your configuration? More specifically:
    - Are you deploying on Windows 8.1?
    - What locale does the deployment target machine have (English, German, etc)?
    - Can you copy/paste the contents of the log generated by the deployment script? You these hints from the error message: NOTE:
    For additional information, look for [ActivityId] 88451b6b-4aaa-0000-b01b-4588aa4acf01 in the Event Log or use the command line Get-AppxLog -ActivityID 88451b6b-4aaa-0000-b01b-4588aa4acf01
    Thank you for using Siena and for helping us improve!
    Manski

  • Exception During Testing WebDynpro Application in Developer Studio

    Hi,
    I am trying to test webdynpro application in developer studio as they have mentioned in the url -<b>http://help.sap.com/saphelp_nw04/helpdata/en/c1/c6213e225f9a0be10000000a114084/frameset.htm</b>
    <b>1)</b>During Recording i am getting successful result as follows
    Application Url: http://pawanm:50100/webdynpro/dispatcher/sap.com/compositeapp~webdynpro/MyApplication
    Port: 12000
    The Server is ready to accept Xml files from the Web Dynpro Runtime on Port 12000
    -->Client Connected....
    XML file received from runtime
    The Server is closed and it will not accept any more Xml documents from the Web Dynpro Runtime.
    The script has been stored on the local file system.
    <b>2)</b>But when i am trying to reply the script generated by recording then i am getting
    following error in console
    ->Contacting XML Client on Server to get initial XML document.
    ERROR: Contacted the Xml client on the J2EE Server, but did not receive an Xml document from it.
    <b>And in log viewer i am getting following error</b>
    Date : 03/30/2007
    Time : 20:44:47:481
    Message : Cannot send an HTTP error response [500 Application error occurred during request processing. (details: java.lang.NullPointerException: null)].
    The error is: com.sap.engine.services.servlets_jsp.server.exceptions.WebIOException: The stream is closed.
    Exception id: [0014222FC3E20052000009490000077C00042CE65506EC3A]
    Severity : Error
    Category : /System/Server/WebRequests
    Location : com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl
    Application : sap.com/tcwddispwda
    Thread : SAPEngine_Application_Thread[impl:3]_10
    Datasource : 17409750:C:\usr\sap\J2E\JC01\j2ee\cluster\server0\log\defaultTrace.trc
    Message ID : 0014222FC3E200520000094B0000077C00042CE65506EF1F
    Source Name : com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl
    Argument Objs :
    Arguments :
    Dsr Component :
    Dsr Transaction :
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 0
    Relatives : /System/Server/WebRequests
    Resource Bundlename :
    Session : 0
    Source : com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl
    ThreadObject : SAPEngine_Application_Thread[impl:3]_10
    Transaction :
    User : Guest
    So anyony please help me by giving some guideline or send me some document or url from where i can get usefull document.
    And also please let me know that how to test CAF application by using some tool provided by SAP.  
    Thanks in Advance
    Pawan Mishra

    Hi Pawan
    Is your engine functioning properly.I mean go to http://localhost:port/index.html then chech out the webdynpro links and other links available on this page .I am suggesting this so that we can check if <b>sap.com/tcwddispwda</b>
    is working fine.Then we can look into the speacific application you are working on
    Reward suitable points

Maybe you are looking for