Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Application hierarchy

Former Member
0 Likes
817

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
631

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.

/.

1 REPLY 1
Read only

Former Member
0 Likes
632

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.

/.