Finding items in SAP Tree using Function



When you use string “1\1” in Java, it gives a valid path and returns the right key. You need the following code:

SapTree tree = ...; // initialize somewhere
String parentKey = tree.findNodeKeyByPath("1");
tree.expandNode(parentKey);
String key = tree.findNodeKeyByPath("1\1");

Advertisements