Network
This UI element is a generic editor of network graphics. You use it to display everything that can be visualized as nodes and connections between nodes.

The integration of active controls like Network in Web Dynpro ABAP popups is not supported.
More information:
JNet – Introduction for Developers
A standard browser and a Java runtime in the form of the Sun plug-in must be installed on the front end. The Java version should be 1.45. Windows and Linux are supported.
Example of the Visual Display
|
JNet in the Process Monitor
|
Runtime Class |
CL_WD_NETWORK |
Properties in the View Designer
Name |
Type |
Initial Value |
Bindable |
STRING |
(automatic) |
No |
|
STRING |
|
No |
|
STRING |
|
No |
|
STRING |
|
No |
|
STRING |
|
No |
|
WDUI_CONTEXT_MENU_BEHAVIOUR |
inherit |
No |
|
WDY_MD_UI_ELEMENT_REFERENCE |
|
No |
|
XSTRING |
|
Mandatory |
|
WDY_BOOLEAN |
true |
Yes |
|
STRING |
300px |
Yes |
|
WDUI_NETWORK_LAYOUT |
standard |
Yes |
|
WDUI_LOOK_AND_FEEL |
ur |
Yes |
|
Translatable text |
|
Yes |
|
STRING |
|
No |
|
WDUI_VISIBILITY |
visible |
Yes |
|
STRING |
300px |
Yes |
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:
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 |
ADDITIONAL_ARCHIVES |
STRING |
|
ARCHIVE |
STRING |
|
CLASS_ID |
STRING |
|
CODE_BASE |
STRING |
|
CONTEXT_MENU_BEHAVIOUR |
WDUI_CONTEXT_MENU_BEHAVIOUR |
|
contextMenuBehaviour: inherit |
CL_WD_NETWORK=>E_CONTEXT_MENU_BEHAVIOUR-INHERIT |
|
contextMenuBehaviour: provide |
CL_WD_NETWORK=>E_CONTEXT_MENU_BEHAVIOUR-PROVIDE |
|
contextMenuBehaviour: suppress |
CL_WD_NETWORK=>E_CONTEXT_MENU_BEHAVIOUR-SUPPRESS |
|
CONTEXT_MENU_ID |
WDY_MD_UI_ELEMENT_REFERENCE |
|
DATA_SOURCE |
XSTRING |
|
ENABLED |
WDY_BOOLEAN |
|
HEIGHT |
STRING |
|
LAYOUT |
WDUI_NETWORK_LAYOUT |
|
layout standard |
CL_WD_NETWORK=>E_LAYOUT-STANDARD |
|
layout yworks |
CL_WD_NETWORK=>E_LAYOUT-YWORKS |
|
LOOK_AND_FEEL |
WDUI_LOOK_AND_FEEL |
|
lookAndFeel: frog |
CL_WD_NETWORK=>E_LOOK_AND_FEEL-FROG |
|
lookAndFeel: java |
CL_WD_NETWORK=>E_LOOK_AND_FEEL-JAVA |
|
lookAndFeel: ur |
CL_WD_NETWORK=>E_LOOK_AND_FEEL-UR |
|
TOOLTIP |
WDY_MD_TRANSLATABLE_TEXT |
|
TYPE |
STRING |
|
VISIBLE |
WDUI_VISIBILITY |
|
visible: none |
CL_WD_NETWORK=>E_VISIBLE-NONE |
|
visible: visible |
CL_WD_NETWORK=>E_VISIBLE-VISIBLE |
|
WIDTH |
STRING |
|
Dynamic Programming of Events
View Designer Name |
Runtime Name |
ON_CUSTOM_COMMAND |
|
ON_EDGE_ADDED |
|
ON_EDGE_PROPS_CHANGED |
|
ON_EDGE_REMOVED |
|
ON_EDGE_SELECTED |
|
ON_FRAME_SWITCHED |
|
ON_GENERIC |
|
ON_GRAPH_ADDED |
|
ON_GRAPH_REMOVED |
|
ON_INITIALIZED |
|
ON_LAYOUT_CHANGED |
|
ON_LINK_ADDED |
|
ON_LINK_CHANGED |
|
ON_LINK_REMOVED |
|
ON_MODEL_ADDED |
|
ON_MODEL_DIRTY |
|
ON_MODEL_EXTRACTED |
|
ON_MODEL_SAVED |
|
ON_NODE_ADDED |
|
ON_NODE_DBL_CLK |
|
ON_NODE_PROPS_CHANGED |
|
ON_NODE_REMOVED |
|
ON_NODE_SELECTED |
|
ON_RECTANGLE_SELECTED |
|
ON_SELECTION_CHANGED |
|
ON_TRACE_LEVEL_CHANGED |
Some properties of the Network UI element are set using a method handler, and not in the properties of the UI element. You can access the method handler (IF_WD_NETWORK_METHODS) in WDDOMODIFYVIEW.
...
1. Declare a reference to IF_WD_NETWORK_METHODS in the Attribute section of your view
2. Assign the reference in WDDOMODIFYVIEW.
3. Call the method.
You can find an example in the system in component WDR_NETWORK_TEST.
You can find examples of this UI element in the system in the Web Dynpro application WDR_TEST_UI_ELEMENTS, in the component WDR_TEST_EVENTS in the NETWORK view, and in the component WDR_NETWORK_TEST.