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

alv tree checkbox

Former Member
0 Likes
525

hi

i was added checkbox on alv tree .

now

how can i learn selected item ? .

Thanks.

hi

i was added checkbox on alv tree .

now

how can i learn selected item ? .

Thanks.

3 REPLIES 3
Read only

Former Member
0 Likes
485
Read only

Former Member
0 Likes
485

Hi,

when you give the fieldname in the layout...

fs_layo-box_fname = 'CHECK'.

this check should be a field of internal table

so when ever you check the check box.. this field automatically gets the value as 'X.

so in your code you use the loop this way..

loop at interal_table into wa where check = 'X'.
"processing steps.
endloop

Regards

Siddarth

Read only

Former Member
0 Likes
485

Thanks