cancel
Showing results for 
Search instead for 
Did you mean: 

'Mass maintainence ' of Plug-in settings for users in cFolders

Former Member
0 Kudos

Hi All

In cFolders  under settings---> General , we have a checkbox for Plug-in.

Can the cFolders admin enable the plug-in for all the users in cfolders through some mass maintainence transaction?

Pls. let me know, if you have any inputs on this.

warm regards

Kedar

Accepted Solutions (0)

Answers (3)

Answers (3)

Former Member
0 Kudos

Thanks everyone for your replies. SAP has also confirmed that there is no setting for this and the settings in user administration apply to users created from thereafter.

Murugesh , can you tell me exactly , how to run your code, step by step.

sorry to bother you , but I am not from ABAP background.

regards

Kedar

Former Member
0 Kudos

Hi Kedar,

Use the following path in cFolders;

User Administration > Standard Settings tab and enable the check-box. Settings on the page will apply to all users.

Cheers,

Lashan

Former Member
0 Kudos

The user administration settings will help you only for the new users. for the old users try this piece of code.

DATA lp_setting TYPE REF TO cl_cfx_settings.

DATA lt_filename TYPE cfx_tt_string.

DATA l_filename TYPE string.

DATA l_value TYPE string.

CALL METHOD cl_cfx_settings_doc=>get_folder_entries

EXPORTING

i_folder_name = 'User Settings'

IMPORTING

et_file_name = lt_filename.

LOOP AT lt_filename INTO l_filename.

CREATE OBJECT lp_setting

EXPORTING

i_name = l_filename

i_folder_name = 'User Settings'.

l_value = lp_setting->get_setting(

i_key = 'UseEditPlugins'

i_default = '' ).

WRITE:/ 'FileName',l_filename,'-:Value:->', l_value .

ENDLOOP.

call method set_setting instead of get to set the value to true.

Former Member
0 Kudos

Hi

No, there no option for administrator to do mass maintenance to enable the check box for ‘Plug in’ in the standard product for more than one user.

Regards

Yasar