Hi Priti,
I used the below code to enable / disable the standard toolbar buttons in alv with integrated data access.
Please find the below code.
OBJ_ALV_DATA = cl_salv_gui_table_ida=>create( iv_table_name = 'SFLIGHT' ).
OBJ_ALV_DATA->toolbar( )->set_visibility_std_functions(
EXPORTING
iv_details = ABAP_TRUE
iv_sort = ABAP_TRUE
iv_group = ABAP_TRUE
iv_filter = ABAP_TRUE
iv_aggregation = ABAP_TRUE
iv_print = ABAP_TRUE
iv_export = ABAP_TRUE
iv_settings_dialog = ABAP_TRUE ).
OBJ_ALV_DATA->fullscreen( )->display( ).
Thanks & Regards.
Raghunadh Kodali.