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.

Similar Messages

  • 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

  • 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.

  • 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ã

  • 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

  • Override default view with dynamic navigation

    Hi,
    I have an URL parameter, based on what I do a dynamic navigation
    wd_this->wd_get_api( )->if_wd_navigation_services~do_dynamic_navigation()
    in the WINDOW DEFAULT inbound plug.
    However the navigation is overridden by what is set as a default view in the WINDOW tab.
    I tried
          lr_window_controller = wd_this->wd_get_api( )->get_embedding_window_ctlr( ).
           lr_rr_window = lr_window_controller->get_window_info( ).
           lr_view_usage = lr_rr_window->get_view_usage( 'MAIN_USAGE_0' ).
           lr_view_cnt_assignment = lr_view_usage->get_view_cnt_assignment( 'FUNC_VCA_1' ).
           lr_view_cnt_assignment->set_default_view_usage( 'NOTDEFAULTVIEW_USAGE_1' ).
    but not helping, still the default view is appearing. FUNC_VCA_1 in the above code is a view_container, I am trying to set a view active inside that view container.
    Any ideas?
    Thanks!

    Guys, there are some confusions here. Take the following case:
    1) Embed both COMP_A/VIEW_A and COMP_B/VIEW_B into a view container, and set COMP_A/VIEW_A as default
    2) Create a navigation between outbound plug TO_VIEW_B and inbound plug COMP_B/VIEW_B default plug
    3) In WINDOW default, based on a parameter wd_this->fire_to_view_b_plg( ).
    This works, COMP_B/VIEW_B is visible!
    Now remove the navigation link, remove COMP_B/VIEW_B from the window and enter the following code in the handlefeault:
          wd_assist->m_akt_comp_usage = wd_this->wd_get_api( )->if_wd_navigation_services~do_dynamic_navigation(
               source_window_name        = 'WINDOW'
               source_vusage_name        = 'MAIN_USAGE_0'
               source_plug_name          = 'TO_VIEW_B'
    *          plug_parameters           = lt_params
               target_component_name     = 'Z_WD_COMP_B'
               target_component_usage    = 'COMP_B_USAGE_1'
               target_view_name          = 'WINDOW'
               target_plug_name          = 'DEFAULT'
               target_embedding_position = 'MAIN/VIEWCONTAINER'
    NWhile I do get back the navigation link and inside do_dynamic_navigation there is a code to create the component and fire the plug, COMP_B/VIEW_B is not showing. Also please note, that if I do that on a button click it works. The problem is only inside handle default method.
    Thanks!

  • Dynamic Navigation iView

    Hi experts ,
    I had uploaded a CRM role into portal from CRD , when i assign this role to myself i see a dynamic navigation component coming in the detail navigation . Because this is dynamic in nature , i guess that is why i am  not able to see this in pcd . This component consists of a few CRM related links , can anybody tell me how to modify this dyamanic navigation part like theme , changing labels , expanding/collapsing try icons etc .??

    Hey Mayank,
    Under the CRM role, you would be looking at either a page or an iView to which the dynamic navigation is attached. Locate the Page/iView in the PCD and open its properties editor. Select the 'Dynamic Navigation' under Display(properties). Here you would find the pcd object which you get to see under dynamic navigation. Locate this object in the pcd and you can edit its properties like tray settings to reflect in the dynamic navigation under your CRM role. The theme would be the same as other equivalent portal objects and can be changed in the theme editor.
    Hope it helps.
    Regards,
    Prath

  • 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.

  • 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

  • Dynamically removing a component button...

    Sorry if this question sounds stupid/easy, but I'm blanking.
    How do I use AS to dynamically remove a component button that was
    dragged out onto the stage?...
    Thanks!...

    quote:
    Originally posted by:
    kglad
    you caused that problem by doing something to the button's
    bounding box and/or loading your finalexam.swf into another swf.
    I don't know what I would have done to the bounding box. I
    just put the component on the stage and changed the theme color of
    it - that's all...
    As far as the final exam loading into another .swf, that's
    true. There's one "main" .swf that is the basic navigational shell
    for the course (the top/bottom of the course). Then all the "pages"
    of the course load into the big main window of the navigational
    shell...
    ...would that be what's causing it? How come? Is there a way
    to fix it???

  • FM for deleting Component from Ibase Hierarchy

    Hi,
    Is there any FM for deleting Component from Ibase Hierarchy.
    I have tried using the FM "CRM_IBASE_COMP_DELETE", it is anyway deleting the component from the hierarchy but not those component
    whose is already assigned to a Contract.
    I have read these similar thread of only deleting a component but it was not very helpful in my scenario.
    In CRM, standard way of removing the component from Ibase Hierarchy is to "CUT" the component  and save. The mentioned component will not
    be seen in Ibase hierarchy.
    So is there any FM which can actually remove or cut the component from the hierarchy even though it is assigned to any contract etc.
    Awaiting for your expeditious help on this issue,
    Thanks and Regards,
    Jojy

    Hi Naresh,
    Thanks for your response,
    Is there any way of doing the same from Std. FM apart from doing it manually.
    Mine is Interface scenario in which the call will be instantaneous.
    I have tried to dismantle the component also, but it will be remain present in Ibase hierarchy even though it is associated to any contract or not with dismantle sign in it's hierarchy .
    I want to cut it so that it will not remain in Ibase hierarchy, it can be present in CRM system.

  • 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

  • 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

Maybe you are looking for

  • I will pay for who can help me with this applet

    Hi!, sorry for my english, im spanish. I have a big problem with an applet: I�ve make an applet that sends files to a FTP Server with a progress bar. Its works fine on my IDE (JBuilder 9), but when I load into Internet Explorer (signed applet) it cra

  • Yet another cannot resolve symbol

    I'm having a similar problem to many others that have posted here but having tried every suggestion I'm still stuck. My Platform: java 2 1.4.1_01 on WinNT 4.0 SP 6a. I've created a class Career which compiles without any problems. I have also created

  • My iPod won't turn on and I tried everything someone help!!!

    iPod 4g It was reset because it wouldn't go on past the apple icon My sister reset the iPod I hav tried everything I can think of to turn it on I've let it run dead for over a month I charged it for over 10 hours yesterday to today I hav hooked it to

  • Unable to download purchased songs to computer

    I try to download purchased songs (from my ipad) to my computer (authorized) and it give me an error that the song was not purchased using my apple id have version 10.4.8 on computer have version 4.3.4 on my ipad I sign into the computer and iPad w.

  • HT1174 Unspecified Error (9) during restore????????????????????

    I am trying to restore my iPad.  iTunes repeatedly gives me  unspecified error 9 or unspecified error 1611.  I have tried multiple ports and multiple PCs  I have disabled all security software.  My USB ports are 2.0  What is this all about?