Application Development 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: 

How to find SETNODE from SETLEAF

Former Member
0 Kudos

HI EVERYBODY Im trying to find SETNODE from SETLEAF

like when I give a SETLEAF as an input parameter it will return the SETNODE

4 REPLIES 4

FredericGirod
Active Contributor
0 Kudos

Hi,

there is also SETHEADER table

instead of using maybe try to find the Function module

(setname is the link)

regards

Fred

nabheetscn
Active Contributor
0 Kudos

Hi Dren

You can use function moduel K_HIERARCHY_TABLES_READ for the same. Pass the class value and other parameters

Nabheet


Former Member
0 Kudos

hi Dren

if just want find the up one layer,

      select * into itab

      from setnode

      where setclass eq setleaf-setclass

      and    subclass eq setleaf-subclass

      and    subsetname  eq setleaf-setname.

if you want find the top layer, mean the header of the leaf.

you`d better write a recursion function base on above code.

regards,

Archer

Former Member
0 Kudos


Hi,

you can refer the below link to understand the set. and there is method how to get the set value.

Hope it can help you!

Regards,

Yawa