cancel
Showing results for 
Search instead for 
Did you mean: 

How to disable Print button on WebDynpro ABAP ALV

Former Member
0 Kudos

In WebDynpro ABAP, a standard menu appears around the ALV, that has a PRINT button and an EXPORT button.

Is there anyway to disable those buttons????

Thanks

John

Accepted Solutions (1)

Accepted Solutions (1)

arjun_thakur
Active Contributor
0 Kudos

Hi John,

Check the interface if_salv_wd_std_functions. It contains methods which are used to hide the standard ALV toolbar buttons.

Also refer :

Answers (1)

Answers (1)

Former Member
0 Kudos

Refer this piece of code :

lo_value->if_salv_wd_std_functions~set_pdf_allowed( abap_false ).
lo_value->if_salv_wd_std_functions~set_export_allowed( abap_false )