Help in importing WebDynpro application to NWDS.

Hi,
I need to customise an iview. These are the information i have -
1.  platform of this ivew is WDJ.
2. got codelink of the iview -com.sap.portal.appintegrator.sap.webdynpro
3. got the corresponding par file.
4. In the business package document, it says a folder name as the data source of this iview. i traced the folder of it.
now how do i move forward?
1. When i imported the par file, it opened in the package explorer as a portal application project, but could not find any source code. How do i open it in WebDynpro perspective?
2. how do i import all these (data source + par file) into NWDS so that i can view the code in the WebDynpro perspective...
I am already tired of searching the entire SDN.  Can some one help out to explain the steps in simple terms for me to move forward. I am in the process of learning this (portal customisation through WebDynpro Java).. kindly help :).
I am just trying out in the test system.hence decided not to use JDI.
Thanks in Advance,
Anto.

Hi Antony,
As you mentioned WebDynpro application then there should be .EAR file not .PAR
and the procedure i gave you earlier is not applicable for .PAR (Portal Archieve)
for this please follow the following method.
if you want to test the application directly, login in to the portal and navigate to system administrator -> support -> portal runtime -> administration console and import the .par file and then create a new iview in portal content and select par file name and you can see the application.
if you want to see the code, import the .par file in EP Perspective and if it is a JSP Dynpro application, you can find the code in <b>\dist\PORTAL-INF\pagelet</b> folder.
Also <b>you can not see the PAR in WebDynpro perspective</b> you can only open it in EP Perspective.
hope now i got the right procedure for you. As per your Subject line, i quickly posted you the procedure to import webdynpro application to NWDS but in your case you are dealing with portal project.

Similar Messages

  • Deploying a WebDynpro application from NWDS 7.0 on NWCE 7.1

    Hi,
    I am trying to deploy a simple WebDynpro application in NWDS 7.0. On the server there is NWCE 7.1 installed. When I try that, I always get this error:
    Deploymenty Exception: Cannot determine the sdm host (is empty). Please configure your engine/sdm correctly.
    I checked the settings in Window->Preferences->SAP J2EE Engine. Everything is set up and seems to work. When I check it either in SAP Management console or in NWDS at J2EE Engine View everything is lighting green.
    I've already found about 5 or more threads, where people seem to have the same problem, but in none of them was any solution. And further more everybody was writing about SDM configuration, but in NWCE 7.1 there is no longer any SDM (as it is written in SAP Installation Manual for NWCE 7.1).
    Did anyone solve this issue?
    Thanks

    Filip,
    Never worked with NW CE. But my guess is that it is a issue with your NWDS which is at a lower version than the server.
    As you know NW04's has a SDM.
    Thanks & Regards,
    Vijith

  • Testing of Java-Based Webdynpro application in NWDS

    hi
    Hi
    I would like to test Java-Based webdynpro application in
    NWDS
    I am able to start and stop recording.
    But when press Start Replay Button.
    i am getting this error in the lower text area where messages area;
    <b>ERROR: Invalid Xml document received from the Xml Client. WindowId attribute is missing</b>
    pls replay ASAP
    Thanks
    Ravi Shankar

    Hi
      Ok now i get it. Well i guess i need to come out of mental block that WebDynpro for ABAP is not there :)..
    Well in that case it should work if you just record your test case.. What version of NDS are you using. It has worked for me.
    Create some inputfield and then deploy and test your application .. See if it runs.
    Then you right click on the application and say Record. It should run you through the screen. Once you are through stop the recording.
    The XML file can be viewed in the NWDS with the test data that you entered.
    regards
    Ravi

  • Build Error While importing standard application into NWDS

    Hi all,
    I am trying to Import T&E Standard Applications into NWDS.
    Two components  (tra & tra/tre) have to be synched to the studio. These two are interdependent..
    One Component I am able synch and create project perfectly but when i try to do the second one, i am getting Generation BUILD Error...
    Help me in this regard..
    Thanks
    Malla
    Edited by: challa mallareddy on May 7, 2009 12:34 PM

    Hi,
    As per your error, I think you have already created a project with name NewParProject. Give a different name and then check.
    Also check if your par file is  not corrupt. Download it again and follow below steps in NWDS :
    Go to File>Import > Select par file >
    >Browse and select the par file>
    >Give a project name i.e. ParProjectTest  > Finish.
    This should work.
    Regards
    Deepak

  • How to implement the documentation help function for webdynpro application

    We have implemented SAP Travelmanagement ESS services which uses ABAP Webdynpro. In each of the screen there is a "help" link on the top right corner. I would like to know how to use this function to link a help file that explains what needs to be done on each screen.
    My requirement is to provide screen specific help information as a document for each of the screen in my webdynpro application.
    Any suggestions, options, samples from the experts would be most appreciated.
    Regards
    Vivek

    Hi Vivek,
    seems to be your WDA are built by FPM, thats how by default you will be getting help link in top corner.
    when you click on help link it has to display the help related data.
    for this sap calls the standard wdc: WDHC_COMPONENT and the view:WDHC_APPL_HELP in this view you will see the element as: TEXT to fill some text which is your help data.
    there might be some way to fill this TEXT (text view) try this.
    or else i will check and upate you soon.
    all the best.
    Regards,
    Mahesh.Gattu

  • Help Text for Webdynpro Application

    Hi Guys,
    I've created a "Help" link. clicking on it displays a popup  Help_Window. I want to display paragraph of  Text in this Help_Window.
    Is there any element available where i can enter a paragraph of text ?
    ( my goal is to create  documentation for the application. just like we do documentation for se38 programs )
    Your inputs are highly appreciated.
    Thanks in Advance.
    Arun.

    Solution :
    1. Create MIME to import the help.PDF file which contains documentation to your application
    2. In Help_View i have included the element INTERACTIVE_FORM.
    3. In method WDDOINIT of HELP_VIEW  i have included the following code to call the help.pdf file
      data:
        mime_repository type ref to if_mr_api,
        content type xstring,
        url type string value '/SAP/BC/WebDynpro/SAP/WDR_TEST_ADOBE_PDF_ONLY/test.pdf'.
      mime_repository = cl_mime_repository_api=>get_api( ).
      call method mime_repository->get
        exporting
          i_url = url
        importing
          e_content = content.
      wd_context->set_attribute( name = 'PDF' value = content ).
    4. on clicking the help link from my main window i'm calling the HELP_VIEW as a popup window. in this window it displays the help.pdf file which give the documentation about the application.
    check example - WDR_TEST_ADOBE_PDF_ONLY

  • Webdynpro Application is not Deploying into Netweaver 2004s From NWDS CE

    Hi,
    I Developed Webdynpro Application in NWDS CE 7.1 SP5.
    I Am using Netweaver 2004s AS JAVA .
    After Deploying application i will get page can not be displayed and in the browser url is following below
    http://localhost:-1/webdynpro/dispatcher/demo.sap.com/firstapp/FirstApp?SAPtestId=2
    my actual port is 50000 but it gives -1.
    and also i need one clarification NWDS CE 7.1 Applications Supports the Netweaver 2004s or
    it requires Netweaver CE 7.1 AS JAVA.
    We have to develop applications using webdynpro,mobile perspectives in NWDS CE 7.1 SP5
    Is it Supports Netweaver 2004s.
    Thanks
    Subbarao

    Hi
    NetWeaver CE 7.1 uses Java 5 and so does the NWDS CE 7.1 by default. The server you have is NW 2004s SP 9 which runs on Java 1.4. So you simply can not build with Java 5 and deploy it to a server with JRE 1.4, you will get a class unsupported version error.
    Next you are using NWDS CE 7.1 to connect to server 2004s. The architecture of the Java servers in SAP is changed. 2004s has SDM and dispatcher and a server process at its simplest form. In CE theres an ICM and server. (SDM & Dispatcher combined). You no more give the message port number when you set up the JEE server of NWDS 7.1 instead you would use instance number. When you register a NW 2004s server with NWDS 7.1 (instance numbers are available for 7.0 servers as well), the studio fails to find the deploy mechanism (SDM or ICM) hence you see a port -1.
    Lastly the architecture of WebDynpro is greatly changed from NW 7.0 to NW 7.1 so dont even think of deployment to previous versions.
    Regards
    LNV

  • Error while Importing Webservice Model in NWDS 7.0.13

    Hi Experts,
    I am trying to Create Webservice Model (deprecated) in my Webdynpro Application using NWDS 7.0.13, using a WSDL which is hosted on PI 7.1.
    However while resolving this WSDL, I am getting error "Unacceptable Choise Element Found. Choise can contain only model group with min/maxOccurs = 1".
    Then I downloaded the WSDL, and changed the MaxOccurs = "1". After Importing this WSDL in my Webdynpro project, another exception got raised "Trying to Resolve qualified base " , here AcordMsgSvc is targetnamespace in  XSD which is ported in PI for this Service Interface
    Please help me resolving these 2 errors -
    1) min/maxOccurs > 1 not allowed in NWDS 7.0.13 webservice model?? Do I need to install any plugins?
    2)
    The Details Error Log --
    Error  Oct 28, 2010 15:39:03.283 com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Invalid proxy generator configuration. See nested exception.
    com.sap.engine.services.webservices.jaxrpc.exceptions.ProxyGeneratorException: Proxy Generator Error. Invalid proxy generator configuration. See nested exception.
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.getDefaultSchemaMapping(ProxyGenerator.java:142)
    at com.sap.ide.ws.proxygenerator.ProxyHelperFunctions.createNamespacePackageMappingFile(ProxyHelperFunctions.java:103)
    at com.sap.ide.ws.proxygenerator.ProxyHelperFunctions.createNamespacePackageMappingFile(ProxyHelperFunctions.java:86)
    at com.sap.ide.ws.proxygenerator.ProxyHelperFunctions.createNamespacePackageMappingFile(ProxyHelperFunctions.java:82)
    at com.sap.ide.wsproxy.wizards.prx.pages.NamespacePackageMappingPage$1.run(NamespacePackageMappingPage.java:114)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:302)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:252)
    at org.eclipse.jface.dialogs.ProgressMonitorDialog.run(ProgressMonitorDialog.java:357)
    at com.sap.ide.wsproxy.wizards.prx.pages.NamespacePackageMappingPage.initTable(NamespacePackageMappingPage.java:170)
    at com.sap.ide.wsproxy.wizards.prx.pages.NamespacePackageMappingPage.setVisible(NamespacePackageMappingPage.java:295)
    at org.eclipse.jface.wizard.WizardDialog.updateForPage(WizardDialog.java:959)
    at org.eclipse.jface.wizard.WizardDialog.access$1(WizardDialog.java:940)
    at org.eclipse.jface.wizard.WizardDialog$3.run(WizardDialog.java:929)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
    at org.eclipse.jface.wizard.WizardDialog.showPage(WizardDialog.java:927)
    at org.eclipse.jface.wizard.WizardDialog.nextPressed(WizardDialog.java:684)
    at com.sap.ide.webdynpro.modeleditor.wizards.model.creation.ModelDialog.nextPressed(ModelDialog.java:218)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:316)
    at org.eclipse.jface.dialogs.Dialog$1.widgetSelected(Dialog.java:423)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:583)
    at org.eclipse.jface.window.Window.open(Window.java:563)
    at com.sap.ide.webdynpro.modeleditor.ModelEditorCallback.createModel(ModelEditorCallback.java:52)
    at com.sap.ide.webdynpro.service.modeleditor.ModelService.createModelWithUI(ModelService.java:70)
    at com.sap.ide.webdynpro.service.modeleditor.ServiceWithUI.createModel(ServiceWithUI.java:49)
    at com.sap.ide.webdynpro.tsmodel.application.provider.ModelNodeProvider.createUniqueName(ModelNodeProvider.java:55)
    at com.tssap.selena.impl.model.elements.EntityImpl.createChildEntityUin(EntityImpl.java:936)
    at com.tssap.selena.impl.model.elements.EntityImpl.createChildEntity(EntityImpl.java:502)
    at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.runInternal(CreationAction.java:76)
    at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.access$000(CreationAction.java:24)
    at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction$1.run(CreationAction.java:51)
    at org.eclipse.core.internal.resources.Workspace.run(Workspace.java:1595)
    at com.sap.ide.webdynpro.tsmodel.application.actions.CreationAction.run(CreationAction.java:57)
    at com.sap.ide.webdynpro.projectbrowser.actions.PBCreateModelAction.run(PBCreateModelAction.java:95)
    at com.tssap.selena.model.extension.action.SelenaActionCollector$GenericElementActionWrapper.run(SelenaActionCollector.java:224)
    at com.tssap.util.ui.menu.MenuFactory$MuSiAction.saveRunAction(MenuFactory.java:1425)
    at com.tssap.util.ui.menu.MenuFactory$MuSiAction.run(MenuFactory.java:1407)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.processInternal(MenuFactory.java:616)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.access$100(MenuFactory.java:586)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction$BusyProcessWorker.run(MenuFactory.java:716)
    at org.eclipse.swt.custom.BusyIndicator.showWhile(BusyIndicator.java:69)
    at com.tssap.util.ui.menu.MenuFactory$DelegateAction.process(MenuFactory.java:610)
    at com.tssap.util.ui.menu.internal.MenuListenerFactory$ProcessAdapter.widgetSelected(MenuListenerFactory.java:172)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:89)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:81)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:840)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:2022)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:1729)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:1402)
    at org.eclipse.ui.internal.Workbench.run(Workbench.java:1385)
    at com.tssap.util.startup.WBLauncher.run(WBLauncher.java:79)
    at org.eclipse.core.internal.boot.InternalBootLoader.run(InternalBootLoader.java:858)
    at org.eclipse.core.boot.BootLoader.run(BootLoader.java:461)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(Unknown Source)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(Unknown Source)
    at java.lang.reflect.Method.invoke(Unknown Source)
    at com.sap.ide.eclipse.startup.Main.basicRun(Main.java:291)
    at com.sap.ide.eclipse.startup.Main.run(Main.java:789)
    at com.sap.ide.eclipse.startup.Main.main(Main.java:607)
    Caused by: com.sap.engine.lib.xml.util.NestedException -> javax.xml.transform.TransformerException: com.sap.engine.lib.xml.util.NestedException: ERROR : Trying to resolve qualified base : DocumentId, but the uri resolver is not able to resolve the relevant namespace.
    at com.sap.engine.services.webservices.jaxrpc.schema2java.SchemaToJavaGenerator.prepareAll(SchemaToJavaGenerator.java:462)
    at com.sap.engine.services.webservices.jaxrpc.wsdl2java.ProxyGenerator.getDefaultSchemaMapping(ProxyGenerator.java:136)
    ... 63 more
    Caused by: javax.xml.transform.TransformerException: com.sap.engine.lib.xml.util.NestedException: ERROR : Trying to resolve qualified base : DocumentId, but the uri resolver is not able to resolve the relevant namespace.
    at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:232)
    at com.sap.engine.services.webservices.jaxrpc.schema2java.SchemaToJavaGenerator.prepareAll(SchemaToJavaGenerator.java:459)
    ... 64 more
    Caused by: com.sap.engine.lib.xml.util.NestedException: ERROR : Trying to resolve qualified base : DocumentId, but the uri resolver is not able to resolve the relevant namespace.
    at com.sap.engine.lib.schema.components.impl.LoaderImpl.resolveQualifiedBase(LoaderImpl.java:253)
    at com.sap.engine.lib.schema.util.Tools.getTopLevelBase(Tools.java:466)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.getRefferedBase(SchemaStructuresFactory.java:154)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.createBase(SchemaStructuresFactory.java:49)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.createElementDeclaration(SchemaStructuresFactory.java:115)
    at com.sap.engine.lib.schema.components.impl.structures.ParticleImpl.load(ParticleImpl.java:89)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.ModelGroupImpl.load(ModelGroupImpl.java:100)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.ParticleImpl.load(ParticleImpl.java:97)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.ModelGroupImpl.load(ModelGroupImpl.java:100)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.ParticleImpl.load(ParticleImpl.java:97)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.ComplexTypeDefinitionImpl.load(ComplexTypeDefinitionImpl.java:178)
    at com.sap.engine.lib.schema.components.impl.SchemaStructuresFactory.loadBase(SchemaStructuresFactory.java:162)
    at com.sap.engine.lib.schema.components.impl.structures.SchemaImpl.loadComponents(SchemaImpl.java:288)
    at com.sap.engine.lib.schema.components.impl.structures.SchemaImpl.load(SchemaImpl.java:267)
    at com.sap.engine.lib.schema.components.impl.LoaderImpl.load(LoaderImpl.java:149)
    at com.sap.engine.lib.jaxp.TransformerImpl.transform(TransformerImpl.java:227)
    ... 65 more
    Thanks,
    Ninad

    Hi,
    Please have a look at this threads
    Can not create Adaptive Web Service Model
    Problems embedding adaptive webservice model
    Regards
    Saravanan K

  • Error while creating an application in NWDS CE 7.1

    Hi ,
    I am unable to create applications and components for and webdynpro application  in NWDS CE 7.1 .
    Its giving me the following error .
    Status ERROR
    Plugin : com.sap.ide.webdynpro.service.applicationmodeler
    code=0
    Internal error
       Plugin name: Web Dynpro Application Modeler Services
       Internal error  : com.sap.ide.webdynpro.service.applicationmodeler
       Class      : com.sap.ide.webdynpro.service.appmod.wizards.comp.ComponentWizard2
       Method     : performFinish
       Message    : Exception occured
       Exception  : com.sap.ide.mmservices.wd.general.NoWebDynproContentException: No Web Dynpro content found for project "sample". If this project is a Development Component, check if "SapMetamodelWebdynproContent.zip" is present in the classpath.
    com.sap.ide.mmservices.wd.general.NoWebDynproContentException: No Web Dynpro content found for project "sample". If this project is a Development Component, check if "SapMetamodelWebdynproContent.zip" is present in the classpath.
    at com.sap.ide.mmservices.wd.view.ViewElementService.getLibraries(ViewElementService.java:2042)
    at com.sap.ide.mmservices.wd.component.ComponentService$ComponentCreationService.doExecute(ComponentService.java:249)
    at com.sap.ide.mmservices.core.AbstractMMService.execute(AbstractMMService.java:103)
    at com.sap.ide.webdynpro.service.appmod.wizards.comp.ComponentWizard2.createComponentInternal(ComponentWizard2.java:305)
    at com.sap.ide.webdynpro.service.appmod.wizards.comp.ComponentWizard2.doPerformFinish(ComponentWizard2.java:147)
    at com.sap.ide.mmservices.core.eclipse.ui.WizardWithContainerRunnable$MyRunnable.run(WizardWithContainerRunnable.java:61)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:369)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:313)
    at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934)
    at com.sap.ide.mmservices.core.eclipse.ui.WizardWithContainerRunnable.performFinish(WizardWithContainerRunnable.java:27)
    at com.sap.ide.webdynpro.appeditor.wizards.CreateAppWizard.doPerformFinish(CreateAppWizard.java:157)
    at com.sap.ide.mmservices.core.eclipse.ui.WizardWithContainerRunnable$MyRunnable.run(WizardWithContainerRunnable.java:61)
    at org.eclipse.jface.operation.ModalContext.runInCurrentThread(ModalContext.java:369)
    at org.eclipse.jface.operation.ModalContext.run(ModalContext.java:313)
    at org.eclipse.jface.wizard.WizardDialog.run(WizardDialog.java:934)
    at com.sap.ide.mmservices.core.eclipse.ui.WizardWithContainerRunnable.performFinish(WizardWithContainerRunnable.java:27)
    at org.eclipse.jface.wizard.WizardDialog.finishPressed(WizardDialog.java:742)
    at org.eclipse.jface.wizard.WizardDialog.buttonPressed(WizardDialog.java:373)
    at org.eclipse.jface.dialogs.Dialog$2.widgetSelected(Dialog.java:616)
    at org.eclipse.swt.widgets.TypedListener.handleEvent(TypedListener.java:227)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
    at org.eclipse.jface.window.Window.runEventLoop(Window.java:820)
    at org.eclipse.jface.window.Window.open(Window.java:796)
    at com.sap.ide.webdynpro.appeditor.AppCallback.callCreateApplicationWizard(AppCallback.java:40)
    at com.sap.ide.webdynpro.service.appeditor.ApplicationCaller.createApplicationWithUI(ApplicationCaller.java:28)
    at com.sap.ide.webdynpro.service.appeditor.ServiceWithUI.createApplication(ServiceWithUI.java:108)
    at com.sap.ide.webdynpro.service.appeditor.ServiceWithUI.createApplication(ServiceWithUI.java:65)
    at com.sap.ide.webdynpro.wdexplorer.actions.creation.CreateApplicationAction.runCreation(CreateApplicationAction.java:24)
    at com.sap.ide.mmservices.core.eclipse.ui.actions.contextmenu.BaseCreateDevelopmentObjectAction.run(BaseCreateDevelopmentObjectAction.java:27)
    at com.sap.ide.tools.core.viewerfwk.internal.actions.BaseDelegateSingleAction.runInternal(BaseDelegateSingleAction.java:65)
    at com.sap.ide.tools.core.viewerfwk.internal.actions.BaseDelegateSingleAction.run(BaseDelegateSingleAction.java:58)
    at org.eclipse.ui.internal.PluginAction.runWithEvent(PluginAction.java:256)
    at org.eclipse.jface.action.ActionContributionItem.handleWidgetSelection(ActionContributionItem.java:545)
    at org.eclipse.jface.action.ActionContributionItem.access$2(ActionContributionItem.java:490)
    at org.eclipse.jface.action.ActionContributionItem$5.handleEvent(ActionContributionItem.java:402)
    at org.eclipse.swt.widgets.EventTable.sendEvent(EventTable.java:66)
    at org.eclipse.swt.widgets.Widget.sendEvent(Widget.java:938)
    at org.eclipse.swt.widgets.Display.runDeferredEvents(Display.java:3682)
    at org.eclipse.swt.widgets.Display.readAndDispatch(Display.java:3293)
    at org.eclipse.ui.internal.Workbench.runEventLoop(Workbench.java:2389)
    at org.eclipse.ui.internal.Workbench.runUI(Workbench.java:2353)
    at org.eclipse.ui.internal.Workbench.access$4(Workbench.java:2219)
    at org.eclipse.ui.internal.Workbench$4.run(Workbench.java:466)
    at org.eclipse.core.databinding.observable.Realm.runWithDefault(Realm.java:289)
    at org.eclipse.ui.internal.Workbench.createAndRunWorkbench(Workbench.java:461)
    at org.eclipse.ui.PlatformUI.createAndRunWorkbench(PlatformUI.java:149)
    at org.eclipse.ui.internal.ide.application.IDEApplication.start(IDEApplication.java:106)
    at org.eclipse.equinox.internal.app.EclipseAppHandle.run(EclipseAppHandle.java:153)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.runApplication(EclipseAppLauncher.java:106)
    at org.eclipse.core.runtime.internal.adaptor.EclipseAppLauncher.start(EclipseAppLauncher.java:76)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:363)
    at org.eclipse.core.runtime.adaptor.EclipseStarter.run(EclipseStarter.java:176)
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
    at java.lang.reflect.Method.invoke(Method.java:585)
    at org.eclipse.equinox.launcher.Main.invokeFramework(Main.java:504)
    at org.eclipse.equinox.launcher.Main.basicRun(Main.java:443)
    at org.eclipse.equinox.launcher.Main.run(Main.java:1169)
    at org.eclipse.equinox.launcher.Main.main(Main.java:1144)
    Please help to solve this issue.
    Thanks & Regards,
    Hamsa Shree

    Hi,
    I think, you have not installed NWDS 7.1 properly.
    In update site step after installation, You have not selected the dsired features.
    Make sure that you have followed all the stpes given below.
    "Installation of SAP NetWeaver Developer Studio
    1.       Log on to your PC with administrator privileges.
    2.       Start the installer for SAP NetWeaver Developer Studior and choose Run this program from its current location in the upcoming pop-up window.
    The user interface of the installer will lead you through the following steps:
    Enter an installation directory.
    Enter/confirm the desired Java Runtime Environment
    Install the NetWeaver Developer Studio Platform.
    After the installation of the platform, choose an Update Site (in this version your local download directory) and install NW Developer Studio features from this update site. If you are not sure what to install, select all features.
    You will be prompted to install the selected features. Press Yes. After installation you will prompted to restart NWDS.
    Thanks

  • Problem in deploying the application on NWDS

    Hi,
    I am getting a problem "Deployment aborted" when deploying a webdynpro application in NWDS sneak preview.When I looked at the log file says
    Aborted: development component 'test'/'local'/'LOKAL'/'0.2007.08.09.13.30.27'/'0':
    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. 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)
    Deployment exception : The deployment of at least one item aborted
    Please let me know what is the problem

    Hi,
    Please try to open configtool> secure store> admin/password/J2E and re-type password in the value field down in the bottom, and click Add.
    Save and re-start cluster-data, and then deploy the app again see if it works. This may help.
    Regards,
    -Napadol

  • WebDynpro Application Expires to soon

    Hi All
    I have here a DepoScreen (WebDynpro)application that runs with no user interaction, it shows data from BW,R/3 and KM.
    Since there is no User interaction i get once a day
    WebDynpro Session expired and i need to refresh it.
    I tried the following approach of setting a predefined ExpirationTime value in the NWDS but there is no effect.
    Also since it works on a chipset computer there is no cache mechanisms.
    please help
    Nir

    In the webdynpro application set a property "Expirationtime" to -1. This should set an infinte timeout for your application.

  • How to extract the code of standard webdynpro application

    Hi,
    We are on ECC5.0, ERP2004 ESS/MSS ,EP6
    Can someone tell me, How can we get the code of a standard webdynpro application into NWDS.
    ( I am familiar that, to modify the standard ESS applications, we need to use JDI.)
    is it compulsory that , unless and until i have JDI i can't see that code , no other way?
    Regards,
    NR

    Hi Sharadha,
    after installing the JDI, what are the steps that needs to be done to get the code of standard Webdynpro application, lets say <b>sap.com/essinfam</b>.
    Can u post some links where I can get the step-by-step process of calling a Standard Webdynpro ESS application into my NWDS?
    Regards,
    NR

  • Problem while deploying a webdynpro java application in NWDS 7.1 version

    HI All,
            I got the below error when i deploying the  webdynpro java application in NWDS 7.1 version..help me out...........................................
    Exception:
    com.sap.ide.eclipse.deployer.api.APIException: ConnectionException,cause=[Ecc]
    NameNotFoundException.The SAP J2EE ENGINE service 'tcbldeploy_controller' is not available
    because of deployment or down engine( service ).
    Reason: Object not found in lookup of
    tcbldeploy_controller.
         at
    com.sap.ide.eclipse.deployer.dc.ComponentManagerImpl.getDeployProcessor(ComponentManagerImpl
    .java:64)
         at com.sap.ide.eclipse.sdm.threading.DCDeployThread.run(DCDeployThread.java:118)
    Caused by: com.sap.engine.services.dc.api.ConnectionException: [ERROR CODE DPL.DCAPI.1118]
    NameNotFoundException.The SAP J2EE ENGINE service 'tcbldeploy_controller' is not available
    because of deployment or down engine( service ).
    Reason: Object not found in lookup of
    tcbldeploy_controller.
         at
    com.sap.engine.services.dc.api.session.impl.SessionImpl.createCM(SessionImpl.java:320)
         at
    com.sap.engine.services.dc.api.deploy.impl.DeployProcessorImpl.<init>(DeployProcessorImpl.ja
    va:136)
         at
    com.sap.engine.services.dc.api.deploy.impl.DeployProcessorFactoryImpl.createDeployProcessor(
    DeployProcessorFactoryImpl.java:26)
         at
    com.sap.engine.services.dc.api.impl.ComponentManagerImpl.getDeployProcessor(ComponentManager
    Impl.java:46)
         at
    com.sap.ide.eclipse.deployer.dc.ComponentManagerImpl.getDeployProcessor(ComponentManagerImpl
    .java:58)
         ... 1 more
    Caused by: com.sap.engine.services.jndi.persistent.exceptions.NameNotFoundException: Object
    not found in lookup of tcbldeploy_controller.
         at
    com.sap.engine.services.jndi.implserver.ServerContextImpl.lookup(ServerContextImpl.java:649)
         at
    com.sap.engine.services.jndi.implserver.ServerContextRedirectableImpl.lookup(ServerContextRe
    directableImpl.java:80)
         at
    com.sap.engine.services.jndi.implserver.ServerContextImplp4_Skel.dispatch(ServerContextImplp
    4_Skel.java:555)
         at com.sap.engine.services.rmi_p4.DispatchImpl._runInternal(DispatchImpl.java:319)
         at com.sap.engine.services.rmi_p4.DispatchImpl._run(DispatchImpl.java:200)
         at
    com.sap.engine.services.rmi_p4.server.P4SessionProcessor.request(P4SessionProcessor.java:136
         at
    com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.pro
    cess(ApplicationSessionMessageListener.java:33)
         at
    com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
         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:102)
         at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:172)

    First check is Java stack is running ?
    make sure J2EE_ADMIN user not locked.
    Ans please check password in secure area. check password in secure store should be correct.
    may be you can try with restart of SAP and DB.
    All the best
    regards
    nag

  • Import leave application from NWDI to NWDS

    Hi,
    I want to modify the ESS leave application. I want to define default value in "duration" field of ESS leave webdynpro application.
    I have imported the ESS  buisness package into NWDI...  i was also able to import from NWDI into NWDS.
    I have imported ess/lea by right clicking on it and then choosed "create project" option...
    I want to ask whether is this the correct way or not..
    After creating project in NWDS i went into webdynpro perspective i checked all the component, but i did not find the main view of leave request which i want to modify..
    I checked in under application..it has leaverequest application.. but i need the view which i am not able to figure out exactly which one it is..
    Is there any way we can find easily the view we require...?
    Regards,
    Jigar Oza .

    Hi
    Too many thing are involved to reflect  changes in SLD
    You can follow a simple workaround
    1. Do what ever u want in your track (But with proper activity and its description also so that in future u will able to identify what is for what )
    2. U can deploy the DC and  check whether your changes is working or not.
    Now
    3.Stop all the activity (your activity not track ), and simply change the workspace.(and keep this safe with you)
    4. You have applied all the changes and seen the result also , By changing the workspace u can continue with your work but not in same place  but different .
    5. In future if you/client want to make those changes should migrate , Here u simply open the that workspace in your NWDS  NWDI will keep track of that , and will automatically ask for user id and password .once provided will able to work from there where u were left.
    Only thing to take care : Dont do anything like checkin ,activate ,remove etc.
    Best Regards
    Satish Kumar

  • WebDynPro Application Need Help.

    Hi Gurus,
    Our developers have developed a WebDynPro application.We needed to make it available through internet.The first step was to enable the HTTPS protocol on the server which we did  successfully.
    We imported the SSL certificate and enable HTTPS and ran the application successfully.We moved the server to DMZ and generated a public URL for the application.
    Now we are able to run the applicaton on our internal LAN but when we access the application on the internet we are stuck at the login page only even after entering the password and username it comes back to the same login page.
    If any body has any ideas about this do share.We need urgent help on this.
    Best Regards
    Amit

    Hi,
    have you checked the <a href="http://help.sap.com/saphelp_nw2004s/helpdata/en/af/0489ce55002f44a8c927371bedf719/frameset.htm">security aspects</a>, also HTTPURLLOC?
    Regards, Heidi

Maybe you are looking for

  • I have a question ....please give me so solution ...

    my iPad mini 2 again cause problem ......I don't know what is the problem but ...................my iPad is keep restarting and don't want to show the lock screen .....my iPad mini2 is only charging 2 %....but I let it to charge for 2 hour......can i

  • Error opening URL to submit form

    I keep getting this when I check my compatible setting on my clients portal system. I am not tech savvy. Its coming from Adobe Reader. Anyone have any ideas? I can't submit some of my clients forms back to them after I've filled them out, and their s

  • BAPI_OBJCL_GETCLASSES  in APO

    Hi All, When extending a product using product & location, Classifications (in these case characteristics) were not copied to extended product. For that I tryied using the BAPI_OBJCL_GETCLASSES to get the classifications. Now Question is I'm not able

  • How can I revert to Snow Leopard from Mountain Lion on a 2013 iMac?

    I have a brand new 27" 2.9Ghz iMac, bought a few days ago, equipped with Mountain Lion. I'm using it for recording, and at the time, my recording software and hardware are incompatible. On Snow Leopard, however, it all runs flawlessly. I know I can't

  • Problem joining 5 tables

    Hi, I have to modify a report because it goes too slow.. the problem is when joining 5 tables, i'm trying to change it but i'm a little bit "lost".... the original code is de following..   SELECT DISTINCT aaufnr aauart aerdat aktext a~werks