RoadMap
The RoadMap UI element displays the steps followed in a wizard. Each step is represented by a separate RoadMapStep object or MultipleRoadMapStep. You can use various symbols to mark the start points and the end points of this UI element. If you assign the value more to the startPointDesign or endPointDesign property, this indicates to the user that there are other steps before the first visible step or after the last visible step.
The RoadMap UI element is used to display step by step workflows. This enables an application development team to display small steps of a clearly defined work process.
Example of the Visual Display

RoadMaps have two scrolling possibilities:
● Case 1: No action handler is defined for RoadMap.OnLoadSteps
○ If endPointDesign=startPointDesign=standard, the size of the RoadMap adapts according to the width of the browser window. Scrolling takes place automatically for a client without a round trip. The design of the start- and end points adapts automatically.
○ If other designs were chosen for the start- and end point, the corresponding design is displayed and no client-side scrolling takes place.
● Case 2: An action handler is defined for RoadMap.OnLoadSteps
○ If endPointDesign=more, the Web Dynpro action is triggered when you click on the end point and the application has to deal with the scrolling.
○ For other designs no action is triggered when you click on it.
This also applies for the start point.

To enable the development of accessible applications, the accessibilityDescription property is checked during the syntax check if the tooltip property is not set.
Runtime Class |
CL_WD_ROAD_MAP |
Properties in the View Designer
Name |
Type |
Initial Value |
Bindable |
STRING |
(automatic) |
No |
|
Translatable text |
|
Yes |
|
WDUI_CONTEXT_MENU_BEHAVIOUR |
inherit |
No |
|
WDY_MD_UI_ELEMENT_REFERENCE |
|
No |
|
WDY_BOOLEAN |
true |
Yes |
|
WDUI_ROAD_MAP_EDGE_DESIGN |
standard |
Yes |
|
STRING |
|
Yes |
|
WDUI_ROAD_MAP_EDGE_DESIGN |
standard |
Yes |
|
Translatable text |
|
Yes |
|
WDUI_VISIBILITY |
visible |
Yes |
Aggregations in the View Designer
Name |
Cardinality |
Type |
0..n |
Events in the View Designer
Name |

Other properties that can be inherited are defined in the associated higher-level classes. The associated UI elements are:
Dynamic Programming
For dynamic programming, the same properties, events, and aggregations as in the View Designer are available. Bear in mind the different spellings.
Dynamic Programming of Properties
View Designer Name |
Runtime Name |
Type |
ACCESSIBILITY_DESCR |
WDY_MD_TRANSLATABLE_TEXT |
|
CONTEXT_MENU_BEHAVIOUR |
WDUI_CONTEXT_MENU_BEHAVIOUR |
|
contextMenuBehaviour: inherit |
CL_WD_ROAD_MAP=>E_CONTEXT_MENU_BEHAVIOUR-INHERIT |
|
contextMenuBehaviour: provide |
CL_WD_ROAD_MAP=>E_CONTEXT_MENU_BEHAVIOUR-PROVIDE |
|
contextMenuBehaviour: suppress |
CL_WD_ROAD_MAP=>E_CONTEXT_MENU_BEHAVIOUR-SUPPRESS |
|
CONTEXT_MENU_ID |
WDY_MD_UI_ELEMENT_REFERENCE |
|
ENABLED |
WDY_BOOLEAN |
|
END_POINT_DESIGN |
WDUI_ROAD_MAP_EDGE_DESIGN |
|
endPointDesign: disabled |
CL_WD_ROAD_MAP=>E_END_POINT_DESIGN-DISABLED |
|
endPointDesign: more |
CL_WD_ROAD_MAP=>E_END_POINT_DESIGN-MORE |
|
endPointDesign: moreDisabled |
CL_WD_ROAD_MAP=>E_END_POINT_DESIGN-MORE_DISABLED |
|
endPointDesign: selected |
CL_WD_ROAD_MAP=>E_END_POINT_DESIGN-SELECTED |
|
endPointDesign: standard |
CL_WD_ROAD_MAP=>E_END_POINT_DESIGN-STANDARD |
|
SELECTED_STEP |
STRING |
|
START_POINT_DESIGN |
WDUI_ROAD_MAP_EDGE_DESIGN |
|
startPointDesign: disabled |
CL_WD_ROAD_MAP=>E_START_POINT_DESIGN-DISABLED |
|
startPointDesign: more |
CL_WD_ROAD_MAP=>E_START_POINT_DESIGN-MORE |
|
startPointDesign: moreDisabled |
CL_WD_ROAD_MAP=>E_START_POINT_DESIGN-MORE_DISABLED |
|
startPointDesign: selected |
CL_WD_ROAD_MAP=>E_START_POINT_DESIGN-SELECTED |
|
startPointDesign: standard |
CL_WD_ROAD_MAP=>E_START_POINT_DESIGN-STANDARD |
|
TOOLTIP |
WDY_MD_TRANSLATABLE_TEXT |
|
VISIBLE |
WDUI_VISIBILITY |
|
visible: none |
CL_WD_ROAD_MAP=>E_VISIBLE-NONE |
|
visible: visible |
CL_WD_ROAD_MAP=>E_VISIBLE-VISIBLE |
|
Dynamic Programming of Events
View Designer Name |
Runtime Name |
ON_LOAD_STEPS |
|
ON_SELECT |
Dynamic Programming of Aggregations
View Designer Name |
Runtime Name |
Cardinality |
STEPS |
0..n |
You can find examples of this interface element in the system in the WDR_TEST_UI_ELEMENTS Web Dynpro application and in the WDR_TEST_EVENTS component in the ROADMAP view. You can find a simple example in the system in the DEMO_ROADMAP Web Dynpro application.