cancel
Showing results for 
Search instead for 
Did you mean: 

How to get the data from multiple nodes to one table

Former Member
0 Kudos


Hi All,

How to get the data from multiple nodes to one table.examples nodes are like  A B C D E relation also maintained

Regards,

Indra

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member184578
Active Contributor
0 Kudos

Hi,

You have to create another Node with the required attributes, bind it to the table  and then get the data from multiple nodes/tables and set it to the Node to which the table is bound.

Regards,

Kiran

Former Member
0 Kudos

Thank u Kiran

former_member197475
Active Contributor
0 Kudos

HI Indra,

From Node A, get the values of the attributes as

lo_NodeA->GET_STATIC_ATTRIBUTES(  IMPORTING STATIC_ATTRIBUTES = ls_attributesA  ).

Similarily get all the node values from B, C, D and E.

Finally append all your ls records to the table.

Hope you are clear.

BR,

RAM.

Former Member
0 Kudos

Thanku u Ramkrishnan