WebDynpro integration

Hi,
I would like to get some pointers to integrate an existing WebDynpro application with another application/portlet running in a WebSphere portal server.
Is it possible to do such an integration? If it is feasible, then I would like to know how. Also, I am interested in knowing if I can directly use the .ear file of the WebDynpro App for such an integration? (<i>I guess it is highly container<i> i.e J2EE Engine</i> specific </i>).
Finally a question little bit off the topic. Are there any plug-ins available for SAP (WebDynpro) integration in WebSphere?
Any pointers will be highly appreciated.
Bala

Hi Bala,
May you could be interested in readnig these docs (especially the 2nd):
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3debad90-0201-0010-e397-cea8be6429d4
https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/a283ccd8-0701-0010-f69a-b5292f398dfc
Regards,
Sylvain

Similar Messages

  • Webdynpro integration in Portal 7.11

    Hi,
    I want to integrate a webdynpro application in my navigation structure but there arent the webdynpro templates I once knew in EP 7.0. Theres a remote-iview for webdynpro java but the application is running on the same portal and then there is webdynpro for abap. How can I create a webdynpro template from PAR like in the old portal? I see the portal component in the dropdown list to the left but I dont see how to create a template from it.
    thanks

    Tushar,
    Did you search in SDN yet?
    A simple search has given me these.
    Configuring Outlook Web Access iViews
    Integration of Outlook Web Access(OWA)  into SAP EP 7.0
    Good Luck!
    Sandeep Tudumu

  • ABAP Webdynpro integration with GP

    Hi,
    While using ABAP Webdynpro as a callable object in GP, I am facing an issue where it is only possible to pass the input parameter to the Webdynpro application from GP.
    1. Is there a way to pass an output parameter from Webdynpro back to GP?
    2. Is there a way to not create a Result state button in GP to get the control back to GP from the ABAP Webdynpro?
    Please let me know if you have any experiece in this area.
    Thanks and Regards
    Karthik

    Hi Karthik,
    It is not possible to exchange data with GP with WDA callable object.
    Refer SAP Library link -
    http://help.sap.com/saphelp_nw04s/helpdata/en/45/c0d14601430039e10000000a11466f/content.htm
    Thanks.
    Chitrali

  • UWL and Webdynpro integration

    We have developed WD Applications for Create/Display Purchase Order. Now, at the end of each process a workflow task will be triggered when the end-user clicks on "Create Purchase Order" button. Then, the concerned Cost Center Manager receives an email regarding the PO.
    Then the manager logs in to the Portal and opens the "UWL" where he can see the list of all the "workitems" in the Tasks tab.
    Now, when the Manager wants to reject the PO, he should be prompted with a box for entering the reason for rejection. Could anyone explain me of how to give the option of "Reason for rejection" to the Manager in UWL when he clicks on the task?
    I hope you can understand my requirement. Please let me know if you need any more clarification. I would greatly appreciate your help.
    Regards,
    Gopal.

    Hi Gopal,
    In your case, you can open a webdynpro popup screen when the user clicks on the task item id of the task inbox.
    In the webdynpro popup screen you can give text edit UI element to enter the reason and Reject button to submit the task.
    If you are using ABAP w/f engine..
    Configuration to open customized WebDynpro application when user opens a task in UWL inbox in Portal.
    Go to the SWFVISU transaction in SAP GUI.
    It will show all the taks available in all the workflows in the ECC system.
    Select a particular task and select Visualization type for that task
    Here you have to select u201CJava WebDynprou201D
    And click on Visualization Parameters
    It will open the u201CChange Visualization Parameteru201D screen
    Here enter the WebDynpro application name which needs to be opened when user clicks on task item id.
    You need to confgure this taks item id in UWL standard XML file.
    Please go through this links as well.
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/103e2cf0-ec95-2b10-d198-a2d5edfbd7f8?overridelayout=true
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45
    Hope this hels you..
    Regards,
    Saleem

  • PHOTO IS NOT GETTING REFLECTED IN ADOBE FORM

    Hi experts
    We have tried the below code to dispaly photo in webdynpro integrated with adobe forms
    CALL FUNCTION 'HR_IMAGE_EXISTS'
        EXPORTING
          p_pernr                     = v_obj_id
    *     P_TCLAS                     = 'A'
    *     P_BEGDA                     = '18000101'
    *     P_ENDDA                     = '99991231'
        IMPORTING
    *     P_EXISTS                    =
          p_connect_info              = l_connect_info
        EXCEPTIONS
          error_connectiontable       = 1
          OTHERS                      = 2.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_DOC_READ'
        EXPORTING
    *     MANDT                       = SY-MANDT
          stor_cat                    = space
          crep_id                     = l_connect_info-archiv_id
          doc_id                      = l_connect_info-arc_doc_id
    *     PHIO_ID                     =
    *     SIGNATURE                   = 'X'
    *     SECURITY                    = ' '
    *     NO_CACHE                    = ' '
    *     RAW_MODE                    = ' '
    *   IMPORTING
    *     FROM_CACHE                  =
    *     CREA_TIME                   =
    *     CREA_DATE                   =
    *     CHNG_TIME                   =
    *     CHNG_DATE                   =
    *     STATUS                      =
    *     DOC_PROT                    =
        TABLES
          access_info                 = lt_infos
    *     CONTENT_TXT                 =
          content_bin                 = lt_image_bin
        EXCEPTIONS
          bad_storage_type            = 1
          bad_request                 = 2
          unauthorized                = 3
          comp_not_found              = 4
          not_found                   = 5
          forbidden                   = 6
          conflict                    = 7
          internal_server_error       = 8
          error_http                  = 9
          error_signature             = 10
          error_config                = 11
          error_format                = 12
          error_parameter             = 13
          error                       = 14
          OTHERS                      = 15.
      CHECK sy-subrc = 0.
      READ TABLE lt_infos INDEX 1 ASSIGNING <fs_info>.
      CHECK sy-subrc = 0.
      CALL FUNCTION 'SCMS_BINARY_TO_XSTRING'
        EXPORTING
          input_length = <fs_info>-comp_size
          first_line   = <fs_info>-first_line
          last_line    = <fs_info>-last_line
        IMPORTING
          buffer       = l_employee_photo_content
        TABLES
          binary_tab   = lt_image_bin
        EXCEPTIONS
          failed       = 1
          OTHERS       = 2.
    but the photo is not getting reflected in the adobe forms .
    and also i have tried the url method but it doesnt work .
    please help me out .

    First, have you set a breakpoint in this code and made sure that you are getting data into lt_image_bin?  That would seem to be the first place to start.
    Then the question is how are you trying to pass the image into the Adobe Form?  Are you passing an XSTRING context attribute into the form interface?  Have you marked that part of the interface as an image?  Are you setting the MIME Type parameter of the form interface as well.  You really haven't posted any details about what you are doing on the Adobe Form side.

  • Need sap standard interactive adobe from

    Hi All,
    i need SAP provided standard webdynpro integrated interactive adobe form. I checked thread List of Adobe forms in SAP standard but standard form are listed there anymore.
    I found WDR_TEST_ADOBE but is not using normal process instead using assistance class.
    Thanks

    Hi Aamir,
    You can find all forms in the table FPLAYOUT.
    If you want to download any form, go to transaction SFP, enter the form and download it to desktop.
    Regards,
    Ashvin

  • IViews in dynamic navigation take up whole content area

    Hi,
    I'm having a problem using dynamic navigation. I've created two Web Dynpro iViews A and B. I've added B to the dynamic navigation of A and put A into a role. Know when I want to view A, I can see the iViews loading, B in the navigation panel and A on the right of the panel. But once they are loaded, B is shown in the content area, "above" A (effectively hiding it). Once I remove B from the dynamic navigation, A is shown fine.
    Any ideas to solve this?
    thanks,
    Lieven

    Hi Lieven!
    I can only guess, that the WebDynpro integration-IView is designed to run in the content area alone and forces so.
    Did you try to run other (sap provided) WebDynpro iviews from the dynamic navigation?
    Regards,
      Jürgen

  • Hellooo

    Hello Pals,
    I am an certified SD consultant and now here in my company I am given the work in EP. The company is on its way to get EP-BP certification. To be frank am not into java or coding, clearly saying am a big Zero in JAVA.
    I know EP is mainly of developing applications i.e. iViews. In this I think WebDynpro is the best and booming thing and I got that these can be done by Business Application Developers.
    What must be the basic knowledges a Business Application Developer should have?
    Hope you can help me.
    regards
    AK

    Hi Anil,
    In enterprise portal development Consultant (EP) you need to Learn,
    Visual Composer
    Webdynpro (java/ABAP)
    Webdynpro Integration in EP
        *Portal Fundamentals
        *NWDS
    The BASIC java is enough to do Webdynpro Java
    Basic ABAP is enough to do Webdynpro ABAP
    Visual Composer Requires No coding.
    In NWDS you will be creating Portal J2EE Projects etc..which requires (JSP,EJBs..etc)
    So learn Java.
    Go through these Links,
    EP LINKS FOR BEGINNER:
    Beginning EP Development
    Oliver's favorite SDN link collection
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/387daf90-0201-0010-bb98-cb1a5545bf69
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/webcontent/uuid/4b0c105e-0501-0010-bcb0-92478a4b2a17
    Overview of the Content Development Process
    Overview of the Content Development Process
    Java development methodologies (Part I)
    Java development methodologies (Part I)
    Java development methodologies (Part II)
    Java development methodologies (Part II)
    Setting up the NetWeaver development environment (Part II)
    Setting up the NetWeaver development environment (Part II)
    Installing and configuring the preview edition of EP
    Installing and configuring the preview edition of EP
    Top Weblogs of All Time [19 to 14]
    Top Weblogs of All Time [19 to 14]
    Enterprise Portal Implementation Forum
    Enterprise Portal Implementation Forum
    Beginning EP Development
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/1d/40e93bac3c5a6de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/50/da644160087d47e10000000a1550b0/frameset.htm
    Regards,
    <b>Ramganesan K</b>

  • Image not showing in Abobe integrated with Java WebDynPro

    Hi All,
    Image is not showing in Abobe integrated with Java WebDynPro.
    I did the following:
    Added the image field in adobe form. in URL value set the value of context node binding. Binding set to none and size set to Use Original Size.
    Then in script editor i wrote
    this.value.image.href = xfa.resolveNode(this.value.image.href).value;
    at innitialize , javascript and client.
    I can see the image from the same url context value if image field is created directly in WebDynPro View.
    Can anyone suggest what is missing?
    Thanks and Regards,
    Nuzhat

    Try changing your line of code for this one
    this.value.image.href = xfa.record.Images.URL;
    Check that the url passed by scripting is correct with a messageBox for example.
    You can also try assigning a hardcoded url at scripting level to check if its works.
    Best regards, Aldo.

  • Portal Runtime error occured while integrating WebDynpro App

    Hi all,
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    Application URL ':///webdynpro/dispatcher/local/Example_FL/ExampleFLApp' is not valid! Please check the protocol and host entries for system 'SAP_R3'..
    See the details for the exception ID in the log file
    This is the error that I got while integrating WD appl into Portal. I have Created a Folder in Content Administrator->Niew iView->com.sap.portal.appintegrator.sap
    then selected Webdynpro.
    Followed by created an iView by selecting appropriate settings. What went wrong. But the WD appl is working fine individually. Please help me
    regards,
    Ganesh

    Hi Ganesh,
    It seems that you are unable to see webdynpro application into portal for this you need to create webdynpro system and then create webdynpro iview from portals which required parameters like
    1) system : which is webdynpro system
    2) webdynpro namespace : local/yourtestproject
    3) application name : name of the webdynpro application
    I am attaching link for your reference.
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/3e36d690-0201-0010-cd99-bfbb81bd33d9
    Regards,
    Hemant
    Award points if helpful.

  • Adobe Form integration from java webdynpro to ABAP webdynpros

    Developed an Interactive Forms in Web Dynpro for Java. I am trying to find a way to integrate this into ABAP webdynpros. Is it possible to do this. I found this article and it looks like it supports this.
    Before the introduction of the XML-based interface, an ABAP Dictionary-based interface was created for a form during integration of the same. Such an interface, however, was not easily linked to the context of a Web Dynpro component. All the forms created from within the Web Dynpro context are not automatically equipped with an XML-based interface. In certain situations, however, it can be necessary to integrate an old form with a function module-based interface into a Web Dynpro application. The Web Dynpro runtime makes it possible, in principle, to display or print such a form within a Web Dynpro
    application. In special cases, it is even possible to integrate a form of this type in an interactive mode
    Any help on this is greatly appreciated.
    Thanks.

    Hi there
    Not sure if you mean converting an Interactive form built for WD JAVA into a WD ABAP application
    or just using Interactive forms in general with WD ABAP - certainly this it is possible to use Interactive
    Forms in general with WD ABAP as HCM Processes and Forms is WD ABAP based and uses Adobe interactive forms
    Perhaps the following articles will be of use
    Web Dynpro ABAP: Defining the UI [original link is broken]
    Under "SAP Interactive Forms by Adobe"
    Best wishes
    SDtuart

  • Integrating flex with webdynpro java

    hi,
    iam new bie in webdynpro java.please tell is there possibility of integrating flex in webdynpro java,if so what are the prerequisites for it.

    Hi
    This is possible through Adobe Flash Islands under Mimes folder in your Webdynpro project. You create flex objects in FlexBuilder and generate the .swf files. Then the swf files need to be placed under the Mimes folder of Webdynpro Project from which they can be accessed.
    Follow the link below for details :
    http://wiki.sdn.sap.com/wiki/display/WDJava/WebDynproJava(CE7.1EHP1)andAdobeFlexIntegration-ColumnChart
    http://help.sap.com/saphelp_nw72/helpdata/en/48/825afcf53d3ff6e10000000a42189c/content.htm
    Regards,
    Sayan Ghosh

  • Portal integration of Webdynpro for ABAP application

    Hi all,
    Can anyone provide me with the steps for <b>integrating a Webdynpro for ABAP application with portal?</b>
    Regards,
    Bino

    Hi Bino
    Check out the following link
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/webas/webdynpro/portal integration of web dynpro applications.pdf
    Regards
    Rajeev.
    Do award points for helpful answers in SDN.

  • Integration Webdynpro ABAP with Webdynpro Java in Portal

    Hi All,
    I am facing problem while integrating WDA application with WDJ. I can integrate successfuly one application and trying to invoke other one with different parameters, i am facing the problem
    There is no iView available for system "XXXX_SAP_XXX": object "xxx.xxxx.xxx.xxxx". For more information, contact your administrator.
    I am passing the parameters
    system                      
    object_type                
    object_value_name          
    operation
    Thanks in advance

    Hi Samir,
    Pls look into these threads -
    IE8 problem (WebDynpro ABAP iView call)
    WebDynpro for ABAP and IE 8.0
    Regards,
    Sen

  • Adobe form integration in webdynpro

    Gudday,
    I need to integrate my adobe form in webdynpro using ABAP and fill the form from the browser which should get updated in the database.
    I hav form which will display fields like pernr,vorna,nachn.
    After inserting the form integration element...what is context to be filled with??
    how should i do the binding from my WDA to adobe forms...i tried one example..but couldnt get the result at the end..
    Can anyone  please.......suggest clear step-by-step procedure to proceed further.
    Awaiting your reply.
    Thanks,
    Deepthi.

    Hi,
    Hope this would help you - /people/thomas.jung/blog/2006/06/20/web-dynpro-abap-demonstration-videos
    Thanks and Regards,
    Anto.

Maybe you are looking for

  • Error occuring during import of certificate for SSO configuring in BI

    Hi, I am configuring the SSO with logon ticket for BI system. I downloaded the certificate from portal server. But while importing this certificate on R/3 server it shows error "Error occurred during import" Message no. TRUST008 Please suggest me any

  • Is it possible to save a copy of a PDF form created in Livecycle Designer ES3?

    Hey, I've created a form using the trial version of Livecycle ES3 however when I view the form I get this message: "you cannot save data typed into this form. Please print your completed form if you would like to keep a copy for your records." Is the

  • Issue with update command in writeback...

    I am not able to get an Update working as expected using the write back feature. Any help appreciated. <?xml version="1.0" encoding="utf-8" ?> <WebMessageTables xmlns:sawm="com.siebel.analytics.web/message/v1"> <WebMessageTable lang="en-us" system="W

  • Web Services,Delivery Document Adding Error  Could not commit Transaction

    Dear All,    I am working with SAP Business One Web Services, While adding Delivery Document it's giving error  "Could not commit transaction"  Please Give your Suggestion It's urget. Thanks, Madhu 9701155577

  • Quartz Composer - Jump to URL

    With the Apple RSS Screen Saver, pressing a key will jump you to the selected article. I would like my screen saver to jump to my webpage when a key is pressed. (I am working in Quartz Composer) I have looked at the Apple code, and can't figure out h