cancel
Showing results for 
Search instead for 
Did you mean: 

Table POPIN with button

Former Member
0 Kudos

Hello @all,

I have a table. In this table a i have a table popin. On the table popin i have button. My Question is, when i push the button. How do i know in which row i have push the button???

Tx and Regards

Chrisp

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

hi,

Try this in OnAction of button:

data: lr_element type ref to if_wd_context_element.
 data lv type I.
lr_element = wdevent->get_context_element( 'CONTEXT_ELEMENT' ).
 lv = lr_element->GET_INDEX( ).

Answers (0)