Context menu in the Universal Worklist

Hello all,
I'm migrating from Portal 7.0 to 7.3, and right now, I'm trying to migrate the UWL configuration.
I created the Universal Worklist Systems, I uploaded all the .xml configurations, I re-registered the system, I configurated the UWL iView... everything was done like in the Portal 7.0... BUT it doesn't works like before. I'm having problems with the "context menu" of each workitem.
In Portal 7.0, when all the "List of UWL Actions to exclude" are typed, the context menu of each workitem dissapears, and I can do a "click" over the workitem and a webdynpro app. is launched.
In Portal 7.3, when all the "List of UWL Actions to exclude" are typed, the context menu of the selected row dissapears, but still remains in the other unselected lines; and the most important thing, when a workitem row is selected, I can't do a "click" over it, it doesn't do anything... If I leave "launchWenDynPro" value into "List of UWL Actions to exclude", I can do a "click" over the workitems, and the webdynpro app. is launched, but the context menu appears...
How can I do to make dissapear the context menu?
I read the following link, but my Portal 7.3 doesn't works like this...
http://wiki.sdn.sap.com/wiki/display/BPX/ContextMenuBehaviourhaschangedinrelease7.10andhigheroftheUniversal+Worklist
Thanks!
Miguel.

Hi Miguel,
Thanks for your post.  It would be great if you can let me know the complete version of the UWLJWF component from NWA.  To get this please do the following:
        To get this, please do the following:
        Open NWA -> Configuration management -> System info ->
press Components info tab, and for software components
Search for UWLJWF and you will find the component information.  Could you please post it here?  Is it possible that you can provide a link to some screenshots of what you are seeing as well?
Along with this, have you checked the standard iview from the PCD - if so is this giving the same result?
Regards,
Beth
EP - Senior Support Consultant II
SAP Active Global Support
Global Support Centre Ireland
**SDN Forum Moderator:
http://forums.sdn.sap.com/forum.jspa?forumID=495&start=0
**SDN Universal Worklist Wiki:
http://wiki.sdn.sap.com/wiki/x/ehU

Similar Messages

  • How to remove options in context menu of the task in UWL.

    Hi,
    How to remove options or customize the context menu of the task in UWL.
    I have 4 options(Edit,Remove,Forward,Resubmit) is appearing in the context menu.
    My requirement is to delete Forward option form the menu list and only 3 options
    should appear in the list.
    Can anybody suggest where to change?
    Thanks,
    Vikas

    Hi vikas,
    Go to System Admin ->System Config->UWL Admin.
    select your system alias.
    Click on Click to Click to Administrate Item Types and View Definitions.
    Select your UWL configuration.
    Download DTD as well as XML file through Download Configuration.
    Then you can edit the xml file using XML spy editor or anyone.
    to upload go back to the same page and select the tab...Upload new configuration.
    Do not forget to clear the cache after upload.
    Hope this helps you.
    Regards
    Atul Shrivastava

  • How do I create a context menu in the new CL_SALV

    I like a function xx in context menu. How do I create a context menu in the  CL_SALV ?
    thank you!
    CLASS lcl_event_handler DEFINITION.
      PUBLIC SECTION.
        TYPES: t_proc TYPE zmp_c00_pr_d,
               tt_proc TYPE STANDARD TABLE OF t_proc,
               tt_proces_subpr TYPE TABLE OF ltyp_proces_subpr.
        CLASS-DATA: lr_context TYPE REF TO cl_gui_alv_grid,
        r_selections TYPE REF TO cl_salv_selections,
        lr_menu type ref to cl_ctmenu.
        CLASS-METHODS: main CHANGING ct_zmp_c00_pr_d TYPE tt_proc
                                     ct_proces_subpr TYPE tt_proces_subpr
                                     cv_screen TYPE i.
      PRIVATE SECTION.
        CLASS-DATA lt_zmp_c00_pr_d TYPE TABLE OF zmp_c00_pr_d.
        CLASS-DATA ls_process TYPE zmp_c00_pr_d.
        CLASS-METHODS: handle_double_click
                   FOR EVENT double_click  OF cl_salv_events_table
                   IMPORTING row column,
                   detail
                   IMPORTING l_objkey TYPE zmp_c00_pr_d-objkey.
    ENDCLASS.                    "lcl_events DEFINITION
    * CLASS lcl_event_handler IMPLEMENTATION
    CLASS lcl_event_handler IMPLEMENTATION.
      METHOD main.
        DATA: lr_alv TYPE REF TO cl_salv_table,
              lr_events TYPE REF TO cl_salv_events_table,
              lr_columns TYPE REF TO cl_salv_columns,
              lt_col_tab TYPE salv_t_column_ref.
        FIELD-SYMBOLS <column> LIKE LINE OF lt_col_tab.
        IF r_container IS INITIAL.
          CREATE OBJECT r_container
            EXPORTING
              container_name              = 'CONTAINER'
            EXCEPTIONS
              cntl_error                  = 1
              cntl_system_error           = 2
              create_error                = 3
              lifetime_error              = 4
              lifetime_dynpro_dynpro_link = 5
              OTHERS                      = 6.
          IF sy-subrc <> 0.
            MESSAGE i004(z_pm_tool).
          ENDIF.
    *Für Dynpro 1400
          IF cv_screen = '1400'.
            TRY.
                CALL METHOD cl_salv_table=>factory
                  EXPORTING
    *    list_display   = IF_SALV_C_BOOL_SAP=>FALSE
                    r_container    = r_container
                  IMPORTING
                    r_salv_table   = r_alv
                  CHANGING
                    t_table        = ct_proces_subpr.
              CATCH cx_salv_msg .
            ENDTRY.
            TRY.
    * zeige die Daten
                r_alv->display( ).
                IF sy-subrc NE 0.
                  MESSAGE i001(z_pm_tool).
                ENDIF.
              CATCH cx_salv_msg.
            ENDTRY.
          ENDIF.
    * Für Dynpro 1100
          TRY.
              CALL METHOD cl_salv_table=>factory
                EXPORTING
    *    list_display   = IF_SALV_C_BOOL_SAP=>FALSE
                  r_container    = r_container
                IMPORTING
                  r_salv_table   = r_alv
                CHANGING
                  t_table        = ct_zmp_c00_pr_d  .
            CATCH cx_salv_msg .
          ENDTRY.
          TRY.
    * zeige die Daten
              r_alv->display( ).
              IF sy-subrc NE 0.
                MESSAGE i001(z_pm_tool).
              ENDIF.
            CATCH cx_salv_msg.
          ENDTRY.
    *Ereignisobjekt holen
          lr_events = r_alv->get_event( ).
    ** get the SELECTIONS object
    *r_selections = r_alv->get_selections( ).
    * Interne-Tabelle füllen und an die Methode handle_double_click übergeben
          LOOP AT ct_zmp_c00_pr_d INTO ls_process.
            APPEND ls_process TO lt_zmp_c00_pr_d.
          ENDLOOP.
    * Zeiger auf Container für Kontexmenu
          CREATE OBJECT lr_context
            EXPORTING
              i_parent = r_container.
          DATA: lt_events TYPE cntl_simple_events.
          CALL METHOD lr_context->set_registered_events
            EXPORTING
              events                    = lt_events
            EXCEPTIONS
              cntl_error                = 1
              cntl_system_error         = 2
              illegal_event_combination = 3
              OTHERS                    = 4.
          IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
          ENDIF.
    * Interne-Tabelle füllen und an die Methode handle_double_click übergeben
          LOOP AT ct_zmp_c00_pr_d INTO ls_process.
            APPEND ls_process TO lt_zmp_c00_pr_d.
          ENDLOOP.
    * Event: Add Function
          SET HANDLER: on_added_function FOR lr_events.
    * Event: Kontexmenu
    *      SET HANDLER: on_context_menu_request FOR lr_context.
    * Event: Doppelklick
          SET HANDLER handle_double_click FOR lr_events.
    * get the SELECTIONS object
          r_selections = r_alv->get_selections( ).
    * Einzelne Spalte holen
          lr_columns = r_alv->get_columns( ).
    * Doppelklick funktioniert nur auf das Feld OBJKEY
          LOOP AT lt_col_tab ASSIGNING <column>.
            <column>-r_column->set_output_length( 20 ).
            IF <column>-columnname = 'OBJKEY'.
              <column>-r_column->set_visible( 'X' ).
            ELSE.
              <column>-r_column->set_visible( ' ' ).
            ENDIF.
          ENDLOOP.
          IF lt_col_tab IS NOT INITIAL AND sy-subrc <> 0.
            MESSAGE i002(z_pm_tool).
          ENDIF.
        ENDIF.
      ENDMETHOD.                    "main
      METHOD handle_double_click.
        FIELD-SYMBOLS <fs_zmp_c00_pr_d> TYPE zmp_c00_pr_d.
        READ TABLE lt_zmp_c00_pr_d INDEX row ASSIGNING <fs_zmp_c00_pr_d>. " vor dem Changing Parameter der Klasse
    *    READ TABLE ct_zmp_c00_pr_d INDEX row ASSIGNING <fs_zmp_c00_pr_d>.
        IF sy-subrc <> 0.
          RETURN.
        ENDIF.
        IF column = 'OBJKEY'.
          lcl_event_handler=>detail( <fs_zmp_c00_pr_d>-zz_slotid_a ).
        ENDIF.
      ENDMETHOD.                    "handle_double_click
      METHOD detail.
        DATA: lr_alv TYPE REF TO cl_salv_table,
              lt_alv_tab TYPE TABLE OF zmp_p00_sp_d.
    * Subprozess holen
        SELECT * FROM zmp_p00_sp_d INTO TABLE lt_alv_tab
          WHERE objkey = l_objkey.
        IF sy-subrc <> 0.
          MESSAGE i003(z_pm_tool).
        ENDIF.
        TRY.
    * Neu erzeugte Instanz für ALV-Tabellenobjekt holen
            cl_salv_table=>factory( IMPORTING r_salv_table = lr_alv
                                     CHANGING t_table = lt_alv_tab ).
    * Ausgabe Fenster für SubScreens
            lr_alv->set_screen_popup( start_column = 1
                                   end_column = 130
                                   start_line = 1
                                   end_line = 10 ).
    * Anzeige der Daten
            lr_alv->display( ).
            IF sy-subrc <> 0.
              MESSAGE i001(z_pm_tool).
            ENDIF.
          CATCH cx_salv_msg.
        ENDTRY.
      ENDMETHOD.                    "detail
    ENDCLASS."lcl_event_handler IMPLEMENTATION
    Edited by: polaris1 on Dec 15, 2010 12:18 PM

    Can't read that jumble, but suggest you look at the excellent SALV tutorials by Rich Heilman by searching for SALV tutorial on SCN.  You'll find working code and how-to for adding your own functions to SALV.

  • In Firefox 4, how do I get back the context menu for the drop down list of the Location Bar so I can Open Link in New Tab, which I did often in FF 3?

    Firefox 3 has a context menu for the drop down list of
    the Location Bar. One option on this menu I used often
    is "Open Link in New Tab" -- quite convenient.
    This context menu has disappeared in Firefox 4.
    Can I get it back?

    See also:
    *Tools > Options > Privacy > History: "Remember search and form history"
    *https://support.mozilla.org/kb/Form+autocomplete
    The "Use custom settings for history" setting allows to see the current history and cookie settings, but selecting that setting doesn't make any changes to history and cookie settings.<br />
    Firefox shows the "Use custom settings for history" setting as an indication that at least one of the history and cookie settings is not the default to make you aware that changes were made.<br />
    If all History settings are default then the custom settings are hidden and you see "Firefox will: (Never) Remember History".<br />

  • PO Approval Items Workitems are not removed from the Universal Worklist UWL

    Hi,
    Certain of our purchase orders require approval, they are sent to the relevant approver via workflow to their SAP inbox (SBWP) and universal worklist.
    When the user executes the workitem (Approve or Reject) The workitem should be removed from the universal worklist and SBWP when refreshed.
    The problem we experiencing is that the Workitems are not removed from the UWL after they have been executed. The SBWP is behaving correctly and the items are removed.
    It is not all the workitems that have this problem, only certain ones - but there is no pattern.
    Thanks for the help.

    Hi,
    The user B approved the PR accessing the transaction SBWP or via PR transaction directly?
    If via PR transaction directly, then your workflow needs a Wait Event step.
    Regards,
    Kleber

  • Processing EIC follow up via the Universal Worklist (UWL)

    Hi
    We are implemented EIC (Employee Interationc Centre) ERP and have an issue whereby the follow up appears in both the agent inbox within EIC and the Universal Worklist.   The workflow for follow up is WS61000086.  How do we get the follow up to work from the UWL as well as the EIC agent inbox?  At the moment if the  user clicks on the work item in the UWL a blank window is opened 'Display Object' close window. 
    Many thanks
    Julie

    Hi,
    You are most likely missing a proper configuration for the task in UWL. The UWL configurations are done in Portal in system admin -> system config -> UWL (->Manage item types). This will require some XML "coding" experience, since you would need to do a proper XML configuration for the task. Now I don't know that what should happen when the user clicks the task in UWL, since I don't know this workflow or this area. Is there some web application existing for this task, are you just supposed to open the SAP GUI for the task? In both cases it might also be possible to do the needed configuration in transaction SWFVISU. Basically you need to enter your task ID there and then configure what is the "visualization" for the task. After the SWFVISU has been done correctly, you need to re-register the workflow system (in system admin -> system config -> UWL), and this would create the XML configuration automatically.
    Regards,
    Karri

  • Show Custom Attributes of GP Tasks in the Universal Worklist

    Hello,
    I have created a GP Process and i can see and execute its task in the universal worklist.
    But it only shows standart propertys like : Process,From, Sent, Due, Status.
    I want to add Custom specific task propertys, but i couldn`t find the way. Reading javadoc documentation :
    [https://help.sap.com/javadocs/NW04S/current/uw/com/sap/netweaver/bc/uwl/doc-files/uwldtd.html#ItemType|https://help.sap.com/javadocs/NW04S/current/uw/com/sap/netweaver/bc/uwl/doc-files/uwldtd.html#ItemType]
    It says de we only can retrieve custom propertys from this connectors:
    ABAP_BOR - for SAP Business Object Repository
    WEBFLOW_CONTAINER - for Business Workflow container
    UM - for Portal user attributes from user management
    ALERT_CONTAINER - for alert container 
    GP_Connector is not in the list.... this means that it won`t be possible to show specific task attributes in the UWL if the tasks belong to a Guided Procedure Process?
    Thanks in advance!
    Marco.

    Hello Chittya,
    As I explained, my problem is not showing the GP tasks in the UWL ( in fact i have created a GP connector, and my GP tasks are correctly shown in my UWL ). The problem is that i can´t manage to show custom properties of this GP tasks in the universal worklist.
    Regards.
    Marco.

  • Create new attribute in the universal worklist

    hi,
    Anyone knows how to create new attribute in the universal worklist ?
    I try:
    in the UWL administration iview -->
    Click to Configure Item Types and Customize Views Using a Wizard-->
    Define custom attributes and customize the corresponding view-->
    here i choose an existing configuration(uwl.webflow.SAP_CRM)-->
    SAP_CRM-->
    add attribute-->
    and now in the window "personalize task" in the table
    Current display attributes appear my new attribute called "prof" > save>
    Select the systems that you want to search for the attributes--> SAP_CRM -->
    apply to systems.
    but this attribute not save..any idea??
    thank you.

    Hi,
    have you took a look at :
    http://help.sap.com/saphelp_nw04/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm
    Fabien.

  • Developing Third Party Connectors for the Universal Worklist

    Hi,
    We need to develop a third party connector for the Universal worklist.
    In order to retrieve the workflow items we want to use a web service that will be developed according our needs.
    The documentation that I found regarding the UWL states that in terms of connectivity we can use Web based protocols such as HTTP and Web Services, but i couldn't find any example for this, besides the SONIC.
    Has someone already developed a third party connector? Examples?
    Thanks in advance.
    Best regards,
    José

    Hi,
    Have a look at these PDFs...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/405729e9-314f-2a10-eab6-fcebe6fe8cba
    http://help.sap.com/javadocs/nwce/current/uw/UWL%20Custom%20Connector%20API.pdf
    Regards,
    Srinivas.

  • Implementation in the Universal Worklist

    Hi Everybody,
    We are running an EP7.0, one of the requirements we have received from our client is to receive all approvals coming from both Purchase requisition (MM) and shopping carts (SRM) in the same Portal Inbox.
    Based in the functionality the Universal Worklist provides, this would be possible to be done with minor customization, am I right?
    I would like to confirm this as we are not sure whether to classify the request as a fit (possible to be done with minor customization) or as a Gap (Heavy configuration or coding are required).
    Any help will be very useful.
    Many thanks and regards
    Stella

    Hi,
      Check this links...
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/a3461636-0301-0010-3787-978f5ac8bd45
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/771f1a61-0e01-0010-daa9-93a52905da09
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/3c2b9c90-0201-0010-ab86-a574c7881607
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/fa21a890-0201-0010-708b-d0cfc117e7cd
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6deea37b-0601-0010-c8a0-e13401056ad9
    Regards,
    Senthil kumar K.

  • Context Menu on the right click of af:tree node

    Hi Experts,
    I am using drag and drop functionality in af:tree.In that i used one tree for drag source and another one tree for drop target,and it is working as expected.
    Now I want to bring one additional option in the context menu of the target tree node that is ,when i right click on any of the target tree node in addition to the default menu options like "Collapse","Expand" i want to add one more option .For this i added "contextMenu" facet after the "nodeStamp" facet inside the tree.
    *<f:facet name="contextMenu">*
    *<af:popup id="p1">*
    *<af:menu text="Delete" id="m1">*
    *<af:commandMenuItem text="Delete" id="cmi1"*
    *action="#{myWorkflow.deleteWorkflowNode}"/>*
    *</af:menu>*
    *</af:popup>*
    *</f:facet*>
    Now the problem is : before using drag and drop the context menu workes without any problem .But after using drag and drop the context menu is not popped up.
    can anybody help me to resolve this?
    Thanks,
    Priya.

    Hi Frank,
    1. I am using JDeveloper 11.1.1.3 version
    2. Drop target tree is having the context menu.
    3. Yes . In Drop event am calling a backing bean method with return type DnDAction and i return the value as DnDAction.MOVE to reflect the changes in the database table to the target tree.
    Regards,
    Priya.

  • Remove Resubmit option in context menu of the task in UWL EP7

    Hi All
    In EP7, the behaviour of the tasks has changed a lot.
    when the task appeared in UWL,Clicking on the work items, the form is not getting opened up instead it is showing "Resubmit" option in context menu of the task.
    For each task i need the corresponding iView to get opened up. This is how I have configured our uwl.webflow.<system_alias>.xml
    How can we remove the Resubmit button and open the form for manager to submit?
    I need to revert back to original functionality.
    Points will be rewarded
    Regards
    Sonal Mangla
    Message was edited by:
            Sonal Mangla

    Have you looked at this:
    http://help.sap.com/saphelp_nw2004s/helpdata/en/09/6d6b17b29b4eef83a553acaa52f668/frameset.htm
    Paul

  • Integrate the Universal Worklist (EP) with Workflow from BW or R/3 ????

    How can I integrate the Universal Worklist (EP) with Workflow from BW or R/3 ????
    Is there same documentation ?

    See this link:
    http://help.sap.com/saphelp_erp2004/helpdata/en/39/a1bb5c4c0d4ab4a417e87ef35f1efa/frameset.htm
    There is also a document entitled 'How to Configure and Customize the Universal Worklist' from 2004 that was quite helpful.  Unfortunately, I can't find the link - perhaps yuo could search for it?

  • Hiding Context menu from the UWL header

    Hi Experts,
    This is Raji. i would like to hide the  Context menu  (hover menu)from the UWL header table .
    Context menu is the one (small icon resides at the right most side of the UWLheader table.The objects availble in the menu are " personalize, refresh etc.."
    appriciate your views regarding this.
    Raji.

    Hi ,
    I am also trying to acheive the same [Get rid of the menu icon in UWL] , Can you please share the solution?
    Thanks,
    Smita

  • Configuring Guided Procedures with the Universal Worklist

    hi experts,
    Pls give me the steps to Configure Guided Procedures with the Universal Worklist....
    I have the help file with me but it doesn't work ... and my configuration is NWDS 7.0 sp9.
    pls help me
    with regards,
    sriram

    Hi,
    You can configure your system so that the tasks generated in Guided Procedures (GP) workflows, both on local and remote systems, are displayed in the Universal Worklist (UWL) together with the tasks pertaining to other SAP NetWeaver Portal work areas.
    You perform the configuration steps on the consumer side:
           1.      Create a portal system, specifying the host name, HTTP port of the GP tasks provider and, if available, the WSDL of the relevant service.
           2.      Register the system as the item provider for UWL and configure it for remote access.
    You establish the connection between GP and the UWL by assigning a system alias.
           3.      In UWL, browse all pending GP tasks assigned to your user.
    You can only view tasks assigned to your user, that is, the logon ID of the user on both systems must match.
    Prerequisites:-
    a)  You have been assigned the System Admin portal role to be able to create portal systems and aliases. For more information, see Administration Roles.
    b) You have been assigned the Standard User role to be able to access UWL in the portal. For more information, see Default Portal Content for Standard Users.
    c) You know the host name of the system from which you want to retrieve GP tasks
    Step by Step Procedure guide can be found out at
    [Step by Step Procedure for COnfiguring GP with UWL|http://help.sap.com/saphelp_nw04s/helpdata/en/43/ef06a7860c7061e10000000a1553f6/frameset.htm]
    Hope this helps,
    Regards,
    Shailesh Nagar

Maybe you are looking for

  • Help - I can't connect to the Music Store anymore

    Today I have had the message "iTunes could not connect to the Music Store. The network connection was reset." This was after it tried for a few minutes. Everything else - playlists, accessing Gracenote CDDB for CDs, playing my songs - seems to be wor

  • "Unable to display this Web Part" error message after patch KB2844286

    We use a Web Part to show a list item in the boxed style. We have modified this Web Part with SharePoint Designer to remove the header columns. The result looks like this: After installing the latest patch KB2844286 we’ve got the following error mess

  • Integration of Interwoven with Sun ONE PS6

    Hi, where can i get the details of Sun ONE PS6 integration with Interwoven TS. I need low level details(like API details). Any API's available for this????????????? regards Arun

  • Limitations on presentation using iPad

    I would like to use iPad for doing the presentation occasionally during my business trips. I read some articles here and found there is a major issue that the iPad does not mirror the iPad screen to the projector by default (output the iPad screen to

  • Some NOTES disappeared.  How do I get them back?

    Weirdest thing. I opened NOTES and highlighted one of them to edit it. When I did, it actually just disappeared on me. What the ****? I did nothing to delete it, it just vanished. I then noticed that two other NOTES were gone....and they were two I u