Web Dynpro based Workflow Inbox.

Hi All.
Can someone help me with this post.
http://scn.sap.com/community/bpm/business-workflow/blog/2013/11/02/dear-sap-why-are-the-existing-webdynpro-based-workflow-inboxes-not-working-out-of-the-box
I have posted my query at the end of this post long ago but no response from there.  copying it here as well.
I implemented as you described for SWF_WORKPLACE. A new window is getting opened now to execute the work item but the work item id and the action = Execute is not there. Somewhere the binding is missing.
Enclosed the current output and the link.
Please help a little bit more :-)
/sap/bc/gui/sap/its/webgui/?%7etransaction=SWNWIEX&P_WI_ID=000002426507&P_ACTION=EXECUTE&P_APPL=NOTIF&%7eOKCODE=ONLI&sap-client=010&sap-language=EN
please help if someone have any idea.
Thanks
LS

Hi All,
The Problem in my case was only with the port number. with the correct port number it works.
The Link given above is complete. Implement all the steps as explained there and it should work for you as well.
BR,
LS

Similar Messages

  • Differences between ITS based and web dynpro based ESS

    Hi all,
    What are the main differences between ( in functionality ) for ITS based and web dynpro based ESS.
    I know a few
    Underlying technology
    ITS ESS had inbox concept, where as web dynpro based ESS/MSS has UWL concept for approvals.
    The time statemment in ITS uses smart form while we can use Adobe document services for time statement in ESS 2004.
    Funcitonality
    There was not collective time approvals option In ITS ESS ( not even in ESS 2004 ) but ther is a collective time apporvals in ESS 2004s
    Am not pretty mich intrested in look and feel,  or the overview page concept but any additional functionality and a shift in the technology used.
    Please add.
    regards
    Sam
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama
    Message was edited by:
            sameer chilama

    answered

  • Regarding how to pass the data from web dynpro to workflow

    hi gurus,
    how to pass the data from web dynpro to workflow.
    Regards
    vijay

    Check this [thread|SAP_WAPI_START_WORKFLOW;

  • How to pass the data from web dynpro to workflow.

    hi gurus,
    how to pass the data from web dynpro to workflow.
    Regards
    vijay

    Hi
    you can use function module
    data   ls_input_container  TYPE swr_cont.
    data   lt_input_container  TYPE TABLE OF  swr_cont.
    CALL FUNCTION 'SAP_WAPI_START_WORKFLOW'
        EXPORTING
          task            = ptask
        IMPORTING
          return_code     = lv_return_code
          new_status      = lv_new_status
        TABLES
          input_container = pinput_container
          message_lines   = lt_message_lines
          message_struct  = lt_message_struct.
    where you pass the data in imnternal table "pinput_container" as
      ls_input_container-element = 'KUNNR'.
      ls_input_container-value = ls_skna1-kunnr ."wd_this->lv_kunnr.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'CLUSER'.
      ls_input_container-value = lv_cluser.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'BUKRS'.
      ls_input_container-value = lv_bukrs. " youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'VKORG'.
      ls_input_container-value = ls_sknvv-vkorg. " youe value as per requirement
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'VTWEG'.
      ls_input_container-value = ls_sknvv-vtweg. "youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
      ls_input_container-element = 'SPART'.
      ls_input_container-value = ls_sknvv-spart. "youe value as per requirement.
      APPEND ls_input_container TO lt_input_container .
    *Also Forgot to mention where ptask is your workflow ID *
    Regards,
    Arvind
    Edited by: Arvind Patel on May 14, 2010 7:38 AM

  • Create Web Dynpro-Based iViews

    Hi,
    I have created one test WD-ABAP ( NW04s ABAP Sneak preview) on my NSP Installation.
    in II step i have cretatet one WEB Dynpro-Based iviews on secund Installation ( NW04 Java Sneack Preview) on onother Server in Netz with IP .....
    When I test my System Conection from Portal-Server to ABAP Server is allready OK. But i recive one HTTP/s error.
    When i try my WD, that i binded in Portal to running i recive a Raise exeption from ABAP-System and when i look in ST22 i show a DUMP from Methode "CHECK" in Class "CX_FQDN" :
    <b>METHOD check.
      DATA: lv_host    TYPE string,
            lv_port    TYPE string.  "#EC NEEDED
      lv_host = request->get_header_field( name = 'host' ).
      IF lv_host NA '.' OR lv_host CO '0123456789.:'.
        <u>IF NOT lv_host CS 'localhost'.</u>
          SPLIT lv_host AT ':' INTO lv_host lv_port.
          RAISE EXCEPTION TYPE cx_fqdn
            EXPORTING host   = lv_host
                      domain = '.<domain>.<ext>'. "#EC NOTEXT recommend security group
        ENDIF.
      ENDIF.
    ENDMETHOD.</b>
    You See the Method create a Exception when the the Host not equel "LOCALHOST".
    The Question is : know eny body how kann I test my WD-ABAP in one Portal Test-Installation ?
    Best Regard
    Reza Aflaki
    Message was edited by: Reza Aflaki

    Hi Sudhir,
    how can we implement the authorizations in Web Dynpros? Web Dynpros make an RFC call to R/3 4.6C user transactions. Our doubt is that for the RFC call we use always the same communication user (such as ALEREMOTE for BI or XIREMOTE for RFC call from XI to R/3) and this is correct for background processing, but for dialog transactions the users have only some authorizations (classical authorization profiles) on R/3 4.6c. So how can we import the authorization profile of a user on R/3 4.6c in the Web Dynpros?
    Thank you and regards
    Bob

  • Web Dynpro ABAP Workflow Attachment Problem in UWL

    Hi,
    I am writing a custom application.
    A workflow is supposed to start by a Web Dynpro ABAP Application.
    The user can attach files to it.
    A superior is supposed to review the files and either approve or reject the request.
    I tried the following in Web Ddynpro ABAP: 
    CALL FUNCTION 'EWW_WORKFLOW_START'
        EXPORTING
          X_TASK                       = 'WS90000074'
        IMPORTING
          Y_WORKFLOW_ID       = lv_WF_ID
        TABLES
          X_CONTAINER               = lv_IT_CONTAINER
        EXCEPTIONS
    then followed  by:
    CALL FUNCTION 'SAP_WAPI_ATTACHMENT_ADD'
      EXPORTING
        WORKITEM_ID                 = lv_wf_id
        ATT_HEADER                   = lv_swr_att_header
        ATT_BIN                           = Item_FILENAMEATTACHED
        DOCUMENT_OWNER       = SY-UNAME
        LANGUAGE                     = SY-LANGU
    IMPORTING
        ATT_ID                              = lv_swr_att_id
    The Workflow has onlay one user decision step and one notification Step.
    In the user decision step, there is a binding from ATTACHOBJECTS to the task.
    But, in the log, you can see the attachment in the Workflow Container of the workflow instance, but you don't see it in the task (neither Inbox nor UWL)
    Anyone has a suggestion?

    You need to update all task items one by one with the attachment - you need to identify all tasks and attach it to each one

  • Accees Denied on a Web DynPro based iView

    Hello,
    I've created a Wen DynPro application which is working well. I am trying to embed it at the portal, for that I've created a System which is connected to the WAS and used the Web DynPro iView wizard in order to show this application.
    The problem is that when I Preview this iView the GUI loads but I am unable to open the combo boxes there for example. At the left side of the browser I receive an "Access Denied" error. What could be the problem here?

    Hi Roy
    Check this OSS Note - 779659 Changing Theme disables Drop-Down-By-Index
    I faced similar problem in Enterprise Portal after following this note I am able to see the values in drop down.
    Regards
    Senthil

  • EP(Web Dynpro) Based Travel Request

    We have two statutory trip types one for International and one for Domestic. And based on the trip statutory type the GL account posting is different.
    We are implementing the EP_Web Dynpro based travel wherein we are facing an issues. In trip schema PL we have an option to default either Domestic or International and there is no option to keep it blank. so we have defaulted as International. So what is happening is when we raise a travel request from portal it is taking the default setting given here irrespective of the country of travel. When i see the trip details in the backend it is taking as international even for Domestic trips. But when we raise the same request from SAP TRIP transaction it is working fine and picking up the correct trip type and so posting is also happening correctly.
    How do we resolve the issue wherein when the details are pushed into SAP from EP the default setting should be overriden with the correct trip type based on the country of travel.
    Thanks
    Poornima

    Hi Poornima,
    As you said, the trip type cannot be kept blank while we create a request. But it is not necessary default a trip type. Instead, try creating a field called "Choose" and make that as a default value.
    Now when you go to the EP and create a request, you can choose between domestic trip or international trip.
    Hope this helps.
    Let me know if you have any further clarifications.
    Best Regards,
    Raj

  • Web Dynpro - Workflow integration

    Hello,
    Can someone please tell me what are the methods we can use for integrating Web Dynpro and Workflow. I have to create a custom Business Object for this purpose.
    I have found out that we can use the FM 'SAP_WAPI_CREATE_EVENT' to trigger an event from the WD screen code. Please let me know if anyone has used the same and kindly share the experience.
    Many thanks in advance.
    Regards,
    Ameya Kulkarni

    Hi
      The very important thing to integrate the WDA with workflow is task registration where you are sending work item to SAP inbox with url once the url is clicked the WDA page will open and where the user will take action. These are few guidlies i would suggest for your scenario:
    1) If there are approval process then go for workflow if only simple mail sending with validation do go for workflow. Everything can be handled in your screen itslef.
    2) If you want to determine the approver based on some validation then go for workflow ex. travel request based on employee group <= condition go for this level of approver else go for this level of approver.
    3) For your scenario fellow this way.
      a) Use FM SAP_WAPI_CREATE_EVENT OR SAP_WAPI_START_WORKFLOW but strictly advise to use event create FM rather than start workflow where you are hardcoding the workflow template no. So avoid it.
    b) After triggering the workflow need to validate the condition use some custom FM or class to do this. Do Not write entier code in your method of BOR which will not be helful if you want to call that method somewhere other then your workflow you cannot call it. So always write the business logic in ZFM and call inside your method which will be robost.
    c) To communicate the values from workflow and WDA use SAP_WAPI_WRITE_CONTAINER AND SAP_WAPI_READ_CONTAINER.
    d) To determine the approver create new FM write the logic for approver. Usually we will create rule but for your case its not adviced you are calling WDA screen. In the task(activity) of the workflow in the express field pass the approver user id in the workflow container element which will send the workitem to the SAP inbox.
    e) Once the workitem received the workitem to inbox once clicked it your WDA screen has to open for that need to do TASK regestration from SWFVISU t-code just check thsi its been long for me
    f) After approving by clicking on approve button the send back the data if comments are there by using the above mentioned FM.
    g) Then finally use send mail step to send mail.
    For task registartion and data exchange from workflow and WDA see the blog for BSP the same requirement is done using the BSP. Check that which will give excat idea.
    Regards
    Vijay

  • Access users in a Web Dynpro application on different WAS ??????

    Hi,
    Scenario - I have a local WAS on which i have deployed a Web Dynpro Based application.
    There is another WAS on which I have portal installed. I need to access the roles assigned to a particular user in my Web Dynpro application.
    Query -
    I need to know can i access the roles assigned to a user on a different WAS in a Web Dynpro based application running on a different WAS.
    Thanks and Regards,
    Amol Ghodekar.

    Amol,
    as this questions existed twice, I've deleted one.
    As roles are in the UME, you can access them. But why do you want to do this? You could login to that user, but then the question is what you want to do....
    Regards,
    Benny

  • Web Dynpro application on different WAS ???????????

    Hi All,
    Current Scenario -
    I have a Web Dynpro based application which gets the mapped id and pswd of R/3 system created on portal
    It works fine if both portal and Web Dynpro application are on same WAS.
    Problems -
    1) Can i run this application on another WAS other than portal.
    2) Where would this system be created i.e. on the WAS where portal is present or where the application is present.
    3)If the latter is true, can i get the mapped id and pswd of a system which is present another WAS.
    Thanks and Regards,
    Samta Nichani.
    Please help.
    Thanks and Regards,
    Samta Nichani

    Hi Samta,
    I try to understand your issue, so generally you can separate all the entities using different WAS, but this is strange. Why you want to use different WAS??
    Regarding the authentication you could use Single sign-on, choosing the target system for authentication. Some links here:
    http://help.sap.com/saphelp_nw04/helpdata/en/b9/5fc040fa717b2de10000000a155106/content.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/02/d4d53aa8a9324de10000000a114084/frameset.htm
    http://help.sap.com/saphelp_nw04/helpdata/en/94/695b3ebd564644e10000000a114084/content.htm (SAMl protocol)
    Hope this help you,
    Vito

  • Problem show web dynpro in EP, with iViews

    Hi all,
    I'm working with Sap Netweaver Developer Studio Version: 2.0.4 and with Web AS j2ee 6.30.
    I have make an Email web service in Web dynpro with Netweaver Developer Studio and the deploy is good. I can show in the navigator of internet in:
    "http://sap470:50100/webdynpro/dispatcher/local/WebDynpro_EmailWS/EmailWSApp"
    I have make the application in the host "sap470" but my EP 60 SR1 i have in another machine(Netweaver).
    In the portal i have created a system for Web Dynpro, but i don't know sure if i have put the WAS where the application web dynpro run or where run the portal.
    I have put the WAS of application web dynpro where it run, but i am not sure that put in the path, i have put /webdynpro/dispatcher. I have created the iView in the EP, a page and rool, and i have assiciated the web dynpro to this iView.
    In the propieties of iView, i have put:
    Name of application: Name of the application web dynpro.
    System: System that i have create before.
    Name of Area: This option i'm not sure that put. Any idea?
    Type of Web dynpro: Java
    When i go to presentation get a error.
    Any idea?
    Thanks in advance

    Did you take a look at this?
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/how to create web dynpro based iview.pdf
    based on your url, you need
    App Name : EmailWSApp
    Namespace : local/WebDynpro_EmailWS
    System: sap470

  • Web Dynpro UI for HAP_DOCUMENT BSP

    Hi
    Can anyone let me know if there is a Web Dynpro UI for the HAP_DOCUMENT BSP? I've seen some other posts in this regard but none have any specific answers.
    I would also like to know the best approach to take to develop a new UI for this BSP?
    Regards

    Hi,
    There is no Web Dynpro based HAP_DOCUMENT application available from SAP.
    The BSP UI is quite cluttered but u can minimize it by configuration. More simple the template is, better look and feel. Thats the most u can do here.
    Developing new UI for HAP_DOCUMENT is not simple. U have to understand that the layout highly depends on the template and BADIs included in the template.
    I would say, use your consulting skills and sell BSP based application rather than getting into WD based developemnt. Even if u have to develop, easier option would be WDA .. than WDJ.
    Cheers!!
    Ashutosh

  • Web Dynpro for ABAP and Floor Plan Manager

    Hi.
    How can I integrate an ABAP Web Dynpro application in the Java Web Dynpro based Floor Plan Manager (FPM) framework? I'm thinking of the "General Information" page in the MSS Business Package (com.sap.pct.erp.mss.general_information), where the manager use the Employee Search iView com.sap.pct.erp.mss.generalinfo_employeesearch based on the Java Web Dynpro application sap.com/mss~eepro.GeneralInformation to select individual employees.

    Hi,
    See this link:
    Re: difference between web dynpro java and web dynpro abap
    *Also please have a look to this:
    *1) Web dynpro java/abap
    2) http://stackoverflow.com/questions/363523/java-or-abap-web-dynpro-sap-web-development-on-netweaver
    3) pros and cons for using Java Web Dynpro over ABAP Web Dynpro
    I hope this solves the issue!
    Thanks and Regards
    Pravesh
    Edited by: Pravesh Verma on Mar 26, 2009 12:21 AM

  • How to create web dynpro iView?

    Hi all,
       How to create web dynpro iView?
    I want to create a web dynpro iView where WD is displayed in its icon when create.
    Can you give me the steps and which options to select on each steps.
    Thanks.

    Hi Virenp
    Welcome to SDN
    First Check the below Link  before the below message.so it would give clear idea
    [Creating a Web Dynpro-Based iView|http://help.sap.com/saphelp_nw70/helpdata/en/11/0d653f0c9fa075e10000000a114084/content.htm]
    http://help.sap.com/saphelp_nw70/helpdata/en/11/0d653f0c9fa075e10000000a114084/content.htm
    Go to Content_Administration --> Click on Portal content  -
    > Go any of your Folder
    Right click on the Folder and Click on New -
    >  Iview
    Selct the 3rd Option webdynpro java applicaiton.
    Select the iview as FULL page for one application
    Then select the webdynpro application you deployed  (it would be either under Local or in SAP.com folder)
    Click on next,. and UNCHECK the Option where it would prompt to Create Page.. this is necessary only when u need a page
    Click Finish  ,  and Preview the Iview..
    Suggestion : Always check on [help.sap.com |http://help.sap.com ] for any queries, which is the Bible for SAP reference.
    Thanks
    KT

Maybe you are looking for