Start of Content Area

Background documentationIncremental Tree Construction  Locate the document in its SAP Library structure

Transferring node informatino to the SAP Tree at the frontend is a critical operation in performance terms. If you have a large tree with more than 500 nodes, you should not transfer the child nodes of a particular node to the frontend until the user actually expands that node.

Example

In the following structure, you should only add the nodes Root and Child1 into the SAP Tree. The child nodes of Child1 should not be transferred until the user actually expands the node.
This graphic is explained in the accompanying text

To do this, you must implement the following steps:

Example

An example of this is provided in the program SAPSIMPLE_TREE_CONTROL_DEMO .