Application Development 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: 

Reg events in alv

Former Member
0 Kudos

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

1 ACCEPTED SOLUTION

former_member188685
Active Contributor
0 Kudos

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.

3 REPLIES 3

former_member188685
Active Contributor
0 Kudos

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.

Former Member
0 Kudos

Hi,

Can you pls explain your requirement clearly?

Former Member
0 Kudos

thanks