cancel
Showing results for 
Search instead for 
Did you mean: 

Removing the Cancel,copy,reset, check buttons of select option screen.

selvakumar_mohan
Active Participant
0 Kudos

Hi All,

Please help me in removing the Cancel,copy,reset, check buttons from the select options screen of the WD4A.

Thanks & Regards,

Selvakumar M,.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Use the following code in the WDDOINIT method after using add_selection_field method

data:
    display_btn_cancel  type abap_bool,
    display_btn_check   type abap_bool,
    display_btn_reset   type abap_bool,
    display_btn_execute type abap_bool.
 
wd_this->G_HANDLER->set_global_options(       "G_HANDLER is the attribute of IF_WD_SELECT_OPTIONS
    i_display_btn_cancel  = display_btn_cancel
    i_display_btn_check   = display_btn_check
    i_display_btn_reset   = display_btn_reset
    i_display_btn_execute = display_btn_execute ).

selvakumar_mohan
Active Participant
0 Kudos

Its Working! Thanks Radhika!

Answers (0)