Hai gurus,
In my ALV output I want to disable the left most button (Row selector) for some reasons Dynamically.
The user should not select the entire row for some condition.
loop at itab.
If itab-field1 eq 'AA'.
Disable row for selection.
endif.
endloop.
Thanks in advance .....