cancel
Showing results for 
Search instead for 
Did you mean: 

Populating a context node

Former Member
0 Kudos

Hello,

I want to populate a context node which is Bound to a table. I cannot use the Bind funtion to populate the data as my node is not bound to a structure.How do i populate the data in it.

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

I defined a struture of the type of my node. Then i used the bind table and with a itab which was of the type of my node structure

Former Member
0 Kudos

A Context Node should have a structure, whether define it in CONTEXT tab or dynamically create in program code.

OR, your question is this?

for example a node name 'SD_VIEW'.

then you can ref this node's structure by wd_this->element_sd_view.

data: ls_sd_view type wd_this->element_sd_view.

Former Member
0 Kudos

If the node is bound to a table, where is the table structure defined? You should consider defining a structure if you haven't done so already; it's probably the easiest way to ensure easy transfer and binding. Do it in the DD, then use the new structure both for table binding and data transfer...