Dynamic Navigation and Teamviewer

We programed our own iviews in WebDynpro for using in manager selfservice.
For changing between different employees, we assigned the standard SAP teamviewer as a dynamic navigation to the pages which include our WebDynpro iviews.
This proceeding works well. For each iview we can change the employee we like to work on. But if we go to another WebDynpro application in the navigation path, the teamviewer is open in a new way. So the teamviewer lose the indicated employee by stepping from the first to the next application.
But by using the standard manager role, the teamviewer hold the selected employee.
How can I get this effect? Where can I find same information about this problem?

Hi,
Maybe it has to do with the isolation of the iView. By default (i guess) it is configured to be "embedded" on page, this will result in refreshing. Set the iViews to "URL" (and also set the highttype to "automatic").
Otherwise it has to do with the navigation. Are u using the Light Portal Framework?
If so it could be the case that the navigation is triggering a complete page refresh instead of only refreshing the content area..
regards,
Benjamin

Similar Messages

  • Dynamic Navigation and ALV

    Hello Masters,
        In my WebDynpro Abap program, I have Main view, Menu view and Display view. In Display view ALV is used to show the data. In normal navigation scenario, when a menu item is clicked, the Display is getting populated with the data into the ALV. But when i use dynamic navigation i can not see the ALV, i can see all other controls displayed on the View.
    I am using do_dynamic_navigation, Any settings needed to get the ALV visible in my View.
    Thanks in advance.
    Murty.

    Hi Murty,
    I'm not sure why you don't it work for you, as it is working fine for me.
    Check this code and confirm that are you missing anything in the dynamic navigation method.
    data:
        l_api_main type ref to if_wd_view_controller.
      data: target_component_name type string,
            target_view_name      type string,
            source_plug_name      type string.
          target_view_name      = 'LOCAL_TEST'.
          source_plug_name      = 'OUT_PLUG6'.
      l_api_main = wd_this->wd_get_api( ).
        try.
            l_api_main->do_dynamic_navigation(
                source_window_name        = 'MAIN'
                source_vusage_name        = 'MAIN_VIEW_USAGE_1'
                source_plug_name          = source_plug_name
                target_view_name          = target_view_name
                target_plug_name          = 'DEFAULT'
                target_embedding_position = 'MAIN_VIEW/VIEW_CONTAINER').
    Hope this will help you.
    Regard
    Manoj Kumar

  • Employee Search in Dynamic Navigation does not update other iViews (FPM)

    Hi all,
    after selecting a person from Employee Search (MSS) we have to display corresponding data in a customer specific iView with help of selected person number.
    So I created a Floorplan Manager Application as described in https://www.sdn.sap.com/irj/sdn/wiki?path=/display/profile/how-toaddacustomWebDynproiViewtotheMSSEmployeeProfile%28ECC+6.0%29&
    If I use the SAP content page or create my own pages with corresponding Employee Search and customer specific iView, updating of data on the customer specific iView works. But if I add the Employee Search to Dynamic Navigation, the data is not updated in the customer specific iView.
    I didn´t find a solution in this forum. Does anybody know, if it is possible to add the Employee Search as Dynamic Navigation (with help of Floorplan Manager functionality) and update data in other iViews and how this works? Or is it possible to handle this in a different way, e.g. PortalEventing?
    Thanks,
    Thomas

    Hi,
    I also tried to use only iViews of 'General Information'  and added the employee search (team viewer) of the sap
    content page 'General Information' to the dynamic navigation, but the other SAP standard iViews of 'General Information' page are not updated, too.
    Does anybody know, if it is possible to add the employee search to dynamic navigation and to update the other iViews of 'General Information'? If yes, what properties have to be set? Are some settings for Floorplan Manager
    needed?
    Could anybody please give me a hint?
    Thanks,
    Thomas

  • Merging  Pages with Detailed & Dynamic navigation

    Hello experts,
    We are in an Federated Portal senario with a main portal (consumer) and two producer portal (Bi & xRPM).
    What I need to know is if it is possible to merge in a same page an xRPM page with dynamic navigation and a BI page with detailed navigation.
    Thanks in advance for your response.
    David Burlin
    SAP Consultant
    http://www.hegedan.com

    Hi David,
    Did you ever find an answer to this?
    We're currently trying to use the Remote Role Assignment with XRPM Portfolio Management.  It works fine if we just use the out of the box Portfolio Management Role.  
    However, we're trying to use a custom role created on the producer and then merge it with another custom role on the consumer.  It starts out working fine until it attempts to redirect to content on the Portfolio Hidden workset.  Then it gives a runtime error.  Any help you could give would be great!
    Thanks,
    Ken

  • Dynamic navigation, on HCM Process and Forms "Web Dynpro FORM"

    Hi,
    I'm trying to solve an issue regarding dynamic navigation, on a enhacement done at the Web Dynpro ABAP QISR_UI component for HCM Process and Forms.
    I'm hiding the Adobe Form, and doing "do_dynamic_navigation" for a dynamic generated view container present at the VIEWSHOWFORM on the QISR_UI component.
    The code works great, i.e.: the Adobe Form remains hidden and the custom form, using Web Dynpro appears.
    I'm also using the HRASR00_PROCESS_EXECUTE_1 component to execute a Portal IView (Floorplan based component).
    When the process is started, and the folowing actions are executed:
    1- Select Employee
    2- Select Process
    3- Edit form
    4- Press back (for example if the wrong process is selected)
    5- Select the Process
    6- Edit form again
    There is a NULL exception, the "embedding_vca" (below) is NULL
    SAPLWDR_RUNTIME_REPOSITORY
    METHOD: IF_WD_RR_VIEW_USAGE~GET_EMB_VIEW_CNT_ASSIGNMENT (LCL_VIEW_USA
    * method IF_WD_RR_VIEW_USAGE~GET_EMB_VIEW_CNT_ASSIGNMENT
      method if_wd_rr_view_usage~get_emb_view_cnt_assignment.
        result = me->view_usage->embedding_vca->get_api( ).
      endmethod.
    "IF_WD_RR_VIEW_USAGE~GET_VIEW_CONTAINER_ASSIGNMENT
    Can you guys give me an hand?
    Regards

    Hello,
    Basically what I did was replacing the Adobe Form, by a Web Dynpro component that contains its own form, and associated logic.
    Tecnically the steps to acomplish the task were:
    1º Development of a component for showing a form. ( I suggest you to start with just a "hello world" or something very basic )
    2º Enhance the QISR_UI component (VIEWSHOWFORM view, on the modify view method), something like
    if form scenario = XXXXX then
    hide the adobe form;
    create a custom view container (the problem I had above), and create an instance of the component created on step 1
    end if
    3º Access the context that the original form returns (you can check the context debugging the VIEWSHORFORM view )
    4º Pass the context to the component created..
    I can't provide further details on this, I'm sorry...
    I do not suggest doing this, this was a requirement so I had to do it... But this requires a lot of workarrounds, and lots of small changes in standard code related with process and forms... It's not, also, a "clean" solution
    Regards,
    Joã

  • Dynamically generated Detailed navigation and related link

    Where is the Detailed navigation and related link configured for the ESS/MSS.
    Is it done in the Homepage Framework  configuration?
    I could see different navigation and related links for different worksets within ESS/MSS getting called dynamically. Where is this configured.

    Where is the Detailed navigation and related link configured for the ESS/MSS.
    Is it done in the Homepage Framework configuration?
    I could see different navigation and related links for different worksets within ESS/MSS getting called dynamically. Where is this configured.
    Hello Sir,
    If you haven't made it at this point, this is indeed done via the Home Page Framework via the backend on the following IMG PATH:
    > Cross-Application Components
      >  Homepage Framework
    1. You make a resource available via the Role (via PCD)
    2. You customize every other part as a cascade:
    Define Area group / Headers
      -> Define Areas / Assign Area to Area Group
         -> Define Subareas / Assign subarea to Area
             -> Define Services / Assign Services to Subarea.
    Hope I have clarified.
    Regards,
    Bentow.

  • Error while dynamic Navigation for BP Account Overview

    Hi,
      I have created a custom search, result component which is working fine. On the Partner number I have provide the hyperlink to navigate with Dynamic navigation, but I am getting the below error when I clcik on partner number.
    Selection and result
    Now when I clcik on BP
    Code which I have written in event handler
       method EH_ONPARTNER_CLICKED.
    "navigate to Account overview
       DATA: lr_entity        TYPE REF TO cl_crm_bol_entity,
             lv_index        TYPE i,
             lv_guid         TYPE crmt_object_guid,
             lv_objectid     TYPE crmt_object_id,
             lr_core         TYPE REF TO cl_crm_bol_core,
             lr_entity_bt    TYPE REF TO cl_crm_bol_entity,
             lr_nav_descr    TYPE REF TO if_bol_bo_property_access,
             lr_navigation   TYPE REF TO if_crm_ui_navigation_service,
             lr_col          TYPE REF TO cl_crm_bol_bo_col,
             lv_partner_guid type crmt_genil_object_guid.
    * Let's get current row info
      CALL METHOD cl_thtmlb_util=>get_event_info
        EXPORTING
          iv_event = htmlb_event_ex
        IMPORTING
          ev_index = lv_index.
      CHECK lv_index IS NOT INITIAL.
    * Get entity for the current row
      CLEAR: lv_guid.
      lr_entity ?= typed_context->SEARCHRESULTNODE->collection_wrapper->find( iv_index = lv_index ).
      IF lr_entity IS BOUND.
        lv_objectid = lr_entity->get_property_as_string( iv_attr_name = 'PARTNER' ).
      ENDIF.
      CALL FUNCTION 'CONVERSION_EXIT_ALPHA_INPUT'
        EXPORTING
          input  = lv_objectid
        IMPORTING
          output = lv_objectid.
       CHECK LV_OBJECTID IS NOT INITIAL.
      select single partner_guid from but000 into lv_partner_guid where partner = LV_OBJECTID.
    *     Get the BOL Core Instance
      lr_core ?= cl_crm_bol_core=>get_instance( ).
    * get the BuilHeader object
      lr_entity_bt = lr_core->GET_ROOT_ENTITY( iv_object_name = 'BuilHeader' iv_object_guid = lv_partner_guid ).
    * add the Builheader to the collection
      create object lr_col.
      lr_col->if_bol_bo_col~add( iv_entity = lr_entity_bt
                                 iv_set_focus = abap_true ).
    cl_crm_ui_descriptor_obj_srv=>create_ui_object_based(
               exporting
                         iv_ui_object_type   = 'BP_ACCOUNT'
                         iv_ui_object_action = 'B'
               receiving rr_result           = lr_nav_descr ).
      lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
    * check if navigation is possible
      if lr_navigation->is_dynamic_nav_supported( ir_descriptor_object = lr_nav_descr ) = abap_true.
        lr_col->if_bol_bo_col~insert( iv_bo    = lr_nav_descr
                                    iv_index = 1 ).
    *   start the navigation
        lr_navigation->navigate_dynamically( iv_data_collection = lr_col ).
      endif.
    endmethod.

    Hi ,
    Try this.
    Root entity you no need to take for this.
    cl_crm_ui_descriptor_obj_srv=>create_ui_object_based(
               exporting
                         iv_ui_object_type   = 'BP_ACCOUNT'
                         iv_ui_object_action = 'B'
                         iv_entity_key_name = 'BP_GUID'
                         iv_entity_key_value = lv_bp_guid
               receiving rr_result           = lr_nav_descr ),
      lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
    * check if navigation is possible
      if lr_navigation->is_dynamic_nav_supported( ir_descriptor_object = lr_nav_descr ) = abap_true.
        lr_col->if_bol_bo_col~insert( iv_bo    = lr_nav_descr
                                    iv_index = 1 ).
    *   start the navigation
        lr_navigation->navigate_dynamically( iv_data_collection = lr_col ).
      endif.
    Regards,
    Deepika

  • Portal Runtime Error in Dynamic Navigation Area

    Hello gurus,
    In our production portal all of sudden we are getting a portal runtime error in Dynamic Navigation Area.  Earlier there was a problem with one of the clustered nodes and it was resolved.  I was wondering if this error is in connection with that.  Has anybody faced such problem?  Following is the error we are facing in the dynamic navigation area.
    <b>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : pcd:portal_content/fenderfolder/defaultDesktop/frameworkPages/frameworkpage/com.sap.portal.innerpage/com.sap.portal.dynamicNavigationArea
    Component Name : com.sap.portal.navigation.dynnavarea.DynamicNavigationArea</b>
    Please advice on how to resolve the issue. 
    Thanks in advance.
    VR.

    Hello all again,
    We are not getting this Dynamic Navigation Error on ONE of the clustered nodes and all other clustered nodes are working fine. 
    Any idea how to resolve the issue?
    Thanks in advance.
    VR.

  • WD Java iView & Dynamic Navigation Problem

    Hi,
    I'm trying to use a WebDynpro Java iView in Dynamic Navigation but have the following display problem:
    When I navigate to the page for which I've added the iView to the dynamic navigation, only the WebDynpro iView (from the navigation) is shown. You can see the page in its correct form being loaded but as soon as the navigation iView seems to be loaded/ing it replaces the full lower part of the screen (navigation and content panel).
    If I use a plain URL iView in the dynamic navigation the behaviour is as expected.
    But if I add a WebDynpro iView or even a page containing that iView I get the strange behaviour again.
    I'm running NW04s SP7.
    Any ideas?
    Do I have to set some properties on the WebDynpro iView?
    I've tried a couple of things but none did work so far.
    Thanks & Regards
    Markus

    Hi Henrik,
    Sorry for the late reply but I'm just back from vacation.
    No, I have not found a solution. I decided to go for an integrated application instead (Main WD application that bundles navigation with other applications). That works but of course is not as "nice".
    Have you come across some solution yet?
    Kind Regards
    Markus

  • Dynamic navigation structure

    Hi all,
    I want to implement a dynamic navigation structure that displays navigation nodes depending on the status of the user in the backend system.
    The scenario is as follows:
    - user gets access rights via roles and profiles in backend system
    - each user is assigned to a business partner in the backend system
    - each business partner is in a specified phase (the phase of a business partner can change over time)
    - a table in the backend system contains the mapping: phase - visible navigation structure
    -> in the portal the user should see only these navigation nodes, that are set to visible in the mapping table, all other navigation nodes are hidden
    Is it possible to implement such a behaviour?
    I'm running EP 6.0 and CRM 5.0 as backend system.
    Thanks in advance.
    Kind Regards,
    Martina

    Hi Martina,
    Filtering out roles and worksets can be done by implementing a role filter, for details see https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/ep/code-samples/filtering%20role%20and%20workset%20content.htm and https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/5021a57d-0601-0010-6097-ec94a09c626d for example.
    > in the portal the user should see only these navigation nodes,
    > that are set to visible in the mapping table, all other navigation nodes are hidden
    Of course, these nodes must be a subset of the navigation nodes the user has per role assignment.
    Hope it helps
    Detlev

  • Understanding Dynamic Navigation iview.....

    In MSS, I have the following workset in my role...
    ->Team (workset)
       ---+ Team (webdynpro proxy page)
       ---+ Employee information (folder)
       ---+ Employee Working Time (folder)
       etc....
    The "Team webdynpro proxy page" has an iview ,"Services", assigned in "Dynamic Navigation" but there is nothing particular about that iView itself. However, all folders (and their contents) below the Team webdynpro proxy page appear in the Dynamic Navigation panel (like "Employee information" and "Employee Working Time"). I do not understand the connection between the dynamic navigation iview and how all folders in that workset know to display in that dynamic navigation area. There seems to be no explicit assignment. How does that work?
    edit: a bit more info....the "Services" iview is part of the Common Parts business package and based off the "related services" iview template. Still not sure how it "knows" to display the objects below that page that has it assigned as dynamic nav.

    Did you blog about this solution?  If so could you direct me to the blog?  We need to add numerous links to outside URLs in Related links.  I need to order them somewhat differently than alphabetically.
    Thank you,
    D. Maupin
    University of Kentucky

  • Dynamic Navigation iView ordering

    Hi,
    We have a problem with ordering iViews in the Dynamic Navigation of pages. We had this issue during SP11 and SAP was upposed to fix this in SP16. We have upgraded to SP16 now. Just want to confirm that this problem is not solved yet (atleast not using the sort priority).
    Also, are there any workarounds to acheive this?
    Nirav

    Hi Nirav,
    Have a look at Configuring the Sorting of Dynamic Navigation iViews:
    http://help.sap.com/saphelp_nw04/helpdata/en/a4/76bd3b57743b09e10000000a11402f/frameset.htm
    Let me know if it helps, 
    Cheers
    Jim

  • Dynamic navigation

    dynamic navigation
    Posted: Aug 29, 2005 3:03 PM        Reply      E-mail this post 
    Hi
    I have an iview from BW that generates links to reports. I associated this iview to a page as a dynamic navigation link.
    When I click on the link, it does not load the content in the portal content area. I tried _self, _top, _parent as the targets in the BW web template.
    How can I get the content loaded in the portal content area? What is the name of the portal content area frame?
    Thanks
    Sriram

    Hi Sriram,
            I confronted with the same issue as yours but then i did the following.......
    Presuming that two iviews are already created i.e.
        1.Navigation Panel iview with links (left)
        2.different iviews associated to the links.
    Now,
         >>Open the other iviews and select Dynamic navigation in the context menu.
         >>Right click on the navigation panel iview having the links and select "Add to Dynamic Navigation"
    In the first iview for the link the code i gave is
    <a href="link2" class="urLnk" onclick="return EPCM.doNavigate('ROLES://portal_content/xyz/Pages/sampleiview')">Link to Project Plan</a>
    No need of the parent,self,.....etc.
    Hope this helps.
    regards,
    Joshua Kiran

  • Dynamic Navigation in ES

    Has anyone tried to add dynamic navigation to ESS page? My issue is after I click the links on the page to launch the service (e.g. Working Time: Record Working Time Service), dynamic navigation is lost.  Please suggest.  Thanks,
    Rong

    Hello again,
    thanks for your support. It was all my fault that the dynamic navigation didn't work. I've already added the Dynamic Navigation iView to the Framework-Page, but forgot that I made objects invisible by default for that specific container that I added the DN iView to. So making contents visible for this container worked.
    Anyway, Karsten's link might be very helpful for future Layouts. But for this specific layout the customer explicitly wanted the old default framework behavior for the dynamic navigation.
    @Detlev Knowing where to find that code is very good. Actually it's not that self-explanatory and I didn't find out how the DN works in the AFP, but thank you anyway. We've never worked with the AFP before and maybe I didn't phrase my question clear enough. Maybe that's why none of the colleagues I've asked were able to answer my question.
    Regards,
    René

  • GenericCreator: How to add iview as Dynamic Navigation

    Hi All,
    Had anyone used the "Uploading Content and Actions" into the portal via XML file process to add an iview into a page into the Dynamic Navigation portion which will cause the iview to load up on the left panel of the page.
    I am able to do this via the Portal manually, but would like to know how this can be achieve using the .xml and the GenericCreator.

    Hi Mary,
    What I meant by being able to do this manually in the portal, is the process of going into Content Administrator > Portal Content  finding the page that I would like to add the iview into.  Selecting the page, executing a Right-Click > Edit-Dynamic Navigation.  Then finding the iview, Right-Click > Add to Dynamic Navigation.
    This will add the iview into the Dynamic Navigation portion of the selected page.

Maybe you are looking for