cancel
Showing results for 
Search instead for 
Did you mean: 

WDA:Access Node values

dhinesh_thirugnanam
Active Participant
0 Kudos

Hi All,

I would like to access the node values from the last screenshot.Please suggest me how to access the node -  lo_nd_ship_to to get the values.

Accepted Solutions (1)

Accepted Solutions (1)

former_member198833
Active Participant
0 Kudos

Hi Dhinesh,

Create a internal table of type of the Node SHIP_TO as such:


DATA lt_ship_to TYPE wd_this->Elements_SHIP_TO.

Then you just simply fetch the contents of the Node into this new internal table:


lo_nd_ship_to->GET_STATIC_ATTRIBUTES_TABLE( IMPORTING table = lt_ship_to ).

Regards,

Felipe

Answers (0)