‎2014 Mar 20 2:09 PM
Hello everyone,
I'm trying to build something similar to the application hierarchy from SE80 / SE81, but I can't find where the hierarchical relations between the objects in DF14L are stored. How, for example, does the application hierarchy know that FI-AA is part of FI, which in turn is a subobject of the root node?
Many thanks.
Konstantin
‎2014 Mar 20 3:35 PM
You can put a breakpoint on FM RS_COMPONENT_VIEW and open transaction SE81.
CALL FUNCTION 'RS_COMPONENT_VIEW'
EXPORTING
OBJECT_TYPE = 'DEVC'
IGNORE_SFW_SWITCHES = 'X'
REFRESH = ' '
TABLES
NODETAB = NODETAB
EXCEPTIONS
OTHERS = 2.
Internal table Nodetab has the hierarchy.
For example, parent of AP_AKH is 2 and node id 2 is AP. Parent of AP is SAP.
/.
‎2014 Mar 20 3:35 PM
You can put a breakpoint on FM RS_COMPONENT_VIEW and open transaction SE81.
CALL FUNCTION 'RS_COMPONENT_VIEW'
EXPORTING
OBJECT_TYPE = 'DEVC'
IGNORE_SFW_SWITCHES = 'X'
REFRESH = ' '
TABLES
NODETAB = NODETAB
EXCEPTIONS
OTHERS = 2.
Internal table Nodetab has the hierarchy.
For example, parent of AP_AKH is 2 and node id 2 is AP. Parent of AP is SAP.
/.