cancel
Showing results for 
Search instead for 
Did you mean: 

Roadmap

Former Member
0 Kudos

Hi all,

I am having three views in my component. in one view i am having roadmap. I have embeded the roadmap view in the remaining two views.

Now When i navigate to any view that particular roadmap step is to be highlighted. How to do this.

Thanks,

Susil

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi ,

check with the properties in view designer

http://help.sap.com/saphelp_nw70/helpdata/EN/03/ac884118aa1709e10000000a155106/content.htm

regards,

amit

Answers (3)

Answers (3)

Former Member
0 Kudos

Problem solved

former_member206441
Contributor
0 Kudos

Hi

Go through this link too:

[Roadmap|http://www.sdn.sap.com/irj/scn/weblogs;jsessionid=%28J2EE3417800%29ID1754847150DB21021659444935348040End?blog=/pub/wlg/10361]

Regards

Arun.P

former_member206441
Contributor
0 Kudos

Hi

Create a context element step type string and map it to roadmaps property selected step.

To make the particular road map highlight create a method called navigate

in this

method ONNAVIGATE .

  case target_step.

    when 'FIRST'. "Id of roadmapstep

     wd_this->fire_to_view1_plg(

     ).

     when 'SECOND'.

    wd_this->fire_to_view2_plg(

     ).

    when 'THIRD'.

    wd_this->fire_to_view3_plg(

      ).

   ENDCASE.

endmethod.

Use this code if you are moving from one view to another view by clicking a button.

    DATA lo_nd_road_map TYPE REF TO if_wd_context_node.

    DATA lo_el_road_map TYPE REF TO if_wd_context_element.

    DATA ls_road_map TYPE wd_this->element_road_map.

    DATA lv_step LIKE ls_road_map-step.

*   navigate from ONNAVIGATE( TARGET_STEP  = LV_STEP ).

endmethod.

Regards

Arun.P