Hi All,
I have created BUTTON CHOICE by using the following code.
DATA:lr_choice TYPE REF TO cl_salv_wd_menu_action_item.
CREATE OBJECT lr_choice
EXPORTING
id = 'CHOICE_T'.
lr_choice->set_text( 'Talent Groups' ).
lr_button_choice->add_choice( lr_choice ).
In this I need separator between the choices.Please send me solution asap.