2008 Sep 22 1:31 PM
Hi,
I created three radiobuttons in alv report including with line items.
whenver double click line items , its going next screen.,
Here my requirement is when i click one click radiobutton should selec
2008 Sep 22 1:40 PM
Handling will be same in both the cases. There is no Difference in Handling the events. The same can be handled using the Double click.
FORM user_command using ucomm type sy-ucomm selfield type slis_selfield.
CASE ucomm.
when '&IC1'.
case selefield-fieldname. "<---using this you can handle different fields.
when 'FIELD1'.
endcase.
endcase.
endform.
2008 Sep 22 1:40 PM
Handling will be same in both the cases. There is no Difference in Handling the events. The same can be handled using the Double click.
FORM user_command using ucomm type sy-ucomm selfield type slis_selfield.
CASE ucomm.
when '&IC1'.
case selefield-fieldname. "<---using this you can handle different fields.
when 'FIELD1'.
endcase.
endcase.
endform.
2008 Sep 22 1:42 PM
2008 Sep 22 11:44 PM