Web Dynpro application accesing EP content file?

Hi
I am creating aapplication in Web Dynpro (Java). It will be a simple file editor.
I don't know how I can get access to files on EP. I have to get a file from the EP content (for example Documents/test.txt), edit it and send the edited file to the EP content. How can I do it?

Hi,
i have same scenario for the XML file. you have to read the file from the KM (the location where u have stored) as a resource.
after reading the file i have created input fields to get the values from the file and later edition by user,from KM deleted the existing file and replaced the old one with the new one.
Here i am giving the code example:-
ArrayList arryList = new ArrayList();
arryList = kmevents.getAllEvents(Entity, msgMngr, userInfo);
     public ArrayList getAllEvents(
          String Entity,
          IWDMessageManager mgr,
          UserInfo info) {
          //creates an instance of Userinfo
          ArrayList arrayList = new ArrayList();
             kmPath = FILE PATH
          pathRID = RID.getRID(kmPath);
               try {
               collection =
                    (ICollection) resourseFactory.getResource(
                         pathRID,
                         resourseContext);
               resourceList = collection.getChildren();
               resourceListIterator = resourceList.listIterator();
               int count = 0;
               while (resourceListIterator.hasNext()) {
                    resource = resourceListIterator.next();
                    if (resource.isCollection()) {
                         ArrayList list = new ArrayList();
                    list = getAllEventsFromFolder(file Path + resource.getName());
                         int i = count;
                         for (int j = 0; i < (count + list.size()); i+, j+) {
                              arrayList.add(i, (IResource) list.get(j));
                         count = i;
          } catch (Exception e) {
               e.printStackTrace();
          return arrayList;
     public ArrayList getAllEventsFromFolder(String folderName) {
          //creates an instance of Userinfo
          ArrayList arrayList = new ArrayList();
          RID pathRID = RID.getRID(folderName);
          try {
               ICollection collection =
                    (ICollection) resourseFactory.getResource(
                         pathRID,
                         resourseContext);
               IResourceList resourceList = collection.getChildren();
               IResourceListIterator resourceListIterator =
                    resourceList.listIterator();
               while (resourceListIterator.hasNext()) {
                    resource = resourceListIterator.next();
                    if (resource.isCollection()) {
                         continue;
                    } else
                         arrayList.add(resource);
          } catch (Exception e) {
               e.printStackTrace();
          return arrayList;
Hope that may help you.....
Regards,
Deepak

Similar Messages

  • Last step of  ".... web dynpro application accesing ABAP functions"  FAILED

    Hello!!!
    I can't run my app (Example: Creating a web dynpro application accessing ABAP functions).
    I will be very grateful if someone tell me what is happening. While I'm developing I can connect to my was 6.20 to see de BAPI and other stuff, to use on my program, but once I deploy the app and try to test it... this is what it drops:
    Error stacktrace:
    com.sap.tc.webdynpro.services.exceptions.WDTypeNotFoundException: type extern:com.sap.test.flights.model.types.FlightsModel:com.sap.test.flights.model.types.Bapisfldst could not be loaded: com.sap.dictionary.runtime.DdException:
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getStructure(DataTypeBroker.java:297)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:753)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:761)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:761)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getCustomControllerInternal(Component.java:433)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:371)
         at com.sap.tc.webdynpro.progmodel.controller.Component.getMappableContext(Component.java:400)
         at com.sap.tc.webdynpro.progmodel.context.MappingInfo.init(MappingInfo.java:138)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:746)
         at com.sap.tc.webdynpro.progmodel.context.NodeInfo.init(NodeInfo.java:761)
         at com.sap.tc.webdynpro.progmodel.context.Context.init(Context.java:40)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:199)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:540)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bind(ViewManager.java:398)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.getView(ViewManager.java:555)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.bindRoot(ViewManager.java:422)
         at com.sap.tc.webdynpro.progmodel.view.ViewManager.init(ViewManager.java:130)
         at com.sap.tc.webdynpro.progmodel.view.InterfaceView.initController(InterfaceView.java:41)
         at com.sap.tc.webdynpro.progmodel.controller.Controller.init(Controller.java:200)
         at com.sap.tc.webdynpro.clientserver.cal.ClientComponent.displayToplevelComponent(ClientComponent.java:134)
         at com.sap.tc.webdynpro.clientserver.cal.ClientApplication.init(ClientApplication.java:374)
         at com.sap.tc.webdynpro.clientserver.task.WebDynproMainTask.execute(WebDynproMainTask.java:593)
         at com.sap.tc.webdynpro.clientserver.cal.AbstractClient.executeTasks(AbstractClient.java:59)
         at com.sap.tc.webdynpro.clientserver.cal.ClientManager.doProcessing(ClientManager.java:249)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doWebDynproProcessing(DispatcherServlet.java:154)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doContent(DispatcherServlet.java:116)
         at com.sap.tc.webdynpro.serverimpl.defaultimpl.DispatcherServlet.doGet(DispatcherServlet.java:48)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:740)
         at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:385)
         at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:263)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:340)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:318)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:821)
         at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:239)
         at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
         at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:147)
         at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:37)
         at com.sap.engine.core.cluster.impl6.session.UnorderedChannel$MessageRunner.run(UnorderedChannel.java:71)
         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)
    Caused by: com.sap.dictionary.runtime.DdException:
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker$1.fillSldConnection(DataTypeBroker.java:89)
         at com.sap.dictionary.runtime.ProviderFactory.internalResolveLogicalNameToJCODestination(ProviderFactory.java:408)
         at com.sap.dictionary.runtime.ProviderFactory.resolveLogicalNameToJCODestination(ProviderFactory.java:354)
         at com.sap.dictionary.runtime.ProviderFactory.internalGetProvider(ProviderFactory.java:215)
         at com.sap.dictionary.runtime.ProviderFactory.getProvider(ProviderFactory.java:180)
         at com.sap.dictionary.runtime.DdDictionaryPool.getProvider(DdDictionaryPool.java:78)
         at com.sap.dictionary.runtime.DdDictionaryPool.getDictionary(DdDictionaryPool.java:64)
         at com.sap.dictionary.runtime.DdDictionaryPool.getDictionary(DdDictionaryPool.java:39)
         at com.sap.dictionary.runtime.DdBroker.getDataType(DdBroker.java:149)
         at com.sap.dictionary.runtime.DdBroker.getStructure(DdBroker.java:180)
         at com.sap.tc.webdynpro.services.datatypes.core.DataTypeBroker.getStructure(DataTypeBroker.java:295)
         ... 44 more
    I found at "How to Use the Web Dynpro Content Administrator.pdf" a good place to look for my mistake. But a big question appeared:
    Once I get in the Web Dynpro Content Administrator  and found my deplyed app I found this two JCo:
    WD_MODELDATA_DEST
    WD_RFC_METADATA_DEST
    Witch status was a little grey diamond, or something like that. ¿Can somebody tell me what is happening with this Jco?
    The page 27 of the pdf mentioned before, was different in my IDE SAP Developer Studio, the only option, by default, that give me was to choose between WD_MODELDATA_DEST and
    WD_RFC_METADATA_DEST. I have two fields that must be fill to pass to the next dialog box or finished the creation RFC model.
    Thanks a lot !!!

    Hi,
    In NWDS, you should have defined your own JCo destinations when creating your model. For example:
    - WD_<yourApp>_MODELDATA_DEST
    - WD_<yourApp>_RFC_METADATA_DEST
    Then in the Web Dynpro Content Administrator, you must create them, ie specify connection types, connection parameters...
    For this, choose the button Maintain JCo Destinations, find the connetions you've created in NWDS and click the button Create. Just follow the steps of the wizard, and you're done!
    Regards,
    Nicolas

  • Delete a file from the KM in a Web Dynpro application

    Hello,
    We need to delete a file from the KM in a Web Dynpro application.
    We have a file name (filename.txt) and its path (/documents/Test/), how can we completely delete the file from the KM?
    Thanks,
    Gil

    Hi venkata reddy,
    You wrongly mentioned  system admin instead of content admin
    Go to Content administration not in the system administration
    if u delete the file manually in the portal  you can go with
    go to Content administration  -> KM Content -> go to Particular document -> just tick the check box which doc u want delete -> go to selection -> u will find delete .
    Regards,
    P.Manivannan

  • Integrating Help files in Web Dynpro Application

    The requirement is : To give context specific help for each fields..
    Description:The requirement  is to provide context specific help..for each field that would appear on dynpro screen..
    Now what that means is.. for each field on the screen...there will be a "?" icon next to it..when the user clicks on that "?" icon...a small pop-up type of information. box should come up...displaying the text corresponding to that field..this u might of seen on some of the web sites...or microsoft applications..
           No we have to store the help files..in  some proper place either KM...or anywhere...and maintaining the relationship between the field and it's corresponding help file.One of the option for this is to use microsoft help tool which creates files in the .chm format and then use these files for our purpose.
           So can anyone please guide me what's will be the best way to achieve my purpose .chm files where i the help files will be stored and how they can be accessed in Web Dynpro Application.If u have any good suggestion apart from using .chm files then please suggest me.Please try to give a detailed solution.
         Any direction will be appreciated even if just to the proper place for a forum post of this nature or documentation      
    that will send me down the right path.

    Hi Candace, thanks for your time!
    Nothing is "clickable".... as in, nothing will is hyperlinked to each individual file....
    In my settings for items in this region, I have chosen mime type image, Image or Display Name Link, and when updated as attributes....
    All that appears for each item/file is Image or Display Name and item updated info, though neither of which is clickable, or hyperlinked.....
    Arrrrrghhhh..........

  • Error while accesing ABAP web dynpro application

    Hi Experts,
    We are getting warning symbol on web page status bar, when we are accessing the ABAP web dynpro application
    only first page of application is getting loaded and when we click on page it is showing error on status bar and we can perform any thing.
    once we double click on warning icon,
    below details are coming:
    Line: 1491
    Char: 3
    Error: Object Expected
    Code: 0
    URL: url of the ABAP web dynpro application
    This scenario is occuring for many ABAP WD application for a client.
    Please guide how to solve this issue?
    Thanks!
    Piyush

    Hi
    First try a very simple application with nothing in it just one text saying Hello World
    Run it and see what happens.
    Also check if your url uses FQDN name. something like https:
    company.name.co:50000\.......
    If you do not use the FQDN it will always show a script error on the bottom and some functions will not work e.g
    dropdowns.
    regards
    Yuval.

  • The Web Dynpro Application 'UmeAdminApp' has expired

    hi,
    if i login to portal to any application i am getting session out for each second.
    500   Internal Server Error
              SAP J2EE Engine/7.00
    The Web Dynpro Application 'UmeAdminApp' has expired. Restart the application using the Refresh button or via the following link UmeAdminApp.
      Details:      
      No details available
    plz help to solve this.
    thanks,
    Harish

    HI ,
    Set the  application time out property to a value as per requirement.
    Please follow below links for more details it may be help ful.
    webdynpro application has expired
    http://help.sap.com/saphelp_nw04s/helpdata/en/2a/7a754297fdd142e10000000a1550b0/content.htm
    If application time out is set correctly check for the disk space available in server or log file space (basis person will do this).
    Please check SDN , there are many posts available on this.
    Regards
    Deepak

  • Using a Deployable Proxy in a Web Dynpro Application

    Hi,
    We have a Web Dynrpo application whose model is built from a set of Java business objects (POJOs.)  These Java business objects currently make calls to a back-end R/3 system using JCo.  We would like to provide the ability to allow the calls to be made over Web Services to the back-end system. 
    To call the RFMs as web services we have created a Deployable Proxy project, added the proxy as a public part, then referenced that public part in the web dynpro application.  At this point we can write code to call the web service that looks something like:
    InitialContext ctx = new InitialContext();
    Object serviceObject = ctx.lookup("wsclients/proxies/meridium.com/rcmo~proxies/com.meridium.rcmo.ws.proxies.plants.PlantProxy");                                        
    Z_MRDM_GET_PLANTSService service = (Z_MRDM_GET_PLANTSService)ctx.lookup("wsclients/proxies/meridium.com/rcmo~proxies/com.meridium.rcmo.ws.proxies.plants.PlantProxy");
    Z_MRDM_GET_PLANTSPortType port = service.getLogicalPort();
    Z_MRDM_GET_PLANTS plantParameter = new Z_MRDM_GET_PLANTS();
    plantParameter.setI_PLANTID(id);
    plantParameter.setI_PLANTNAME(name);
    Z_MRDM_GET_PLANTSResponse response = port.z_MRDM_GET_PLANTS(plantParameter);
    MT001W[] plantArray = response.getET_PLANTS();
    The problem is that when I call looup to retrieve the service implementation I get a ClassCastException. 
    The tutorials for using a proxy in web dynpro all assume that the web service is what the model is based upon but that's not possbile for our scenario we need to call the proxy from the business objects which are the basis for our model.
    According to the help documentation for consuming a deployable proxy in a JSP page:
    <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/b9766df88f4a24967dae38cb672fe1/frameset.htm">http://help.sap.com/saphelp_nw2004s/helpdata/en/2d/b9766df88f4a24967dae38cb672fe1/frameset.htm</a>
    It discusses adding JNDI mappings.  Is this what's needed for the reference to work in a Web Dypro application too?  If so, how would one add the JNDI mappings references to a Web Dynpro application?
    Many thanks!

    Hi Dheeram,
    I'm not certain about JSPDynpage specifically, but in a general J2EE Enterprise Application project you can add a reference to the application-j2ee-engine.xml file.  For example here's the content of an application-j2ee-engine.xml file that references a proxy:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE application-j2ee-engine SYSTEM "application-j2ee-engine.dtd">
    <application-j2ee-engine>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">com.sap.mw.jco</reference-target>
         </reference>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">com.sap.aii.proxy.framework</reference-target>
         </reference>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">com.sap.aii.util.misc</reference-target>
         </reference>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="interface">tc/sec/destinations/interface</reference-target>
         </reference>
         <reference
              reference-type="hard">
              <reference-target
                   provider-name="sap.com"
                   target-type="library">security.class</reference-target>
         </reference>
         <reference
              reference-type="weak">
              <reference-target
                   provider-name="sap.com"
                   target-type="service">tc~sec~destinations~service</reference-target>
         </reference>
         <reference
              reference-type="weak">
              <reference-target
                   provider-name="sap.com"
                   target-type="interface">tc~sec~destinations~interface</reference-target>
         </reference>
         <reference
              reference-type="weak">
              <reference-target
                   provider-name="engine.sap.com"
                   target-type="service">webdynpro</reference-target>
         </reference>
         <reference
              reference-type="weak">
              <reference-target
                   provider-name="meridium.com"
                   target-type="application">rcmo~proxies</reference-target>
         </reference>
         <provider-name>sap.com</provider-name>
         <fail-over-enable
              mode="disable"/>
    </application-j2ee-engine>

  • Reg Simple Web Dynpro Application

    Hello Gurus,
    I am developing a simple Web Dynpro Application that displays just Purchase Header Details.
    It says the runtime Error, "The exception CX_WD_CONTEXT" was raised but was not caught at any stage in Call Hierarchy.
    Any Suggestions would be rewarded.....
    Regards
    Jay

    Hi,
    I have pasted the short dump....
    ===========================================================
    Runtime Errors         UNCAUGHT_EXCEPTION
    Except.                CX_WD_CONTEXT
    Date and Time          27.02.2007 11:48:17
         ShrtText
              An exception that could not be caught occurred.
         What happened?
              The exception 'CX_WD_CONTEXT' was raised but was not caught at any stage in the
              call hierarchy.
              Since exceptions represent error situations, and since the system could
              not react adequately to this error, the current program,
               'CL_WDR_CONTEXT_NODE_VAL=======CP', had to
              be terminated.
         What can you do?
              Print out the error message (using the "Print" function)
              and make a note of the actions and input that caused the
              error.
              To resolve the problem, contact your SAP system administrator.
              You can use transaction ST22 (ABAP Dump Analysis) to view and administer
               termination messages, especially those beyond their normal deletion
              date.
              is especially useful if you want to keep a particular message.
         Error analysis
              An exception occurred. This exception is dealt with in more detail below
              . The exception, which is assinged to the class 'CX_WD_CONTEXT', was not
               caught,
              which led to a runtime error.
              The reason for this exception is:
              Die Anzahl der Elemente der Kollektion des Knotens INDEX.1.EKKO_ITAB verletzt
              die Kardinalität.
         How to correct the error
              You may able to find an interim solution to the problem
              in the SAP note system. If you have access to the note system yourself,
              use the following search criteria:
              "UNCAUGHT_EXCEPTION" CX_WD_CONTEXTC
              "CL_WDR_CONTEXT_NODE_VAL=======CP" or "CL_WDR_CONTEXT_NODE_VAL=======CM001"
              "CHECK_COLLECTION"
              If you cannot solve the problem yourself and you wish to send
              an error message to SAP, include the following documents:
              1. A printout of the problem description (short dump)
                 To obtain this, select in the current display "System->List->
                 Save->Local File (unconverted)".
              2. A suitable printout of the system log
                 To obtain this, call the system log through transaction SM21.
                 Limit the time interval to 10 minutes before and 5 minutes
                 after the short dump. In the display, then select the function
                 "System->List->Save->Local File (unconverted)".
              3. If the programs are your own programs or modified SAP programs,
                 supply the source code.
                 To do this, select the Editor function "Further Utilities->
                 Upload/Download->Download".
              4. Details regarding the conditions under which the error occurred
                 or which actions and input led to the error.
         System environment
              SAP Release.............. "640"
              Application server....... "diamond"
              Network address.......... "64.72.230.131"
              Operating system......... "Windows NT"
              Release.................. "5.2"
              Hardware type............ "4x Intel 801586"
              Character length......... 8 Bits
              Pointer length........... 32 Bits
              Work process number...... 0
              Short dump setting....... "full"
              Database server.......... "DIAMOND"
              Database type............ "MSSQL"
              Database name............ "ECC"
              Database owner........... "ecc"
              Character set............ "English_United State"
              SAP kernel............... "640"
              Created on............... "Nov 21 2005 00:50:16"
              Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
              Database version......... "SQL_Server_8.00 "
              Patch level.............. "101"
              Patch text............... " "
              Supported environment....
              Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
              SAP database version..... "640"
              Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
              Memory usage.............
              Roll..................... 8112
              EM....................... 12543552
              Heap..................... 0
              Page..................... 0
              MM Used.................. 11868848
              MM Free.................. 672136
              SAP Release.............. "640"
         User and Transaction
         Information on where terminated
              The termination occurred in the ABAP program "CL_WDR_CONTEXT_NODE_VAL=======CP"
               in "CHECK_COLLECTION".
              The main program was "SAPMHTTP ".
              The termination occurred in line 12 of the source code of the (Include)
               program "CL_WDR_CONTEXT_NODE_VAL=======CM001"
              of the source code of program "CL_WDR_CONTEXT_NODE_VAL=======CM001" (when
               calling the editor 120).
         Source Code Extract
         Line     SourceCde
             1     method CHECK_COLLECTION .
             2     
             3       data:
             4         path_name type string,
             5         lines type i.
             6     
             7       lines = lines( me->collection ).
             8     
             9       if ( lines = 0 and abap_true  = me->node_info->is_mandatory ) or
            10          ( lines > 1 and abap_false = me->node_info->is_multiple  ).
            11         path_name = me->if_wd_context_node~get_path( ).
         >>>>>         raise exception type CX_WD_CONTEXT exporting textid = CX_WD_CONTEXT=>COLLECTION_ILLEGAL_
            13       endif.
            14     
            15       lines = lines( me->selection ).
            16     
            17       if ( lines = 0 and abap_true  = me->node_info->is_mandatory_selection ) or
            18          ( lines > 1 and abap_false = me->node_info->is_multiple_selection  ).
            19         path_name = me->if_wd_context_node~get_path( ).
            20         raise exception type CX_WD_CONTEXT exporting textid = CX_WD_CONTEXT=>SELECTION_ILLEGAL_C
            21       endif.
            22     
            23     
            24     endmethod.
         Contents of system fields
         Name     Val.
         SY-SUBRC     0
         SY-INDEX     1
         SY-TABIX     1
         SY-DBCNT     12919
         SY-FDPOS     34
         SY-LSIND     0
         SY-PAGNO     0
         SY-LINNO     1
         SY-COLNO     1
         SY-PFKEY     
         SY-UCOMM     
         SY-TITLE     HTTP Control
         SY-MSGTY     
         SY-MSGID     
         SY-MSGNO     000
         SY-MSGV1     
         SY-MSGV2     
         SY-MSGV3     
         SY-MSGV4     
         Active Calls/Events
         No.   Ty.          Program                             Include                             Line
               Name
            22 METHOD       CL_WDR_CONTEXT_NODE_VAL=======CP    CL_WDR_CONTEXT_NODE_VAL=======CM001    12
               CL_WDR_CONTEXT_NODE_VAL=>CHECK_COLLECTION
            21 METHOD       CL_WDR_CONTEXT_NODE_VAL=======CP    CL_WDR_CONTEXT_NODE_VAL=======CM01B    34
               CL_WDR_CONTEXT_NODE_VAL=>IF_WD_CONTEXT_NODE~BIND_TABLE
            20 METHOD       /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP    /1BCWDY/B_UXWMB4OI2PW6SWO6N6KC       1058
               CL_INDEX_CTR=>WDDOINIT
               Web Dynpro Component          ZJAY_WEBDYN1
               Web Dynpro Controller         INDEX
            19 METHOD       /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP    /1BCWDY/B_UXWMB4OI2PW6SWO6N6KC        167
               CLF_INDEX_CTR=>IF_WDR_VIEW_DELEGATE~WD_DO_INIT
               Web Dynpro Component          ZJAY_WEBDYN1
               Web Dynpro Controller         INDEX
            18 METHOD       CL_WDR_DELEGATING_VIEW========CP    CL_WDR_DELEGATING_VIEW========CM003     3
               CL_WDR_DELEGATING_VIEW=>DO_INIT
            17 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM00Q     3
               CL_WDR_CONTROLLER=>INIT_CONTROLLER
            16 METHOD       CL_WDR_VIEW===================CP    CL_WDR_VIEW===================CM00K     5
               CL_WDR_VIEW=>INIT_CONTROLLER
            15 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002    12
               CL_WDR_CONTROLLER=>INIT
            14 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM008    58
               CL_WDR_VIEW_MANAGER=>GET_VIEW
            13 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM005    23
               CL_WDR_VIEW_MANAGER=>BIND_ROOT
            12 METHOD       CL_WDR_VIEW_MANAGER===========CP    CL_WDR_VIEW_MANAGER===========CM00B    21
               CL_WDR_VIEW_MANAGER=>INIT
            11 METHOD       CL_WDR_INTERFACE_VIEW=========CP    CL_WDR_INTERFACE_VIEW=========CM004     5
               CL_WDR_INTERFACE_VIEW=>INIT_CONTROLLER
            10 METHOD       CL_WDR_CONTROLLER=============CP    CL_WDR_CONTROLLER=============CM002    12
               CL_WDR_CONTROLLER=>INIT
             9 METHOD       CL_WDR_CLIENT_COMPONENT=======CP    CL_WDR_CLIENT_COMPONENT=======CM003    46
               CL_WDR_CLIENT_COMPONENT=>DISPLAY_TOPLEVEL_COMPONENT
             8 METHOD       CL_WDR_CLIENT_APPLICATION=====CP    CL_WDR_CLIENT_APPLICATION=====CM00I    30
               CL_WDR_CLIENT_APPLICATION=>INIT
             7 METHOD       CL_WDR_WEBDYNPRO_MAIN_TASK====CP    CL_WDR_WEBDYNPRO_MAIN_TASK====CM008    29
               CL_WDR_WEBDYNPRO_MAIN_TASK=>IF_WDR_CLIENT_TASK~EXECUTE
             6 METHOD       CL_WDR_CLIENT_MANAGER=========CP    CL_WDR_CLIENT_MANAGER=========CM004    18
               CL_WDR_CLIENT_MANAGER=>PROCESS_TASK_LISTS
             5 METHOD       CL_WDR_CLIENT_MANAGER=========CP    CL_WDR_CLIENT_MANAGER=========CM002    99
               CL_WDR_CLIENT_MANAGER=>DO_PROCESSING
             4 METHOD       CL_HTTP_EXT_WEBDYNPRO=========CP    CL_HTTP_EXT_WEBDYNPRO=========CM001    77
               CL_HTTP_EXT_WEBDYNPRO=>IF_HTTP_EXTENSION~HANDLE_REQUEST
             3 METHOD       CL_HTTP_SERVER================CP    CL_HTTP_SERVER================CM00D   645
               CL_HTTP_SERVER=>EXECUTE_REQUEST
             2 FUNCTION     SAPLHTTP_RUNTIME                    LHTTP_RUNTIMEU02                      879
               HTTP_DISPATCH_REQUEST
             1 MODULE (PBO) SAPMHTTP                            SAPMHTTP                               13
               %_HTTP_START
         Chosen variables
         Name
             Val.
         No.         22     Ty.      METHOD
         Name      CL_WDR_CONTEXT_NODE_VAL=>CHECK_COLLECTION
         ABAP_TRUE
              X
                 5
                 8
         ME->NODE_INFO->IS_MANDATORY
              X
                 5
                 8
         LINES
              12919
                 7300
                 7200
         %_DUMMY$$
                 2222
                 0000
         SYST-REPID
              CL_WDR_CONTEXT_NODE_VAL=======CP
                 4455455444545554444554433333334522222222
                 3CF742F3FE4584FEF45F61CDDDDDDD3000000000
         ABAP_FALSE
                 2
                 0
         ME->NODE_INFO->IS_MULTIPLE
                 2
                 0
         SY-REPID
              CL_WDR_CONTEXT_NODE_VAL=======CP
                 4455455444545554444554433333334522222222
                 3CF742F3FE4584FEF45F61CDDDDDDD3000000000
         ME
              O:167*=CL_WDR_CONTEXT_NODE_VAL
                 5000A000
                 80007000
         RSJOBINFO
                                              00000000000000                                  ####
                 222222222222222222222222222222223333333333333322222222222222222222222222222222220000
                 000000000000000000000000000000000000000000000000000000000000000000000000000000000000
         PATH_NAME
              INDEX.1.EKKO_ITAB
                 44445232444454544
                 9E458E1E5BBFF9412
         SY
              ########################################w2##"#################################################
                 0000000000000000000000000000000000000000730020000000000000000000000000000000000000000000000000
                 1000000010001000000000000000000000000000720020001000000010000000000000000000800000000000000000
         %_EXCP
              O:13087*=CX_WD_CONTEXT
                 E0001300
                 0000F300
         SPACE
                 2
                 0
         CX_WD_CONTEXT=>COLLECTION_ILLEGAL_CARDINALITY
              B5CA499B9D5CBA47B8D4664C56B3A97C
                 43443334343444334343333433434334
                 25314992945321472844664356231973
         ME->SELECTION
              Table[initial]
         ME->NODE_INFO->IS_MANDATORY_SELECTION
                 2
                 0
         ME->NODE_INFO->IS_MULTIPLE_SELECTION
                 2
                 0
         No.         21     Ty.      METHOD
         Name      CL_WDR_CONTEXT_NODE_VAL=>IF_WD_CONTEXT_NODE~BIND_TABLE
         NEW_ITEMS
              Table IT_325[12919x492]
                 POOL=/1BCWDY/MXAJIDSD2PZXCNSR7DDN=CL_INDEX_CTR=WDDOINIT=ITAB_EKKO
                 Table reference: 153
                 TABH+  0(20) = C8E8E33CD0C4E73C000000009900000045010000
                 TABH+ 20(20) = 77320000EC010000FFFFFFFF04C30000801B0000
                 TABH+ 40( 8) = 10000000C1308000
                 store        = 0xC8E8E33C
                 ext1         = 0xD0C4E73C
                 shmId        = 0     (0x00000000)
                 id           = 153   (0x99000000)
                 label        = 325   (0x45010000)
                 fill         = 12919 (0x77320000)
                 leng         = 492   (0xEC010000)
                 loop         = -1    (0xFFFFFFFF)
                 xtyp         = TYPE#000116
                 occu         = 16    (0x10000000)
                 access       = 1     (ItAccessStandard)
                 idxKind      = 0     (ItIndexNone)
                 uniKind      = 2     (ItUniqueNon)
                 keyKind      = 1     (default)
                 cmpMode      = 8     (cmpManyEq)
                 occu0        = 1
                 collHash     = 0
                 groupCntl    = 0
                 rfc          = 0
                 unShareable  = 0
                 mightBeShared = 0
                 sharedWithShmTab = 0
                 isShmLockId  = 0
                 gcKind       = 0
                 isUsed       = 1
                 >>>>> Shareable Table Header Data <<<<<<br /> tabi = 0xF8C9E33C
    pghook = 0x08E9E33C
    idxPtr = 0x00000000
    refCount = 0 (0x00000000)
    tstRefCount = 0 (0x00000000)
    lineAdmin = 16368 (0xF03F0000)
    lineAlloc = 12944 (0x90320000)
    store_id = 202 (0xCA000000)
    shmIsReadOnly = 0 (0x00000000)
    >>>>> 1st level extension part <<<<<<br /> regHook = 0x80EFFE3C
    hsdir = 0x00000000
    ext2 = 0x00000000
    >>>>> 2nd level extension part <<<<<<br /> tabhBack = Not allocated
    delta_head = Not allocated
    pb_func = Not allocated
    pb_handle = Not allocated
    SET_INITIAL_ELEMENTS
    X
    5
    8
    ELEMENT
    O:13086*=CL_WDR_CONTEXT_ELEMENT
    E0001300
    1000E300
    ELEMENT->NODE
    O:167*=CL_WDR_CONTEXT_NODE_VAL
    5000A000
    80007000
    ME
    O:167*=CL_WDR_CONTEXT_NODE_VAL
    5000A000
    80007000
    ME->COLLECTION
    Table IT_330[12919x8]
    O:167*=CL_WDR_CONTEXT_NODE_VAL=COLLECTION
    Table reference: 157
    TABH+ 0(20) = 78F2FE3C00000000000000009D0000004A010000
    TABH+ 20(20) = 7732000008000000FFFFFFFF04D10000E0030000
    TABH+ 40( 8) = 10000000C1288000
    store = 0x78F2FE3C
    ext1 = 0x00000000
    shmId = 0 (0x00000000)
    id = 157 (0x9D000000)
    label = 330 (0x4A010000)
    fill = 12919 (0x77320000)
    leng = 8 (0x08000000)
    loop = -1 (0xFFFFFFFF)
    xtyp = TYPE#000008
    occu = 16 (0x10000000)
    access = 1 (ItAccessStandard)
    idxKind = 0 (ItIndexNone)
    uniKind = 2 (ItUniqueNon)
    keyKind = 1 (default)
    cmpMode = 4 (cmpSingleEq)
    occu0 = 1
    collHash = 0
    groupCntl = 0
    rfc = 0
    unShareable = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId = 0
    gcKind = 0
    isUsed = 1
    >>>>> Shareable Table Header Data <<<<<<br /> tabi = 0xE8F1FE3C
    pghook = 0x18B8D83C
    idxPtr = 0x00000000
    refCount = 0 (0x00000000)
    tstRefCount = 0 (0x00000000)
    lineAdmin = 15408 (0x303C0000)
    lineAlloc = 13360 (0x30340000)
    store_id = 207 (0xCF000000)
    shmIsReadOnly = 0 (0x00000000)
    >>>>> 1st level extension part <<<<<<br /> regHook = Not allocated
    hsdir = Not allocated
    ext2 = Not allocated
    >>>>> 2nd level extension part <<<<<<br /> tabhBack = Not allocated
    delta_head = Not allocated
    pb_func = Not allocated
    pb_handle = Not allocated
    SY-TABIX
    1
    0000
    1000
    %_SPACE
    2
    0
    ME->LEAD_SELECTION_INDEX
    1
    0000
    1000
    ME->LEAD_SELECTION
    O:168*=CL_WDR_CONTEXT_ELEMENT
    5000A000
    70008000
    ME->NODE_INFO->IS_MANDATORY_SELECTION
    2
    0
    ME->SELECTION
    Table[initial]
    ME->NODE_INFO->IS_INITIALIZE_LEAD_SELECTION
    X
    5
    8
    ME->IF_WD_CONTEXT_NODE~NO_SELECTION
    -1
    FFFF
    FFFF
    ME->ELEMENTS_SUPPLIED
    2
    0
    No. 20 Ty. METHOD
    Name CL_INDEX_CTR=>WDDOINIT
    IF_WDR_APPLICATIONAPPLICATION_INFO->STARTUP_PLUG->IF_WD_RR_PARAM_FEATUREPARAMETERS
              Table[initial]
         State Dump for Thread Id 1488
         eax=00000001 ebx=00000103 ecx=fffffffe edx=003c0000 esi=00000000 edi=00000000
         eip=7c82ed54 esp=0589feb0 ebp=0589fef4 iopl=0         nv up ei pl zr na po nc
         cs=001b  ss=0023  ds=0023  es=0023  fs=003b  gs=0000             efl=00000246
         function : KiFastSystemCallRet
                 7c82ed54 c3               ret
                 7c82ed55 8da42400000000   lea     esp,[esp]              ss:0589feb0=7c821514
                 7c82ed5c 8d642400         lea     esp,[esp]              ss:098bd47f=00000000
         FramePtr ReturnAd Param#1  Param#2  Param#3  Param#4  Function Name
         0589fef4 00ff70c7 000006c4 00000000 00000000 044bed68 ntdll!KiFastSystemCallRet
         0589ff84 7c349565 00000000 00000000 00000000 044becd0 disp+work!SigIMsgFunc
         0589ffb8 77e6608b 044becd0 00000000 00000000 044becd0 MSVCR71!endthreadex
         0589ffec 00000000 7c3494f6 044becd0 00000000 00000000 kernel32!GetModuleFileNameA
         List of ABAP programs affected
         Index     Ty.     Program     Group     Date     Time     Size     Lang.
              0     Prg     SAPMHTTP          0     06.11.2003     20:57:21          6144     E
              1     Prg     SAPLHTTP_RUNTIME          1     12.11.2004     04:12:18        152576     E
              2     Typ     ICFHANDLST          0     21.11.2003     11:40:58         13312     
              3     Prg     %_CIHTTP          1     12.11.2004     03:26:38         36864     E
              4     Typ     ICFSERVICE          0     21.11.2003     11:41:18         13312     
              5     Typ     ICFATTRIB          0     06.11.2003     20:36:18          4096     
              6     Typ     ICFLOGIN          0     12.11.2004     03:26:38          9216     
              7     Prg     CL_HTTP_SERVER================CP          7     12.11.2004     04:13:34        154624     E
              8     Typ     ICFRECORDER          0     06.11.2003     20:36:19         12288     
              9     Typ     IOPROP          0     29.03.2001     16:07:43          2048     
             10     Typ     ICFSTAT          0     09.11.2000     14:08:22          2048     
             11     Prg     CL_HTTP_UTILITY===============CP         11     12.11.2004     03:48:49         15360     E
             12     Prg     CL_ABAP_TRACE=================CP         12     06.11.2003     21:53:44          6144     E
             13     Prg     CL_ICF_RECORDER===============CP         13     12.11.2004     03:26:45          8192     E
             14     Prg     CL_HTTP_SERVER_NET============CP         14     12.11.2004     04:13:34        101376     E
             15     Typ     ICFRECODER_LOGON          0     06.11.2003     20:28:45          3072     
             16     Prg     CL_ABAP_RUNTIME===============CP         16     06.11.2003     20:59:29          8192     E
             17     Prg     CL_HTTP_REQUEST===============CP         17     12.11.2004     03:48:50         20480     E
             18     Prg     CL_HTTP_ENTITY================CP         18     12.11.2004     03:48:50         41984     E
             19     Prg     CL_HTTP_RESPONSE==============CP         19     12.11.2004     04:13:34         24576     E
             20     Typ     ICFALIAS          0     21.11.2003     11:41:17         13312     
             21     Typ     ICFVIRHOST          0     19.01.2001     18:13:06          2048     
             22     Typ     ICFBUFFER          0     21.11.2003     11:41:18         16384     
             23     Prg     SAPLSHTTP         23     12.11.2004     03:49:05        166912     E
             24     Typ     ICFAPPLCUST          0     21.11.2003     11:41:17          2048     
             25     Prg     CL_HTTP_USER_CONTEXT==========CP         25     12.11.2004     03:48:50          9216     E
             26     Typ     BAPIALIAS          0     09.12.1999     13:47:51          1024     
             27     Prg     SAPLLANG         27     06.11.2003     20:53:03          8192     E
             28     Typ     T002          0     14.02.1998     10:24:58          2048     
             29     Typ     ABAPTEXT          0     16.03.1993     18:19:31          1024     
             30     Prg     SAPLSCP2         30     23.11.2004     18:49:18        126976     E
             31     Prg     SSO2GETPARAM          1     06.11.2003     20:57:30         15360     E
             32     Prg     SAPLSSFG         32     09.12.2003     11:41:04        116736     E
             33     Typ     SSFARGS          0     19.11.2001     15:50:14          5120     
             34     Typ     PARMVALUES          0     03.01.1996     15:26:26          2048     
             35     Prg     SAPLSPFC         35     12.11.2004     03:38:48        239616     E
             36     Typ     MOD_FIELDS          0     16.07.1997     14:42:34          2048     
             37     Typ     SSF_PSE_H          0     15.11.2000     17:54:53          4096     
             38     Typ     ICFRECSTRU          0     06.11.2003     20:28:45          2048     
             39     Prg     SAPLSAUTHTRACE         39     16.03.2004     20:07:17         43008     E
             40     Typ     IHTTPNVP          0     29.03.2001     16:07:42          2048     
             41     Prg     CL_HTTP_EXT_WEBDYNPRO=========CP         41     12.11.2004     03:49:03         49152     E
             42     Prg     IF_HTTP_EXTENSION=============IP          7     29.03.2001     17:03:40          5120     E
             43     Prg     CL_HTTP_EXT_1X1_GIF===========CP         43     12.11.2004     03:48:51         11264     E
             44     Prg     IF_HTTP_HEADER_FIELDS_SAP=====IP         43     06.06.2001     13:26:02          5120     E
             45     Prg     CL_WDR_CLIENT_MANAGER=========CP         45     12.11.2004     03:48:52         47104     E
             46     Prg     CL_WDR_TASK===================CP         46     12.11.2004     03:49:04         46080     E
             47     Prg     CL_WDR_EVENT_QUEUE============CP         47     06.11.2003     21:11:25         10240     E
             48     Prg     CX_WDR_RT_EXCEPTION===========CP         48     06.11.2003     21:15:08         15360     E
             49     Typ     SCX_SRCPOS          0     09.11.2000     14:12:15          2048     
             50     Prg     CX_WD_EXCEPTION===============CP         50     06.11.2003     21:15:11         10240     E
             51     Prg     CX_NO_CHECK===================CP         51     06.11.2003     21:33:04          8192     E
             52     Prg     CX_ROOT=======================CP         52     06.11.2003     21:56:05          9216     E
             53     Prg     CL_WDR_CLIENT_SSR=============CP         53     12.11.2004     04:21:19        121856     E
             54     Prg     CL_WDR_CLIENT_ABSTRACT_HTTP===CP         54     12.11.2004     03:48:52         58368     E
             55     Prg     CL_DYNP_GLOBAL_CONTROL========CP         55     06.11.2003     21:02:15          7168     E
             56     Prg     CL_WDR_CLIENT_INSPECTOR=======CP         56     12.11.2004     03:48:49         39936     E
             57     Typ     WDR_CLIENTS          0     06.11.2003     20:38:42          2048     
             58     Typ     WDR_CLIENT_DATA          0     06.11.2003     20:33:21          2048     
             59     Prg     CL_WDR_CLIENT_CONSTANTS=======CP         59     06.11.2003     21:11:17         12288     E
             60     Prg     CL_WDR_CLIENT_CSF=============CP         60     12.11.2004     03:48:50        103424     E
             61     Prg     IF_WDR_CLIENT_DESCRIPTION=====IP         56     06.11.2003     21:34:13          3072     E
             62     Prg     CL_WDR_CLIENT_CSF_COND========CP         62     12.11.2004     03:26:52         32768     E
             63     Prg     CL_WDR_CLIENT_ABSTRACT_COND===CP         63     12.11.2004     03:26:52         32768     E
             64     Prg     IF_WDR_CLIENT_CONDITION=======IP         56     06.11.2003     21:34:13         29696     E
             65     Prg     IF_WDR_CLIENT_INFO_OBJECT_HDL=IP         56     06.11.2003     21:34:13         29696     E
             66     Prg     CL_WDR_CLIENT_XML=============CP         66     12.11.2004     03:48:49         80896     E
             67     Prg     CL_WDR_CLIENT_XML_COND========CP         67     12.11.2004     03:48:49         32768     E
             68     Prg     CL_WDR_VIEW_ELEM_ADAPTER_MNG==CP         68     06.11.2003     22:00:29         49152     E
             69     Prg     CL_WDR_UIEL_ADAPTER_MANAGER===CP         69     16.03.2004     19:57:19         13312     E
             70     Prg     CL_WDR_ABSTRCT_ADAPTER_MANAGERCP         70     06.11.2003     21:11:15          9216     E
             71     Typ     WDY_MD_CHANGE_INFORMATION          0     06.11.2003     20:33:22          2048     
             72     Typ     WDY_UI_LIBRARY          0     06.11.2003     20:38:47          3072     
             73     Prg     CL_EXITHANDLER================CP         73     12.11.2004     03:49:03         27648     E
             74     Prg     CL_ABAP_TYPEDESCR=============CP         74     07.11.2003     13:01:59         26624     E
             75     Prg     CL_ABAP_ELEMDESCR=============CP         75     06.11.2003     22:11:36         33792     E
             76     Prg     CL_ABAP_DATADESCR=============CP         76     06.11.2003     22:10:04         16384     E
             77     Prg     CL_ABAP_REFDESCR==============CP         77     07.11.2003     13:01:58         20480     E
             78     Prg     CL_ABAP_STRUCTDESCR===========CP         78     21.11.2003     11:42:45         34816     E
             79     Prg     CL_ABAP_COMPLEXDESCR==========CP         79     06.11.2003     22:10:04         14336     E
             80     Prg     CL_ABAP_TABLEDESCR============CP         80     06.11.2003     22:11:36         21504     E
             81     Prg     CL_ABAP_CLASSDESCR============CP         81     06.11.2003     22:11:36         25600     E
             82     Prg     CL_ABAP_OBJECTDESCR===========CP         82     06.11.2003     22:11:36         29696     E
             83     Prg     CL_ABAP_INTFDESCR=============CP         83     06.11.2003     22:11:36         20480     E
             84     Prg     CL_ABAP_SOFT_REFERENCE========CP         84     06.11.2003     20:41:10          8192     E
             85     Prg     CL_ABAP_REFERENCE=============CP         85     06.11.2003     20:52:43          6144     E
             86     Prg     IF_EX_WDR_UIE_LIBRARY=========IP         77     09.12.2003     11:45:52          4096     E
             87     Prg     %_CABAP         83     06.11.2003     22:07:49         25600     E
             88     Typ     SXS_INTER          0     30.11.1998     15:55:16          2048     
             89     Prg     SAPLSEXV         89     16.03.2004     20:14:01        108544     E
             90     Prg     CL_BADI_FLT_DATA_TRANS_AND_DB=CP         90     12.11.2004     03:49:03         35840     E
             91     Typ     SXS_ATTR          0     20.08.2001     12:23:27          4096     
             92     Typ     V_EXT_ACT          0     09.11.2000     14:27:05          2048     
             93     Typ     SXC_EXIT          0     09.11.2000     14:23:43          2048     
             94     Prg     SAPLSEXE         94     12.11.2004     03:49:05         78848     E
             95     Typ     TADIR          0     09.11.2000     14:14:40          4096     
             96     Prg     SAPLPA_PACKAGE_SERVICES         96     12.11.2004     04:12:26        121856     E
             97     Typ     SXS_MLCO          0     04.12.2000     14:59:55          2048     
             98     Prg     CL_EX_WDR_UIE_LIBRARY=========CP         98     09.12.2003     11:43:56         24576     E
             99     Prg     CL_WDR_EVENT_ADAPTER_MANAGER==CP         99     06.11.2003     22:00:29         35840     E
            100     Prg     CL_WDR_CLIENT_SSR_COND========CP        100     12.11.2004     03:48:49         33792     E
            101     Prg     CL_WDR_SERVER_SESSION=========CP        101     09.12.2003     11:39:43         39936     E
            102     Prg     CL_WDR_CLIENT_INFO_OBJECT=====CP        102     06.11.2003     21:11:17         12288     E
            103     Prg     CL_WDR_CLIENT_USER============CP        103     06.11.2003     21:11:19         34816     E
            104     Prg     SAPLISOC        104     06.11.2003     20:53:02         26624     E
            105     Prg     CL_WDR_LOCALE=================CP        105     06.11.2003     21:11:28          7168     E
            106     Prg     CL_WDR_CLIENT_SESSION=========CP        106     06.11.2003     21:11:18         36864     E
            107     Typ     WDR_NAME_VALUE          0     06.11.2003     20:33:21          2048     
            108     Prg     CL_WDR_CLIENT_WINDOW==========CP        108     06.11.2003     21:11:19         40960     E
            109     Prg     IF_WDR_CLIENT=================IP         56     06.11.2003     21:34:13         30720     E
            110     Prg     CX_SY_MOVE_CAST_ERROR=========CP        110     06.11.2003     20:41:23          9216     E
            111     Prg     CX_DYNAMIC_CHECK==============CP        111     06.11.2003     21:33:04          8192     E
            112     Prg     CL_WDR_REC_PLUGIN_MANAGER=====CP        112     06.11.2003     22:00:29         50176     E
            113     Typ     WDR_REC_PLUGIN          0     06.11.2003     20:38:42          2048     
            114     Prg     SAPLSPLUGIN        114     06.11.2003     21:28:25          6144     E
            115     Prg     CL_WDR_WEBDYNPRO_MAIN_TASK====CP        115     12.11.2004     03:49:04         60416     E
            116     Prg     IF_WDR_CLIENT_TASK============IP         45     06.11.2003     21:34:13          4096     E
            117     Typ     WDR_EVENT_ADAPTER          0     09.12.2003     11:37:55          2048     
            118     Prg     CL_WDAL_URD2_DYNPRO_CONVERSIONCP        118     12.11.2004     04:21:19        263168     E
            119     Prg     CL_WDR_SYSTEM_EVT_HANDLER_REG=CP        119     06.11.2003     21:11:35         33792     E
            120     Prg     CL_WDR_ABSTRACT_SRV_EVTHDL_REGCP        120     06.11.2003     21:11:15         34816     E
            121     Prg     CL_WDR_CLIENT_APPLICATION=====CP        121     12.11.2004     03:48:49         67584     E
            122     Prg     CL_WDR_CLIENT_COMPONENT=======CP        122     09.12.2003     11:39:43         64512     E
            123     Prg     CL_WDR_RR_RUNTIME_REPOSITORY==CP        123     16.03.2004     19:57:19         27648     E
            124     Prg     CL_WDR_RR_APPLICATION=========CP        124     06.11.2003     22:00:29         29696     E
            125     Typ     WDY_APPLICATION          0     06.11.2003     20:38:43          3072     
            126     Prg     CX_WDR_RR_EXCEPTION===========CP        126     09.12.2003     11:39:45         15360     E
            127     Typ     WDY_RT_OBJECT_MAP          0     06.11.2003     20:33:24          2048     
            128     Prg     CL_WDR_RR_COMPONENT===========CP        128     12.11.2004     03:49:04         73728     E
            129     Typ     WDY_RR_COMPONENT          0     27.01.2004     13:51:32          2048     
            130     Typ     WDY_RR_VIEW          0     06.11.2003     20:33:24          2048     
            131     Typ     WDY_RR_VIEW          0     06.11.2003     20:33:24          2048     
            132     Typ     WDY_RR_WINDOW          0     06.11.2003     20:33:24          2048     
            133     Typ     WDY_RR_WINDOW          0     06.11.2003     20:33:24          2048     
            134     Typ     WDY_RR_COMPO_USAGE          0     06.11.2003     20:33:23          2048     
            135     Typ     WDY_RR_COMPO_USAGE          0     06.11.2003     20:33:23          2048     
            136     Typ     WDY_RR_CONTROLLER          0     06.11.2003     20:33:23          2048     
            137     Typ     WDY_RR_CONTROLLER          0     06.11.2003     20:33:23          2048     
            138     Typ     WDY_RR_VUSAGE          0     06.11.2003     20:33:24          3072     
            139     Typ     WDY_RR_VUSAGE          0     06.11.2003     20:33:24          3072     
            140     Typ     WDY_RR_VCA_INFO          0     06.11.2003     20:33:23          2048     
            141     Typ     WDY_RR_VCA_INFO          0     06.11.2003     20:33:23          2048     
            142     Typ     WDY_RR_NAV_LINK          0     06.11.2003     20:33:23          2048     
            143     Typ     WDY_RR_NAV_LINK          0     06.11.2003     20:33:23          2048     
            144     Typ     WDY_RR_NAV_TARGREF          0     06.11.2003     20:33:23          2048     
            145     Typ     WDY_RR_NAV_TARGREF          0     06.11.2003     20:33:23          2048     
            146     Typ     WDY_SUBSCRIBED_EVENT          0     06.11.2003     20:33:24          2048     
            147     Typ     WDY_SUBSCRIBED_INBOUND_PLUG          0     06.11.2003     20:33:24          2048     
            148     Typ     WDY_RR_CTLR_COMPO          0     06.11.2003     20:33:23          3072     
            149     Typ     WDY_RR_CTLR_COMPO          0     06.11.2003     20:33:23          3072     
            150     Typ     WDY_RR_UI_EVT_BIND          0     06.11.2003     20:33:23          2048     
            151     Typ     WDY_RR_UI_EVT_BIND          0     06.11.2003     20:33:23          2048     
            152     Typ     WDY_RR_UI_VIEW_CONT          0     06.11.2003     20:33:23          2048     
            153     Typ     WDY_RR_UI_VIEW_CONT          0     06.11.2003     20:33:23          2048     
            154     Typ     WDY_RR_IOBOUND_PLUG          0     06.11.2003     20:33:23          2048     
            155     Typ     WDY_RR_IOBOUND_PLUG          0     06.11.2003     20:33:23          2048     
            156     Typ     WDY_RR_PARAMETER          0     06.11.2003     20:33:23          2048     
            157     Typ     WDY_RR_PLUG_PARAMS          0     06.11.2003     20:33:23          3072     
            158     Typ     WDY_RR_PLUG_PARAMS          0     06.11.2003     20:33:23          3072     
            159     Typ     WDY_RR_UI_ELEM_DEFS          0     06.11.2003     20:33:23          3072     
            160     Typ     WDY_RR_UI_ELEM_DEFS          0     06.11.2003     20:33:23          3072     
            161     Typ     WDY_RR_UI_ELEM          0     06.11.2003     20:33:23          3072     
            162     Typ     WDY_RR_UI_ELEM          0     06.11.2003     20:33:23          3072     
            163     Typ     WDY_RR_CLUSTER          0     27.01.2004     13:51:32         21504     
            164     Prg     CL_WDY_MD_PARAM_FEATURE=======CP        164     16.03.2004     20:12:30         25600     E
            165     Typ     WDY_MD_OBJECT_DESCRIPTION          0     09.12.2003     11:37:56          2048     
            166     Prg     CL_WDY_MD_OBJECT==============CP        166     06.11.2003     22:00:30         12288     E
            167     Prg     CL_WDR_RR_DB==================CP        167     16.03.2004     20:12:30         82944     E
            168     Typ     WDY_COMPONENT          0     06.11.2003     20:38:43          3072     
            169     Typ     WDY_RR_TEXT          0     06.11.2003     20:33:23          2048     
            170     Typ     SOTR_KEY          0     09.12.1999     13:48:20          2048     
            171     Typ     SOTR_TERM          0     15.11.2000     17:54:28          3072     
            172     Prg     SAPLSOTR_DB_READ        172     12.11.2004     04:15:08         39936     E
            173     Typ     SOTR_CNTXT          0     09.12.1999     13:48:20          2048     
            174     Typ     SOTR_ADMIN          0     09.12.1999     13:48:20          2048     
            175     Typ     SOTR_TEXT          0     06.11.2003     20:31:14          5120     
            176     Typ     SOTR_HEAD          0     15.11.2000     17:54:28          4096     
            177     Prg     CL_WDR_RR_EMPTY_VIEW==========CP        177     06.11.2003     21:11:32         28672     E
            178     Prg     CL_WDR_RR_ABSTRACT_VIEW=======CP        178     06.11.2003     22:00:29         35840     E
            179     Prg     CL_WDR_RR_INBOUND_PLUG========CP        179     06.11.2003     21:11:32         32768     E
            180     Prg     CL_WDR_RR_INCOMING_EVENT======CP        180     06.11.2003     21:11:32         26624     E
            181     Prg     CL_WDR_RR_PARAM_FEATURE=======CP        181     06.11.2003     21:11:33         28672     E
            182     Prg     CL_WDR_RR_COMPONENT_INTF_IMPL=CP        182     06.11.2003     21:11:31         29696     E
            183     Prg     CL_WDR_RR_COMPONENT_INTERFACE=CP        183     06.11.2003     21:11:30         31744     E
            184     Prg     CL_WDR_RR_CONTROLLER==========CP        184     06.11.2003     22:00:29         36864     E
            185     Prg     CL_WDR_RR_WINDOW==============CP        185     06.11.2003     22:00:29         43008     E
            186     Prg     CL_WDR_RR_VIEW_USAGE==========CP        186     06.11.2003     22:00:29         54272     E
            187     Prg     CL_WDY_MD_ABSTRACT_VIEW=======CP        187     19.07.2004     03:41:57         96256     E
            188     Typ     WDY_VIEW          0     06.11.2003     20:38:47          4096     
            189     Prg     CL_WDR_RR_VIEW================CP        189     06.11.2003     22:00:29         39936     E
            190     Prg     CL_WDR_RR_INTERFACE_VIEW======CP        190     06.11.2003     21:11:32         30720     E
            191     Prg     CL_WD_TODO====================CP        191     06.11.2003     21:12:50         24576     E
            192     Prg     CL_WDR_CONFIGURATION_CONSTANTSCP        192     06.11.2003     21:11:20          6144     E
            193     Prg     CL_WDR_SERVER_CONSTANTS=======CP        193     06.11.2003     21:11:34          6144     E
            194     Prg     CL_WDR_UI_ELEMENT_FACTORY=====CP        194     06.11.2003     21:11:36         31744     E
            195     Prg     /1BCWDY/MXAJIDSD2PZXCNSR7DDN==CP        195     24.02.2007     13:45:21         89088     E
            196     Prg     IF_WDR_CLASSLOADER============IP        122     06.11.2003     21:34:13         27648     E
            197     Prg     CL_WDR_DELEGATING_COMPONENT===CP        197     06.11.2003     21:11:24         46080     E
            198     Prg     CL_WDR_COMPONENT==============CP        198     06.11.2003     22:09:16         60416     E
            199     Prg     CL_WDR_CONTROLLER=============CP        199     06.11.2003     22:00:29         45056     E
            200     Prg     IF_WDR_CONTEXT================IP        197     06.11.2003     21:34:13         27648     E
            201     Typ     WDR_CONTEXT_ATTR_VALUE          0     06.11.2003     20:33:21          2048     
            202     Typ     WDR_CONTEXT_ATTR_VALUE          0     06.11.2003     20:33:21          2048     
            203     Typ     WDR_CONTEXT_ATTRIBUTE_INFO          0     06.11.2003     20:33:21          3072     
            204     Typ     WDR_CONTEXT_MAPPING_INFO          0     06.11.2003     20:33:21          2048     
            205     Prg     CL_WDR_CONTEXT_NODE_INFO======CP        205     09.12.2003     11:39:43         29696     E
            206     Prg     CX_WD_CONTEXT=================CP        206     06.11.2003     21:15:10         12288     E
            207     Prg     CL_WDR_CONTEXT_NODE===========CP        207     09.12.2003     11:39:43         45056     E
            208     Typ     WDR_CONTEXT_CHILD          0     06.11.2003     20:33:21          2048     
            209     Prg     CL_WDR_CONTEXT_NODE_VAL=======CP        209     09.12.2003     11:39:43         66560     E
            210     Prg     IF_WDR_COMPONENT_DELEGATE=====IP        195     16.03.2004     20:12:31         27648     E
            211     Prg     IF_WD_CONTROLLER==============IP        197     09.12.2003     11:46:03         27648     E
            212     Prg     CL_WDR_MESSAGE_MANAGER========CP        212     09.12.2003     11:39:43         74752     E
            213     Prg     CL_WDR_DATA_CONTAINER=========CP        213     09.12.2003     11:39:43         69632     E
            214     Typ     WDY_RT_DATA_CONT_ATTR_MAP          0     06.11.2003     20:33:24          3072     
            215     Typ     WDY_RT_DATA_CONT_CNTL          0     06.11.2003     20:33:24          2048     
            216     Prg     CL_WDR_APPLICATION_WINDOW=====CP        216     06.11.2003     21:11:15         44032     E
            217     Prg     CL_WDR_WINDOW=================CP        217     06.11.2003     22:00:29         50176     E
            218     Prg     IF_WDR_APPLICATION============IP        101     06.11.2003     22:07:12         29696     E
            219     Typ     WDR_EVENT_PARAMETER          0     06.11.2003     20:33:21          2048     
            220     Typ     WDR_VIEWMAN_LINE          0     06.11.2003     20:33:21          2048     
            221     Prg     CL_WDR_VIEW_MANAGER===========CP        221     12.11.2004     03:49:04         70656     E
            222     Prg     IF_WDR_VIEW_MANAGER===========IP        221     06.11.2003     22:07:12         27648     E
            223     Typ     WDR_CONTROLLER_LINE          0     06.11.2003     20:33:21          2048     
            224     Prg     CX_WDR_BAD_STATE==============CP        224     06.11.2003     21:15:06          9216     E
            225     Prg     CX_WDR_RUNTIME================CP        225     06.11.2003     21:15:08         10240     E
            226     Typ     WDR_CLIENTCOMP_LINE          0     06.11.2003     20:33:21          2048     
            227     Prg     CL_WDR_WINDOW_MANAGER=========CP        227     06.11.2003     21:11:39         37888     E
            228     Prg     CL_WDR_DELEGATING_IF_VIEW=====CP        228     06.11.2003     21:11:24         45056     E
            229     Prg     CL_WDR_INTERFACE_VIEW=========CP        229     06.11.2003     21:11:28         43008     E
            230     Prg     CL_WDR_VIEW===================CP        230     06.11.2003     22:00:29         62464     E
            231     Prg     IF_WDR_VIEW_DELEGATE==========IP        195     16.03.2004     20:12:31         27648     E
            232     Prg     IF_WD_CONTEXT_NODE============IP        228     09.12.2003     11:46:03         31744     E
            233     Prg     IF_WD_CONTEXT_NODE_INFO=======IP        228   

  • Connect Web Dynpro Application to a Web service

    Hi experts,
    I am trying to connect a Web Dynpro application to a SOAP Web service.
    I have downloaded the WDSL code and save it to a file in my hard disk.
    I used the create model wizard (Import adaptive web service model) and created a model in my Web Dynpro application.
    I have connected the component controller with the model and the view of the application to the controller.
    All content node elements that have created automatically in the model, have in cardinality property the value 0..1.
    I created input elements in the view but they are gray and not available (disabled).
    The read only properity of the input elements has the value "false".
    I tried to initiate the input element by putting the following code in wdDoInit() but with no luck.
    wdContext.nodeRequest_ProcessTransaction().nodeProcessTransaction().nodeTransactionRequest().nodeHeader().nodeMerchantInfo().currentMerchantInfoElement().setAcquirerID("xxxx");
    Can someone help with this?
    Thanks in Advanced.

    Hi,
    After importing the model, you need to create the instance for the model. Instantiate the Request object and then set the input parameters. Then you have to call the execute function, then the model will be executed and you will get  the data.
    Also instead of putting the code which you have wriiten in init, you can use:
    wdContext.nodeMerchantInfo().currentMerchantInfoElement().setAcquirerID("xxxx");
    You can directly access the node, no need to traverse the whole hierarchy.
    Regards,
    Manoj

  • Error - Creating a Web Dynpro Application Accessing ABAP Functions

    Dear All,
    we are trying to implement a web dynpro application with accessing ABAP functions.
    Previous tasks:
    -     insert the ABAP system into the SLD from the NWDI System (Transaction RZ70; the ABAP system is correctly insert into the SLD => technical systems)
    -     equipped the JCO connections with the web dynpro content manager (ping and test = OK)
    It’s the standard tutorial out of the SDN called “Creating a Web Dynpro Application Accessing ABAP Functions”.
    Some hints:
    -     There are no errors after the implementation and the “rebuild” of the project in the NWDS
    -     The auto deployment works fine to the development runtime system. The application is shown in the Web Dynpro content manager
    -     The In the build log I found these entries:
    System.err] [Invoked from  com.sap.s2x.tools.GUID.getnodeaddress(GUID.java:585)]
    [System.err] java.net.UnknownHostException: FRASAPP562: FRASAPP562
    [System.err]      at java.net.InetAddress.getLocalHost(InetAddress.java:1191)
    [System.err]      at com.sap.s2x.tools.GUID.getnodeaddress(GUID.java:575)
    [System.err]      at com.sap.s2x.tools.GUID.<clinit>(GUID.java:179)
    [System.err]      at com.sap.s2x.tools.S2XGUID.getGUID(S2XGUID.java:19)
    [System.err]      at com.sap.ide.metamodel.core.i18n.LanguageState.createS2XID(LanguageState.java:191)
    [System.err]      at com.sap.ide.metamodel.core.i18n.S2XLanguageUnmarshaller.unmarshal(S2XLanguageUnmarshaller.java:52)
    [System.err]      at com.sap.ide.metamodel.core.i18n.TextPoolProxy.loadLanguageState(TextPoolProxy.java:703)
    [System.err]      at com.sap.ide.metamodel.core.i18n.TextPoolProxy.prepareLanguageForRead(TextPoolProxy.java:646)
    [System.err]      at com.sap.ide.metamodel.core.i18n.TextPoolProxy.isEmpty(TextPoolProxy.java:222)
    [System.err]      at com.sap.ide.webdynpro.checklayer.MDOChecker.check(MDOChecker.java:23)
    [System.err]      at com.sap.ide.webdynpro.checklayer.view.ViewChecker.check(ViewChecker.java:52)
    [System.err]      at com.sap.ide.webdynpro.checklayer.controller.ViewControllerChecker.check(ViewControllerChecker.java:96)
    [System.err]      at com.sap.ide.webdynpro.checklayer.controller.ControllerChecker.check(ControllerChecker.java:119)
    [System.err]      at com.sap.ide.webdynpro.checklayer.controller.ControllerChecker.check(ControllerChecker.java:56)
    [System.err]      at com.sap.ide.webdynpro.checklayer.component.ComponentChecker.check(ComponentChecker.java:181)
    [System.err]      at com.sap.ide.webdynpro.checklayer.component.ComponentChecker.check(ComponentChecker.java:56)
    [System.err]      at com.sap.ide.webdynpro.generation.Generation.check(Generation.java:2039)
    [System.err]      at com.sap.ide.webdynpro.generation.Generation.generatePersistentComponent(Generation.java:1296)
    [System.err]      at com.sap.ide.webdynpro.generation.console.GenerationConsole.generate(GenerationConsole.java:175)
    [System.err]      at com.sap.webdynpro.generation.ant.GenerationAnt.main(GenerationAnt.java:50)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [System.err]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [System.err]      at java.lang.reflect.Method.invoke(Method.java:324)
    [System.err]      at com.sap.webdynpro.generation.ant.WDGenAntTask.execute(WDGenAntTask.java:219)
    [System.err]      at org.apache.tools.ant.UnknownElement.execute(UnknownElement.java:275)
    [System.err]      at org.apache.tools.ant.Task.perform(Task.java:364)
    [System.err]      at org.apache.tools.ant.Target.execute(Target.java:341)
    [System.err]      at org.apache.tools.ant.Target.performTasks(Target.java:369)
    [System.err]      at org.apache.tools.ant.Project.executeTarget(Project.java:1214)
    [System.err]      at com.sap.tc.buildplugin.techdev.ant.util.AntRunner.run(AntRunner.java:112)
    [System.err]      at com.sap.tc.buildplugin.DefaultAntBuildAction.execute(DefaultAntBuildAction.java:61)
    [System.err]      at com.sap.tc.buildplugin.DefaultPlugin.handleBuildStepSequence(DefaultPlugin.java:213)
    [System.err]      at com.sap.tc.buildplugin.DefaultPlugin.performBuild(DefaultPlugin.java:190)
    [System.err]      at com.sap.tc.buildplugin.DefaultPluginV3Delegate$BuildRequestHandler.handle(DefaultPluginV3Delegate.java:66)
    [System.err]      at com.sap.tc.buildplugin.DefaultPluginV3Delegate.requestV3(DefaultPluginV3Delegate.java:48)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    [System.err]      at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    [System.err]      at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    [System.err]      at java.lang.reflect.Method.invoke(Method.java:324)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.maybeInvoke(PluginHandler2.java:350)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.request(PluginHandler2.java:102)
    [System.err]      at com.sap.tc.buildtool.v2.impl.PluginHandler2.build(PluginHandler2.java:76)
    [System.err]      at com.sap.tc.buildtool.PluginHandler2Wrapper.execute(PluginHandler2Wrapper.java:58)
    [System.err]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1723)
    [System.err]      at com.sap.tc.devconf.impl.DCProxy.make(DCProxy.java:1495)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.build(CBSBuildController.java:727)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.execCommand(CBSBuildController.java:503)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.evalCmdLine(CBSBuildController.java:442)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.run(CBSBuildController.java:314)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.exec(CBSBuildController.java:252)
    [System.err]      at com.sap.tc.buildcontroller.CBSBuildController.mainLoop(CBSBuildController.java:207)
    -     I’m able to start the application out of the Web Dynpro content manager with “run” => only the user interface is displayed without any functionality
    -     The “normal” start over the NWDS fails => error text
    “com.sap.tc.webdynpro.services.sal.core.DispatcherException: The requested deployable object 'local/J08_Flugdat_Daventdcflight~xxx.com' and application 'FlightListApp' are not deployed on the server. Please check the used URL for typos.”
    There two different URLs in use.
    Start via NWDS:
    http://frasapp562:50000/webdynpro/dispatcher/J08_Flugdat_Daventdcflight~xxx.com/FlightListApp
    Start via web dynpro content manager:
    http://frasapp562:50000/webdynpro/dispatcher/xxx.com/aventdc~flight/FlightListApp
    For test purposes, we started the BAPI (BAPI_Flight_Getlist) on the ABAP system directly. It works.
    Any ideas about the system behaviours (different URLs and missing functionality)?
    Thanks a lot in advanced!
    Best regards
    Christoph

    The Error has been solved – The implementation of a method was missing....
    Thx
    Christoph

  • SDM failed when deploying a Web Dynpro application

    SDM failed when deploying a Web Dynpro application - I get the following error message:
    Sep 19, 2006 2:25:34 PM /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [001]Deployment aborted
    Settings
    SDM host : eix-blade-011
    SDM port : 50118
    URL to deploy : file:/D:/DOCUME1/AMRM1.AZI/LOCALS1/Temp/temp43621sap.comwelcome.ear
    Deployment exception : Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011
    Inner exception was :
    Server eix-blade-011 did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server eix-blade-011 at port 50118: eix-blade-011

    Amr Azim,
    You must have logged in thru a dedicated connection to any server through say VPN before deploying.This way the sdm uses the same login as that of already establised connection.
    So 'sign of'  all connections to any servers before deploying and redeploy your application.Here you will be prompted to supply the sdm password and deployment shall proceed.

  • Cannot deploy Web dynpro application from NWDS

    Hi,
    I am new to EP. I created a web dynpro application in nwds and tried to deploy it. But it gives the following error .
    Settings
    SDM host : nw04
    SDM port : 50118
    URL to deploy : file:/E:/WINDOWS/TEMP/temp12188WelcomeWebDynproprj.ear
    Result
    => deployment aborted : file:/E:/WINDOWS/TEMP/temp12188WelcomeWebDynproprj.ear
    Aborted: development component 'WelcomeWebDynproprj'/'local'/'LOKAL'/'0.2007.05.02.19.35.01'/'0':
    <b>Cannot login to the SAP J2EE Engine using user and password as provided in the Filesystem Secure Store. Enter valid login information in the Filesystem Secure Store using the SAP J2EE Engine Config Tool</b>. For more information, see SAP note 701654.
    com.sap.sdm.serverext.servertype.inqmy.extern.DeployManagerAuthExceptionWrapper: Wrong security credentials detected while trying to obtain connection to the J2EE Engine.
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMAUTHEXC)
    I have even configured J2EE server in the nwds through preferences. I have used the default passwords during installing sneak preview.
    What should i do to deploy my application  successfully??????

    My Server settings are fine in preferences of NWDS. Every thing is showing green
    I get the same problem even when i delpoy through SDM.
    This is the error when i deploy through SDM
    Deployment started Thu May 03 06:27:27 PDT 2007
    ===========================================================================
    Starting Deployment of MyFirstWebDynProPrj
    Aborted: development component 'MyFirstWebDynProPrj'/'local'/'LOKAL'/'0.2007.04.14.22.37.46'/'0':
    <b>Cannot login to the SAP J2EE Engine using user and password as provided in the Filesystem Secure Store. Enter valid login information in the Filesystem Secure Store using the SAP J2EE Engine Config Tool.</b> For more information, see SAP note 701654.
    com.sap.sdm.serverext.servertype.inqmy.extern.DeployManagerAuthExceptionWrapper: <b>Wrong security credentials detected while trying to obtain connection to the J2EE Engine.</b>
    (message ID: com.sap.sdm.serverext.servertype.inqmy.extern.EngineApplOnlineDeployerImpl.checkLoginCredentials.DMAUTHEXC)
    Deployment of MyFirstWebDynProPrj finished with Error (Duration 6656 ms)
    It seems like a configuration issue in SAP J2EE Engine Config Tool.What should i do.
    Highest points will be awarded if some one can help me in this

  • Cannot deploy web dynpro applications

    Hello,
    I'm starting to develop web dynpro applications, and I can run them on the nwds, but I cannot deploy them to the SDM, i always get the following error:
    /userOut/deploy (com.sap.ide.eclipse.sdm.threading.DeployThreadManager) [Thread[Deploy Thread,5,main]] ERROR:
    [003]Deployment aborted
    Settings
    SDM host : myserver
    SDM port : 50118
    URL to deploy : file:.../Temp/temp53918Welcome.ear
    Deployment exception : Server myserver did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server myserver at port 50118: No route to host: connect
    Inner exception was :
    Server myserver did not accept login request as admin on port 50118. Details: ERROR: Could not establish connection to server myserver at port 50118: No route to host: connect
    I have installed Sneak Preview SAP NetWeaver 2004S SR 1, i can access the  enterprise portal with no problems.
    I would be appreciate if anybody could help me with this issue.
    Regards,
    Leandro Fonseca

    At the same time if more users are deploying then you may such 'deployment aborted' errors check if there are more child instances for the J2EE engine.If not ask your basis administrator to create more child nodes to balance the load on the server instance.Also You can find out the server details at
    "http:
    <hostname:portnum>\index.html"select system configuration-you can get the details of the SDM and the j2ee engine from there.You need to have proper credentials to get the information from the above url.
    Provide those details in the NWDS.

  • Source code for "Creating an Extended Web Dynpro Application"?

    Hello!
    I'm a rookie in the field of SAP Netweaver and I'm justing getting started with some tutorials. My problems with "Creating an Extended Web Dynpro Application" are to massive to be posted on this forum in this stage. What I want to have some help with is to find the source code for that tutorial so I can get som guidence from there.
    Following text is cut out of this page:
    http://help.sap.com/saphelp_nw70/helpdata/EN/5d/f42fef2eec724597a03b6bcc670c2c/frameset.htm
    Creating an Extended Web Dynpro Application
    You can download the Web Dynpro project for the current tutorial from the Software Developer Network SDN (http://sdn.sap.com -> Web Application Server -> Web Dynpro -> Sample Applications and Tutorials) in two versions: one skeleton version you can use for exercises and one final version (solution) for an immediate build, deployment and run on the Java engine of the SAP Web Application Server.
    How hard I try I can't find the specific source code on sdn.sap.com
    Does anyone have a clue where it is?
    Thanks!
    Best regards
    /Johan Månsson Lindströ

    Hi!
    I did what you said but I seem to miss the IDE folder. This is what it looks in my Explorer
    C: > Program Files > SAP > IDE > CE > eclipse > (no folder called "examples")
    I also did a search in this eclipse folder for "examples" but I did'nt find the example I'm looking for
    I am running a newer version of NWDS:
    SAP NetWeaver Developer Studio
    SAP NetWeaver 7.1 Composition Environment SP03 PAT0000
    Maybe that's why things don't look the same?

  • Reg: Closing and Opening Web Dynpro Application in same browser

    Dear Experts
    In my webdynpro application when i click a button another web dynpro application is opened in another window(another browser) .
    But i want to open the second web dynpro application inside the same browser in which closing the first applicaiton and opening the second web application in same browser window .
    Please guide me to do this.
    Regards
    Arun

    hi ,
    Exit plugs have the special property that they use the defined URL parameter. After you have created the URL parameter in the parameter list on the Outbound Plugs tab page in the window editor, you can specify a value for this parameter in the method that calls the exit plug.
    ref
    link:[http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/ca3351508f04e7e10000000a42189c/content.htm]
    it would help u
    regards,
    amit

Maybe you are looking for

  • How do i reset admin password. no disc but system automativally logs me in as administrator and can access root user mode

    I recenly got this macbook, MA&00LL/A, max OS X, V:10.4.11, 2GHz IntelCore 2 duo, 2GHz, When I power up it automatically logs me on as administrator but prompts for password when I try to access/change certain features.  I got the macbook from my cou

  • List of the Files in a Directory based on Filename filter

    Hi, Do any one has an idea about fileName filter Usage. Ex: in UNIX: $ ls -l *.java gives the list of the java files in the directory. To acheive this we FilenameFilter. please let me know if anyone has any idea about this. Regard's Kartheek

  • Why can't I open mails i my in-box

    I can receive e-mails ok. I can't open the mails. hope somebody can help .Ihave a macbook Pro.

  • Continuous scrolling image List

    I'm building a mobile app. In the app, I am calling an api to fetch top 20 photos (api only allows 20 at a time) and displaying it in a tiled 2 column list/grid. When the user reaches the 10th/last row I'd like call the api again and bring up the nex

  • Printing and PDF trouble

    I've been trying to complete a document and wish to place it in pdf format. I haven't manipulated the default layout. The trouble is that while the font and the layout look fine on the screen; when its printed or saved in pdf it comes out as though i