EP6: Dynamic Navigation - Eventing

Hi everybody,
I want to navigate to the same page/iView from my dynamic navigation nodes (which implement INavigationConnectorNode). The dynamic navigation shows a list of customers. Clicking on one of them should show the same page/iView, obviously for different customer ids.
Trying the simple approach to append the parameters ("....?customerid=4711") to the launchURL does not work.
I assume the whole concept works differently: do I have to implement getPRTEvent() (or maybe getJScript() or ..) to parameterize my navigation event ?
I cannot find any info on that subject, so I'd be really grateful for ideas and hints.
Cheers,
Heiko

Hi Altafin,
thanks for your reply, unfortunately this does not work: you assume that I build an iView and thus can control the HTML output. What I do, though, is to dynamically build a navigation structure (not in an iView but in a Navigation Connector). There I only have a couple of fields I can set, most notably the "launchURL". The standard Portal Navigation Service takes my data structure, merges it and forwards it to the (standard) detail navigation iView.
In the meantime I have been able to solve it (actually thanks to Sven Kannengiesser): I put the following into my launchURL:
"/irj/servlet/prt/portal/prtroot/<escaped pcd url>?myparam=4711"
where the escaped pcd url looks something like
"pcd!3aportal_content!2fmyfolder!2f .... !2fmypage"
That works fine.
Cheers,
Heiko

Similar Messages

  • Eventing & dynamic navigation & VC

    Hi all
    i have a  page wth  a custom  webdynpro iview in the dynamic navigation  section of the page.the webdynpro app contains a tree & depending on which element in tree is clicked i want  differnt iviews to appear on the right side
    the  right side iviews are developed in VisualComposer Flash & are independent of the tree webdynpro application.
    Client side eventing is essentially working . i can populate the  fields in the target iviews through   clent side eventing
    currntly i have ALL the target iviews on the right side of the page
    what i need is to hide & show these  iviews  depending on  which branch of tree is clicked
    1 option was to use VC webdynpro compile option  on the target  apps &  use  Webdynpro component iviews & page service. & do a pageService.setDynamicIView(...) & pageService.showDynamicIView(...)
    and not have all the iviews  on the page at design time but have  each of them called dynamically at run time & then  fire the client side event to populate the fields
    all i want to know is has any one done something similar  & did it work successfully
    another option  was to have individual pages with the tree iview in Dynamic navigation & one target iview on the right & do a WDPortalNavigation. & workprotect mode(so that the tree maintains the state). but this causes  major screen flashing as the whole page gets refreshed. so this is my last option
    Any help is appreciated
    thanks
    Prasad badal

    Hi Prasad badal,
    I had a similar requirement some time ago. I did not figure out a useful way to dynamically display several iViews on one page. (Except for building a HTMLB page, which I didn't, as I have never worked with that before).
    You could deploy all iViews in one single VC-Model.
    Then display all iViews above each other. Depending on what tree element is selected, you display one iView and hide all others.
    Best Regards, Benni

  • IView errors in Dynamic Navigation area of Page

    Hi,
    I am developing a Java DynPage iView on EP6.0 SP10 (NW04). The iView functions similarly to the SAP MSS Team Viewer, except that it calls an R/3 Search Help to get a list of employees to display. The iview uses the EPCF framework to generate client side events that are picked up by other iviews on the same page.
    Now, the symptoms of my problem: I created a portal page and added the iview to the dynamic navigation area of the page. I have two other iviews that react to the event that is raised by my iview. They are in the general content area of the page. The page is added to my test role as normal. I test the functionality by logging into the portal and accessing the page via the normal portal navigation. Everything works fine, until I leave my session idle for around five (5) minutes. At that point, if I do anything in the iview, I get a runtime error:
    "An exception occurred while processing a request for :
      iView : N/A
      Component Name : N/A
    iView not found"
    If I refresh the page, everything's ok again. This only happens when the iview is in the dynamic navigation area of the page. If it is added to the general content area of the page, the problem does not occur.
    It looks like some kind of timeout value, but I'm not sure where to start looking. My HTTP session is still alive at this point, as is my SSO cookie. And, as I said before, I don't get the error if the iview is not in the dynamic navigation area of the page.
    Can anyone give me advice on what to do to fix this problem?
    Thanks and regards
    Morne Muller

    Hi Frank,
    Unfortunately I did not get an answer. I am currently busy with other things so this problem is not receiving a lot of attention right now. If I do get an answer, I will post it here. If you are able to fix it on your side, I would appreciate it if you could let me know too.
    Regards
    Morne

  • 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

  • Web URL application in Dynamic Navigation

    Hello all,
    in the dynamic navigation window I run an URL iview with HTML application with javascript.
    I receive in the dynamic navigation window an EPCF event with EPCMPROXY calls.
    After I receive the event I would like to navigate within the dynamic navigation iview to another page of the HTML application. When I use web URLs and form.submit of course the EPCF framework is not loaded with the HTML page and I cannot react to events anymore. Is there at all any solution to this problem?
    Thanks in advance
    Peter Balaz

    Yes, there is a problem with ur MDS.
    The command window for MDS should stay.
    I had jdk compatibility issue, so thats why I suggested to check on jdk.
    I'm not sure what version will be compatibile with MDS 4.1.4.
    check the prereuisites.
    You can try the following links:
    http://supportforums.blackberry.com/rim/board/message?board.id=browser_dev&message.id=264&query.id=368188#M264
    http://supportforums.blackberry.com/rim/board/message?board.id=browser_dev&message.id=257&query.id=368428#M257
    http://supportforums.blackberry.com/rim/search?category_id=BlackBerryDevelopment&submitted=true&q=MDSSimulatorclosing
    http://supportforums.blackberry.com/rim/search?submitted=true&q=MDS+4.1.4
    http://supportforums.blackberry.com/rim/board?board.id=MDS_dev
    http://supportforums.blackberry.com/rim/?category.id=BlackBerryDevelopment

  • Dynamic navigation to Component of IBase

    Hi Team,
    The requirement is need to navigate to Component Of IBase from our custom view.
    By using the Search Query we are able to get the collection IBComponent.
    How can i proceed with the dynamic navigation in my hyperlink event.
    In the SPRO settings the object details of IBMAIN has not been maintained.
    Kindly share your thoughts.
    Thanks,
    Ravi

      HI Ravi,
    Try to use below logic in Event handler of hyperlink.
    data:  lv_descriptor_object  TYPE REF TO if_bol_bo_property_access,
            lr_navigation         TYPE REF TO if_crm_ui_navigation_service,
            lr_data_collection    TYPE REF TO if_bol_bo_col,
    lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
      CALL METHOD cl_crm_ui_descriptor_obj_srv=>create_ui_object_based
      EXPORTING
        iv_ui_object_type   = 'IB150_IBASE'
        iv_ui_object_action = 'B'
        RECEIVING
        rr_result           = lv_descriptor_object.
       IF lv_descriptor_object IS BOUND.
        CREATE OBJECT lr_data_collection TYPE cl_crm_bol_bo_col.
       lr_query = cl_crm_bol_query_service=>get_instance(
            iv_query_name = 'IBIBaseToIBase' ).
            REFRESH it_parms.
            wa_parms-name = 'IBASE'.
            wa_parms-VALUE = lv_ibase.(Your ibase iD)
            APPEND wa_parms TO it_parms.
    *Add the selection parameters
            CALL METHOD lr_query->set_query_parameters
            EXPORTING
              it_parameters = it_parms.
    *Get the result list
            lr_result = lr_query->get_query_result( ).
    *Get the first object(entity) in the result list
            lr_entity ?= lr_result->get_first( ).
            CHECK lr_entity IS BOUND.
            lr_data_collection->add( lr_entity ).
            lr_data_collection->insert( iv_bo = lv_descriptor_object
            iv_index = 1 ).
            IF lr_navigation->is_dynamic_nav_supported( ir_descriptor_object = lv_descriptor_object ) = abap_true.
              lr_navigation->navigate_dynamically( lr_data_collection ).
            ENDIF.

  • Dynamic navigation from ZCOMP1 to ZCOMP2

    Hi experts,
    Hope you are all doing good!
    This is the first time I'm working with the dynamic navigation. So, I'm just trying to understand how really it works with two custom components.
    I've already searched this forum n got some info. But, I'm getting confused with the procedure. 
    While calling the target component, I see the below code:
    lr_window ?= me->view_manager->get_window_controller( ).
    lr_window->call_outbound_plug( iv_outbound_plug = 'TOCOMP2' iv_data_collection = lr_data_collection ).
    and in another thread, they used:
    lr_navigation = cl_crm_ui_navigation_service=>get_instance( ).
    CHECK lr_navigation IS BOUND.
    lr_navigation->navigate_dynamically( lr_col ).
    Can someone help with the difference between these methods?  I really need this to understand clearly before proceeding further.
    I would really appreciate if someone can provide the generic procedure to achieve this. Thank you a lot.
    -Ezhno.

    Hi Maren,
    WebUI Navigation guide  - for more Info.
    Dynamic navigation will be perform only if they have generic mapping entry in navigation bar profile in spro. At runtime webui picks the target id and calls the inbound plug to the target link.
    if you are trying to perform navigation on the standard component, then you can directly check the config in spro and perform the navigation using a descriptor object.
    and if its for the custom component then u have to define a workarea component repository
    check my answer in below thread How to link view to be displayed on a logical link. Use first three screen shots to define work area repository
    Once u have defined your target id for your ZComponent , then u can create a new your new mapping in spro for your ZComponent, like  below screenshot and perform dyanmic navigation.
    Now to perform dynamic navigation sample code .
       data: lr_nav_descr      type ref to if_bol_bo_property_access,
            lr_core                     type ref to cl_crm_bol_core,
            lr_nav_serv       type ref to if_crm_ui_navigation_service,
            lr_header           type ref to cl_crm_bol_entity,
            lr_entity type ref to if_bol_bo_property_access,
            lr_col           type ref to cl_crm_bol_bo_col.
    *     Get the BOL Core Instance
      lr_core ?= cl_crm_bol_core=>get_instance( ).
    * get the BuilHeader object
      lr_header = 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_header
                                 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_nav_serv = cl_crm_ui_navigation_service=>get_instance( ).
    * check if navigation is possible
      if lr_nav_serv->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_nav_serv->navigate_dynamically( iv_data_collection = lr_col ).
      endif.
    As per as configurations navigate_dynamically will check the spro config as it will navigate to the target id of the BP as display mode i.e on overviewpage.
    Now comes to the first question......
    lr_window ?= me->view_manager->get_window_controller( ).
    lr_window->call_outbound_plug( iv_outbound_plug = 'TOCOMP2' iv_data_collection = lr_data_collection ).
    here you are trying to get the instance of the window controller and then your are calling to the Window Outbound plug and passing the collection using a navigation_link.
    where inbound and outbound plugs are defined.
    Steps :
    Create an outbound plug on the source view
    Create an inbound plug for target view.
    Create an event handler for the navigation event
    Method EH_xxx.
    Op_xxx.()
    ENDMETHOD.
    Create a navigation link between the source and target view.
    In the outbound plug, call following code snippet.
    Me->view_manager->navigate(source_rep_view =  me->rep_view
    Outbound plug = <navlink>) or you can call the window plugs and perform
    Create an inbound plug for target view.
    If you have any questions, let me know.
    Regards,
    Sumeet Gehlot

  • WDA dynamic navigation

    Hello everyone
    I am currently creating a componet for displaying detailed information for diffentent plants.
    On the leftside i have an ALV-List of different plants and right an Info-Component displaying detailed information for the selected plant. The Info-Component contains a Tab-Strip which is dynamicly created in dependence of the selected plant.
    I have many different Info-Item-Components (basic_data, measurements, packing_details, addition_notes, etc.) which all implement the same Interface (all of them are Info_Items) and a customizing that defines which of these components are relevant for a specific plant.
    If a plant is selected, my Info-Component determines the relevant Info-Item-Components for the plant, creates component usages for the Info-Item-Components and creates a Tab with a view-Container for each ComponentUsage. If there are no InfoItems defined for a Plant a default Tab ist displayed.
    Examle:
    Plant A selected -> Tab_Strip with 2 Tabs which contain the components (basic_data and measurements);
    Plant B selected -> Tab Strip shows only one Tab (packingdetails)
    Plant C selected -> Tab_Strip with 4 Tabs which contain the components (basic_data, measurements,  packing_details, ...)
    My problem is the following:
    The Interfacecontroller of my Info-Component has a method init_for_plan, in which i determine all relevant InfoItems for the plant and create the component usages.
    The WDDOMODYFIEVIEW-Method of the only view (V_MAIN) creates the corresponding tabs and view_container of the tabstrip and prepares the dynamic navigation links to the embedded components.
    But I can't navigate along the created navigation links in the WDDOMODYFIYVIEW (Link: [WDA Phasemodel|http://help.sap.com/saphelp_nwpi71/helpdata/de/49/b8c706c7c26d7ce10000000a421937/content.htm]) and i can't do the navigation in the Componentcontroller because there i can't get a to the necessary controller; also navigation after WDDOMODYFIYVIEW is not possible, is it?(WDDOPOSTPROCESSING)
    Where do I have to embed the dynamicly created component useages into there corresponding view_containers to display them correctly?
    Kind regards
    Markus

    When you click on Plant,
    As there is a default tab already avaiable, in the WDOINIT of view or before Modifyview create the component usage of the componet that needs to be displayed in 1st/default tab and fire the plug. also create teh number of tabs required in modiyfview when 1st component is embdedded.
    In the TAB click event, embded the respective component (do_dynamic_navigation ) and fire the plug in tab click event.

  • Dynamic Navigation - Forcing navigation from code

    There are a number of questions on this forum about this, but all of them end with this as a solution for dynamically using the JSF navigation:
    NavigationHandler navigator = getApplication().getNavigationHandler();
    navigator.handleNavigation( getFacesContext(), null, "next_page" );However, this doesn't work for me at all. I'm trying to call this in prerender(), are there limitations about when you can call this? I'm being forced to do this:
    FacesContext.getCurrentInstance().getExternalContext().redirect ( "next_page.jsp" );Which feels like a total hack, since it's not utilizing the JSF Navigation. I would like to stay within the standard so all of my navigation rules are in the same place. How can I do this? Thanks.

    From my experience, this (being the redirect page, not using JSF navigation) is the only way I could get it to work. Since I am developing portlets, which by standard ignores page redirects, this has left me with no usable dynamic navigation.
    Your other option pennstump would be to write your own stage handlers so you could "extend" the jsf invocation model and add another action stage to handle your redirect. That seems to be the only valid way I have found that would allow JSF navigation techniques to be used without an action event being processed.

  • Pass parameter from dynamic navigation iView to WebDynpro iView

    Hi All,
    I know there are a lot of threads dealing with passing paramters from EP to WebDynpro using EPCM but actually I didn´t find a solution for my problem.
    I have in the dynamic navigation area of the SAP Portal an iView based on a JSP dynpage. In the corresponding JSP I fire an EPCM-event:
    EPCM.raiseEvent("urn:test.de:wochenb" , "passDataToWebDynpro" , evtData);
    In the content area there is a WebDynpro iView. In this WebDynpro-application I subscribe to the event in the wdDoInit-method of a view:
    WDPortalEventing.subscribe("urn:test.de:wochenb" , "passDataToWebDynpro" ,wdThis.wdGetDataFromJSPDynpageAction());
    and I have an event-handler:
    public void onActionDataFromJSPDynpage(com.sap.tc.webdynpro.progmodel.api.IWDCustomEvent wdEvent, java.lang.String dataObject )
        //@@begin onActionDataFromJSPDynpage(ServerEvent)
         IWDMessageManager manager = wdComponentAPI.getMessageManager();
         manager.reportSuccess("EPCM event testing " + dataObject);
      //@@end
    My problem is now that the event is fired correctly by the JSP Dynpage but the event-handler of the WebDynpro is never executed.
    As info: the domain of the J2EE-Server the webdynpro-application is deployed to is identical to the J2EE-Server the portal runs on.
    Can anybody help ?
    Thanks !
    Bernd

    Hi All,
    I found the solution by myself.
    For information: Click in the dynamic navigation fires the event und forces the content afterwards to refresh. During the refresh the WebDynpro subscribes to the event in the wdDoInit-Method. This is to late because the event is fired before the refresh.
    My solution is to use a setTimeout before the event-triggering in the dynamic navigation iView.
    Regards,
    Bernd

  • 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

  • How to define the dynamic navigation between two component in web ui

    Hi All,
    I have a requirement to create a new assignment block in accounts overview screen .
    1.Created new view(Table view) in the BP_HEAD component.
    2.Created new button on the table view toolbar .
    3.If the user clicks the new button it should navigate to interaction log component(BT126H_CALL).
    Please hekp me step 3 how to do .
    I have checked planned activity assignment block in the account but is dynamic navigation.
    Please explain me how to define the dynamic navigation between two components.
    What is window delegate .
    Thanks,
    Venkyy

    Hi ,
    Kindly follow the link , this will be helpful for your issue :
    http://wiki.sdn.sap.com/wiki/display/CRM/CRM-NavigatingtoyourcustomBSP+component

  • 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

  • Dynamic Navigation in Interaction History

    Hi,
    When I navigate to Interaction History in CRM 2007, I am able to fetch various interaction records. Where as I am not able to open an individual interaction record from the result window. When I double click to oepn the record I am getting the error message "Dynamic Navigation to this object is not supported".
    Please let me know the settings to be done to overcome this.
    With kind regards,
    Shankar
    Edited by: Shankar Nagarajan on Aug 27, 2008 11:43 AM
    Edited by: Shankar Nagarajan on Sep 9, 2008 3:51 PM

    Please read this 2 topics:
    Recent Items
    Dynamic Navigation Is Not Supported By This Object Error
    May be this help you.

Maybe you are looking for

  • Is there any way to add back "Raise to Speak" to iOS 8?

    Hi - I'm a student with disabilities and rely heavily on accessibility features that make my life easier. For example, I use a Bluetooth headset to trying answer phone calls and use Siri- I especially use the "Raise to speak" option for accessing Sir

  • FM to create a new item in Purchase Order

    Hi Experts, I am using BAPI_PO_CREATE to create PO's from frontend. Now I want to create a new item in same PO which i have created earlier, the way we can do in me21n. I think i cant do this through BAPI_PO_CREATE FM. Can anybody pls help me regardi

  • Roles and Profiles missing

    For particular user I know his roles and authorizations But I want to know for particular infocube  for that user what roles and authorizations he is missing . And he not able to see reports which are running on particular infocube.How to solve this

  • VMware to Hyper-V template conversion issue for Windows Server 2008 template

    Hello, I am attempting to convert a Windows server 2k8 template from VMware to Hyper-V. The hosts are Cisco UCS B200 M3 blades running Win2k12 and ESX 5.5 respectively. The template boots successfully in VMware and runs through its post install proce

  • Where I can get SAP standard webdynpro application source code

    Dear Experts, Where can i get sap standard WebDynpro application source code, because i need to copy that source code and modify that according to my application. My scnario. Actually i need to develop Carloan WebDynpro application, but its similar E