cancel
Showing results for 
Search instead for 
Did you mean: 

Disable user settings on AVLGRID

Former Member
0 Kudos

I re-used component SALV...

Unfortunatly, all set_visble etc etc has not effects if there are user settings...

is there any way to disable these?

Regards

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Hi Stephan,

try out this code:

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

In the WD application, use the parameter WDDISABLEUSERPERSONLIZATION to false(X).

Note: X should be without quotes !

WDDISABLEUSERPERSONLIZATION = X

Regards,

Radhika.

Former Member
0 Kudos

It is written without quote!!!!

Former Member
0 Kudos

Under the parameter tab of application declare a parameter WDDISABLEUSERPERSONALIZATION of type WDY_BOOLEAN and set value as X.

It will disable user settings.

Former Member
0 Kudos

for a reason it's not working...

is it possible because it is a re-used component ?