Application Development and Automation 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: 
Read only

Checkbox using CL_SALV_TREE

Former Member
0 Likes
2,290

Hi All,

Is it possible to have checkbox functionality using CL_SALV_TREE class ?

I can see a method for event RAISE_CHECKBOX_CHANGE in CL_SALV_EVENTS_TREE class which seems we can handle a checkbox in SALV TREE display. The checkbox is being disabled as shown below, when I tried to implement it in my report.

Could you help me to enable that checkbox and handle the event for the same.

Thanks,

Arun.

1 ACCEPTED SOLUTION
Read only

Sandra_Rossi
Active Contributor
0 Likes
1,668

I think it's answered in the doc -> http://help.sap.com/saphelp_nw70/helpdata/en/26/46fb40f17af66fe10000000a1550b0/frameset.htm

item->SET_EDITABLE( true )

event CHECKBOX_CHANGE

2 REPLIES 2
Read only

Sandra_Rossi
Active Contributor
0 Likes
1,669

I think it's answered in the doc -> http://help.sap.com/saphelp_nw70/helpdata/en/26/46fb40f17af66fe10000000a1550b0/frameset.htm

item->SET_EDITABLE( true )

event CHECKBOX_CHANGE

Read only

0 Likes
1,668

Thank you ...