cancel
Showing results for 
Search instead for 
Did you mean: 

Disable Print Version and Settings in POWL list

Former Member
0 Kudos

Hi Experts,

I want to disable print version button and the setting button on POWL lists. Let me know if this has to be done through configuration or by coding and how ?

Thanks in Advance

Divakar

Accepted Solutions (0)

Answers (4)

Answers (4)

Former Member
0 Kudos

Hi,

Thanks for your reply.

Where are these configuration parameter available to set/reset. Is there any config settings or table values that has to be set ?

ENABLE_EXCEL_EXPORT - false

ENABLE_PDF_PRINTING - false

DISPLAY_SETTINGS_DISABLED - true

Regards

Divakar

Former Member
0 Kudos

hello diwakar,

Make a application confiquration

and a component configuration for powl_ui_comp.

There you can set this thing.

You can see the webdynpro docs for how to do configuration for webdynpro components.

Best regards,

Rohit

Former Member
0 Kudos

refer http://help.sap.com/saphelp_nw70/helpdata/EN/22/719f42f2ff7e5fe10000000a155106/frameset.htm

In this link you can go to

Web dynpro ABAP: Development in Detail -> Advanced Concepts -> Personalization and Configuration

Edited by: Pooja Patodia on May 12, 2009 1:34 PM

Former Member
0 Kudos

THE POWL print and settings button is disabled by configutaion as you have to set the properties to enable and disable it.

ENABLE_EXCEL_EXPORT - false

ENABLE_PDF_PRINTING - false

DISPLAY_SETTINGS_DISABLED - true

These are the configuration properties for it

Best regards,

Rohit

Edited by: Rohit Mahajan on May 12, 2009 1:55 PM

Former Member
0 Kudos

Hi Diwakar,

lo_value->if_salv_wd_std_functions~set_pdf_allowed( abap_false ).

DATA: lr_table_settings TYPE REF TO if_salv_wd_table_settings.

lr_table_settings ?= lo_value.

lr_table_settings->set_enabled( abap_false ).

Regards,

Abdul

Former Member
0 Kudos

There are configuration parameter available to achieve this under explicit component configuration. Please use the following

ENABLE_EXCEL_EXPORT - false

ENABLE_PDF_PRINTING - false

DISPLAY_SETTINGS_DISABLED - true