2007 Dec 13 4:59 AM
Hi Gurus,
I have a ALV display with 5 rows. I have to write a code such that i have to select only one from these rows. I thought of using a radio button but found that it is not possible. Can u suggest me a way for this problem
Regards,
Raghavendra.
2007 Dec 13 5:07 AM
How do I program double click in ALV?
2007 Dec 13 5:07 AM
How do I program double click in ALV?
2007 Dec 13 5:12 AM
Hi,
According to my requirement i should have a button or checkbok for all all the rows and i must write a code such that i can select only one row
Regards,
Raghavendra.
2007 Dec 13 5:19 AM
2007 Dec 13 5:32 AM
Hi,
I have to select only one row. if i select one row all the other check box or buttons should be disabled.
Regards,
Raghavendra.
2007 Dec 13 5:40 AM
hi raghav,
i think u'r requirement is something like u get a list of 5 rows and now u want to click on anyone row(at a time obviously only1 could be selected) n get details about it.
for this u can go for interactive alv.
if u need the code for this feel free to revert back.
regards,
sohi
2007 Dec 13 5:57 AM
Hi Soshi,
I know that it can be done by interavtive ALV, For appearance issue i want to use a button on checkbox to do this. If u know how it could be done, send me the code ASAP.
Regards,
Raghavendra.
2007 Dec 13 6:46 AM
hey raghav,i had never done this way using buttons but u can put a checkbox and accordingly do it using
loop at screen-output.
if p_checkbox eq 'X'.
screen-input = '0'.
modify screen.
and u'r subscreen's coding.....i.e.perform XYZ.
endif.
endloop.
hoping this logic works,
try it out.
regards,
sohi