cancel
Showing results for 
Search instead for 
Did you mean: 

Function module to get Hierarchy values

Former Member
0 Kudos

Hello All.

Does any know if there is a standard function module to get all the values for an infoobject under an specific node in a Hierarchy?

Thanks..

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hello Alfonso,

Please check these Function modules

RSNDI_SHIE_STRUCTURE_GET

RSSH_HIERARCHY_READ

Regards,

Praveen

former_member183777
Active Contributor
0 Kudos

I have used the following code to read Fund Center Hierarchy. Hope it helps:

w_nodebyname-iobjnm = '0FUNDS_CTR'.

w_nodebyname-nodename = '1500157810'.

CALL FUNCTION 'RSNDI_SHIE_STRUCTURE_GET3'

EXPORTING

  • I_S_HIEKEY =

i_s_hiesel = w_hiesel

i_s_subtreesel = w_nodebyname

  • I_T_NODENAME =

  • I_NO_NODENM_TABLE = RS_C_FALSE

IMPORTING

  • E_S_HIEDIR =

e_subrc = lsubrc

TABLES

  • E_T_HIEDIRT =

e_t_hierstruc = fund_hier_157810

  • E_T_MHIERNODE =

  • E_T_THIERNODE =

  • E_T_HIERINTVL =

  • E_T_NODENAMES =

  • E_T_NODEATTR =

  • E_T_LEVEL =

  • E_T_MESSAGE =

.

Thanks

Vineet

henry_jones
Participant
0 Kudos

Can you help me? I can't get this to work.

Former Member
0 Kudos

Hi Alfonso,

Check this post:

Bye

Dinesh

Wrongly posted. Sorry.

Former Member
0 Kudos

Hello Dinesh.

You send me to some docuemnts about APO. I think you gave me the wrong link.

Regards,

Alfonso.