How to immigrate Webdynpro application into EP ?

Hi all.
Is there any example to describe how to immigrate one webdynpro application into Enterprise Portal ?
I need to develop some application in Enterprise Portal. I think I have 2 ways to achieve it.
1. develop the application in webDynpro, then migrate it into EP.
2. develop it directly in EP.
I prefer 1st way, because in this way my maintenance job will becomes easy.

Hi,
See this tutorial for integrating webdynpro with portal
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/tutorial on integrating web dynpro in portal - 19.htm
Hope this helps you
Regards
Rohit

Similar Messages

  • How to convert WebDynpro Application into Webservoce

    HI Experts,
    I have one WebDynpro Application which has the functionality of search Using KM Index Management API's.
    This performs the search in portal using TREX.
    My requirement is to use this functionality in sharepoint portal(Microsoft Product).
    From this sharepoint portal they want to use this search application to search in portal.
    Now my choice is to convert this WebDynpro application into webservice so that , share point server guys can call webservice to use that search application.
    How can I Convert my webdynpro application into webservice?
    Any other ideas?
    Thanks in advance
    Regards
    Bala
    which needs to be converted into

    Hi Bala,
             I think there is no possibility as for your query. You will be allowed to create a webservice which is a piece of code that can be applicable to required application. Gothrough the following link to know clear details about webservice.  
    http://help.sap.com/saphelp_nw04/helpdata/en/84/54953fc405330ee10000000a114084/content.htm
    download.microsoft.com/download/f/3/7/f371bbba-2341-41bf-822d-2c7dd4174756/UI_CreateWebServices_5min.ppt
    Regards,
    Harish

  • How to implement webdynpro application into portal.

    HI all
    I have developed a Web Dynpro application (for eg: SAP online registration test for tech ED 2007). how to implement it into portal..
    I mean i want it as a role to displayed in my portal.
    what tempalte i have to use while creating iview..
    where i hav  to uplaod this folder (my webDynpro appication) (like a document at bact end or ???)
    please give me step by step solution for this..
    Thank&regards
    Gayathri

    Hi,
    Assuming you have deployed your webdynpro, you simply need to create webdynpro iView in portal.
    Check this simple help documentation on how to create the iView
    http://help.sap.com/saphelp_nw04s/helpdata/en/13/b4dc4281de2878e10000000a155106/content.htm
    Once you have created the iView, create a role. Set the entry point of the role to yes.
    http://help.sap.com/saphelp_nw04s/helpdata/en/f6/29cf3d4f902d10e10000000a114084/content.htm
    Right click on the iView and assign the iView to the role.
    Best Regards,
    Prasanna Krishnamurthy

  • How to connect webdynpro application to database (Sql server)

    Hi Experts,
    Can someone suggest me how to connect webdynpro application to SQL Server. (Possibly in detail)
    Thanks Regards,
    Sandeep

    hi sandeep,
    here is a sample code which connects to a backend database Oracle; Connection is same for all DBs as you are using open sql commands.
    <b>   try {
         String eposta = wdContext.currentContextElement().getEposta();
         String tel = wdContext.currentContextElement().getTelefon();
         String company = wdContext.currentContextElement().getCompany();
         String message = " ";
         String onerikonusu = " ";
         String oneri_mdurum = " ";
         String oneri_odurum = " ";
         String oneri_bfaydalar = " ";
         String oncelik1 = " ";
         String uygulama = " ";
         String tarih = (new SimpleDateFormat("dd-MM-yyyy").format(new java.util.Date()));
         String saat = (new SimpleDateFormat("HH:mm:ss").format(new java.util.Date()));
         //java.sql.Date tarih = java.sql.Date.valueOf(creationDate);
         //java.sql.Time saat = java.sql.Time.valueOf(creationTime);
         if (wdContext.currentContextElement().getMesaj() != "")
            { message = wdContext.currentContextElement().getMesaj(); }
         if (wdContext.currentContextElement().getOneri_konusu() != "")
              { onerikonusu = wdContext.currentContextElement().getOneri_konusu(); }
         if (wdContext.currentContextElement().getOneri_mdurum() != "")
              { oneri_mdurum = wdContext.currentContextElement().getOneri_mdurum(); }
         if (wdContext.currentContextElement().getOneri_konusu() != "")
              { oneri_odurum = wdContext.currentContextElement().getOneri_odurum(); }
         if (wdContext.currentContextElement().getBekfaydalar() != "")
              { oneri_bfaydalar = wdContext.currentContextElement().getBekfaydalar(); }
         if (wdContext.currentContextElement().getOncelik() != "NULL")
              { oncelik1 = onceliktxt.toUpperCase(); }     
         if (wdContext.currentContextElement().getUygulama() != "NULL")
              { uygulama = app.toUpperCase(); }
       InitialContext ctx = new InitialContext();
       javax.sql.DataSource ds =
       (javax.sql.DataSource) ctx.lookup("jdbc/SAPEPPDB");
       java.sql.Connection con = ds.getConnection();
       con.setAutoCommit(false);
       java.sql.Statement stmt = con.createStatement();
         String sql;
          int rows;
          sql = "insert into tmp_feedbacks " +
               "(puid, name, tel, email, company, konu, oncelik, uygulama, mesaj, onerikonusu," +
               "oneri_mdurum, oneri_odurum, oneri_bfaydalar,tarih,saat) " +
               "values ('" + username + "', " +
                         "'" + name + "'," +
                         "'" + tel + "'," +
                         "'" + eposta + "'," +
                         "'" + company + "'," +
                         "'" + konutxt.toUpperCase() + "'," +
                         "'" + oncelik1 + "'," +
                         "'" + uygulama + "'," +
                        "'" + message + "'," +
                        "'" + onerikonusu + "', " +
                        "'" + oneri_mdurum + "', " +
                        "'" + oneri_odurum + "', " +
                        "'" + oneri_bfaydalar + "', " +
                        "'" + tarih + "', " +
                        "'" + saat + "' " +
         stmt = con.createStatement();
         rows = stmt.executeUpdate(sql);
         con.commit();
         stmt.close();
       catch(Exception e){
            IWDMessageManager msgMgr =
                    wdComponentAPI.getMessageManager();
       msgMgr.reportException(e.getMessage(),true);
       }</b>
    The value <b>ctx.lookup("<jdbc_pool>");</b> depends on your system id.
    if your system id is SID the the string has to be <b>jdbc/SAPSIDDB</b>
    you can check it via visual admin >> server >> services >> jdbc con.

  • How to import webdynpro components into EP

    Hi Experts,
      I have successfully created one webDynpro Application.
      now I tried to import the webdynpro components into EP
    what are all the steps are required?
    How to do that?
    Regards
    P.Manivannan.

    Hi,
    Please check if <a href="http://help.sap.com/saphelp_nw70/helpdata/en/b7/ca934257a5c96ae10000000a155106/frameset.htm">this</a> answers your question.
    Ashutosh

  • How to test webdynpro applications using ecatt

    Hi All,
    Can anyone give me detail explanation of what is ecatt and how it can be used for webdynpro applications.
    Thanks in advance,
    Aleem.

    Hi Aleem,
       The Extended computer Aided Test  tool is known as eCATT. Enable businesses  to record and play back applications as automated test scripts.
      The Primary aim is the automatic Testing of SAP business processes. Each test generates a detailed log that documents the test process and result.
    I have written a wiki page for webdynpro abap testing using ecatt .
    <a href="https://wiki.sdn.sap.com/wiki/x/K8Q">ecatt on webdynproabap</a>
    Regards
    Sathish

  • Integrating different webdynpro applications into one

    Wanted some insight on a situation where 4 different applications were developed as a part of one project but the catch is , every part had different package names and references,
    now to integrate it ,into one webdynpro app(project), we are using Server Side eventing ,making one a master component and the others embedded , and it is working fine ,after included in the viewset ,
    1 Is there a less cumbersome way to integrate in such a situation ??
    2 is there a golden rule ,in future to follow , to develop applications separately to be integrated INTO ONE PROJECT ?
    please suggest

    Hi saurabh,
              u can use an interface controller to combine all the applications into one.keep the the view that u want it to run at the start of the appln as ur parent and rest as the child and do all ur events within ur Interface controller.
    For more reference check on to this link.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/tutorial on server-side eventing - 14.htm

  • How  to close webdynpro application

    hi ,
    from work item im opening the webdynpro form and  entering some data and i will click on save to save the data.
    after save i want to close my webdynpro application. how to do this.?
    if any code i have to write in any method... guide me...
    thanks,
    Raghu

    Refer this SAP Online Help :
    http://help.sap.com/saphelp_nw70ehp1/helpdata/en/48/ca3351508f04e7e10000000a42189c/content.htm
    Thanks.

  • How to deploy HTML5 application into Netweaver GateWay system?

    Hi All,
    We have built a HTML5 based application with java script code to access OData services hosted in NWG.
    It is running fine in our local server(tomcat).
    Now my question is how to  deploy it to Netweaver gateway server.
    Please advice asap.
    NOTE: It is not a SAP UI5 application.
    Thanks & Regards
    Basavaraja Kakarla
    91-8095624007

    Hi Zhijun,
    Thank you for your repay.
    You are welcome
    After assembly , can i deploy the application into test system by CMS? mean that if it can be done not through CR?
    Yes, you import the changes on the "Test" tab of the transport studio of the CMS webui. This will deploy the changes to Test (to the system you have specified in the runtime system configuration for this track)
    and what is the benefit of Dev system and Con system
    See the guide: http://help.sap.com/saphelp_nw70/helpdata/en/b6/e6b9fc9ec00f4ca4a0d3e0645e87b5/frameset.htm
    Best Regards,
    Ervin

  • How to deploy the application into Test system in NWDI

    Hi ,all
    i hava some problems about NWDI, Could you help me ?
    I hava defined the test system in runtime system of NWDI .
    As a general ,it must be deploy the application into test system  for test before transport the CR, is it right?
    if so , how can i do to deploy the application into test system before assembly?
    regards.

    Hi Zhijun,
    Thank you for your repay.
    You are welcome
    After assembly , can i deploy the application into test system by CMS? mean that if it can be done not through CR?
    Yes, you import the changes on the "Test" tab of the transport studio of the CMS webui. This will deploy the changes to Test (to the system you have specified in the runtime system configuration for this track)
    and what is the benefit of Dev system and Con system
    See the guide: http://help.sap.com/saphelp_nw70/helpdata/en/b6/e6b9fc9ec00f4ca4a0d3e0645e87b5/frameset.htm
    Best Regards,
    Ervin

  • How to use WebDynpro Applications in Guided Procedure?

    Hello,
    i want to use a WebDynpro    application as a part of a guided procedure. Therefor i developed a simple WebDynpro    application as described in the NetWeaver    Developer Studio Help. The Application consists of only two views. The first view is to enter data, the second displays them. So far so good....
    In the next step i wanted to integrate this application as a CallableObject for execution in my guided procedures process. The wizard asks in step 2 for the "Development component" and WebDynpro    Application. But where do it get this information? Indifferently what path i enter, it only returns an error the the object is not available on the server.
    EDIT: The path to the webdynpro application is something like this: http://host:port/webdynpro/dispatcher/local/WebDynproUITest/UITest
    kind regards,
    Matthias

    Hello Dipankar,
    thx for the blog! This really helped a lot!
    The problem is, that you cant test the WebDynpro as a stand-alone application. What would be the best way to develop a WebDynpro Application for GP?
    Is there a way to start with a 'normal' WebDynpro Application and convert this when finished in a "guided procedure ready WebDynpro for CE Application"?
    I think i will contact you next week with more questions, for now on its weekend
    regards,
    Matthias

  • How to Execute Webdynpro Applications

    Hi Gurus,
    Iam new to Webdynpro for ABAP . When iam executing Webdynpro Applications iam getting message like Service Connot Reached. Error no 403.
    I think my server need some setting, Please  solve my problem.
    Thank you.
    Regards
    Peram Srinivas

    go to start->run.. and type
    Ping <server domain name> -t and enter
    you can see the server round trip time
    if you dont't have domain name check out this
    http://help.sap.com/saphelp_nw04s/helpdata/en/67/be9442572e1231e10000000a1550b0/content.htm
    Abhi

  • How to call webdynpro applications from outside

    Hi
    I have a requirement where i need to call below webdynpro application from outside (for ex CRM,ISA..) environments
    http://test.com/webdynpro/dispatcher/test/eomp~eompapp/EmpDisp?EmpNo=0500002203.  When i am running this application from
    browser , my application working fine and i am able to see call to the backend BAPI's.  But when I configure this url
    in the configurations of the above environment.  I am unable to run this application.
    Any Idea?
    Thanks
    Prasad

    Hi
    I am not getting any error, but the backend call not hapening.  I put a debugger in the backend BAPI and run the webdynpro application , no input parameters came or call came to the the backend BAPI.
    Thanks
    Prasad

  • How to Migrate BSP applications into WDA

    Hi,
      We have some BSP application,is it possible to migrate BSP application into WDA or we need to

    There are no automated translation tools from BSP to WDA.  Although similar in structure (both MVC and Unified Renderer based), the technology implementation is very different. BSP uses MVC - and has Model and Controller objects. However these ABAP classes are in no way compatible with what Web Dynpro generates.  WDA also has the concept of Context which doesn't exist at all in base BSP (although CRMUI does have a context, this is just a wrapper around the BSP model class and isn't compatible with the WDA context either).
    The view becomes even more problematic.  Although the HTMLB, XHTMLB, and PHTMLB tag libraries are similar to the standard UI elements in Web Dynpro, the WDA versions are much more advanced. You probably could map most of the properties and tags to WDA, but not everything.  However the fact that in BSP you can inject any custom HTML and JavaScript becomes an issue because there is no way to do the same in WDA.
    Overall, you should just start from scratch and redesign the application as WDA.

  • How to deploy WebDynpro application from Portal

    Hi Friends,
    when we develop WebDynpro applications, we deploy and run the applications from IDE NWDS studio..
    Is there any way to deploy it from portal?

    Hi,
    Wat do you mean by deploying it from the portal?
    It is possible to integrate webdynpro apps in Portal
    Follow this link
    https://www.sdn.sap.com/irj/sdn/downloaditem?rid=/library/uuid/2fffe990-0201-0010-aab0-e61c3250bcf3
    Regards,
    Santhosh

Maybe you are looking for

  • Dll on Tomcat 6 got UnsatisfiedLinkError ... Can't find dependent libraries

    I created a dll file and it ran with no errors on the command line. But when i deployed it together with the java class file over to Tomcat 6.0\lib and ran it with a web application, Tomcat's log file reported: Exception in thread "Thread-12" java.la

  • How do I change default printer settings in Lion?

    I just got a new MacBook Pro and after installing the correct drivers and setting up my printer, it now prints 2-sided by default.  How do I change this default setting? I'm using a MacBook Pro, OS X 10.7.4, printing over AirPort to a KonicaMinolta o

  • Shared Review on Network Folder

    I am trying to set up my first shared review on a local network folder in our office and am running into two difficulties. (I have Acrobat 9 Pro running on Windows XP, most others have Reader 8 running on XP and we are connecting using Outlook 2003 t

  • Component on page not moving as vertical scroll bar is moved

    All - I have a mxml page that is a mx:Application.  This page basically consists of a VBox and a number of components included within that VBox.  All but 1 of the components within this VBox are built-in flex components.  The one component that is no

  • Exception in JPA (NoClassDefFoundError: org/hibernate/AnnotationException)

    Hi, I´m having a serious problem when using JPA. I´m using Weblogic Server 10 and developing in Weblogic Workshop Studio. When I start the WLS in Workshop, all works fine, but when I use the "publish" over my WLS Server in Workshop because I change a