Application Development Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 

Double Click on ALV tree is triggered but PAI/PBO are not triggered.

knitinkumarsethy
Explorer
0 Kudos

Hi Experts,

I am usoing CL_SALV_TREE class for displaying the tree. I have registered the event double click.

data: lr_events type ref to cl_salv_events_tree.

lr_events = tree->get_event( ).

set handler at_double_click for lr_events.

Double click is gettting triggered, but, as it is not raising an application event, its not calling the PAI/PBO of screen for the futher screen processing.

Regards,

Nitin.

1 REPLY 1

knitinkumarsethy
Explorer
0 Kudos

Hi,

I have assigned new function codeusing following class method.

cl_gui_cfw=>set_new_ok_code(

exporting

new_code = double_click

importing

rc = lv_rc ).