How do I lock items and folders in place in SAP Easy Access Menu?

1

For a specific user, I want to disable all customization options of SAP Easy Access Menu. Moving transactions and folders to a different location, moving them into other folders, etc.

I want the SAP menu to be completely static and not able to be modified.

Is this possible? Thank you in advance.

Kfir

Posted 2019-06-27T14:03:16.587

Reputation: 13

Users can't edit neither SAP menu not user menu. Only favorites – Suncatcher – 2019-06-28T23:44:32.907

If that's the case, can I prevent them from moving around their favorites? – Kfir – 2019-06-30T05:25:50.360

Answers

0

It seems there is no way to restrict user from creating favorites or lock them. I checked some standard code and found no single point where permissions are checked during this operation.

You can only completely disable certain type of menu for user, for that one should create entry in table USERS_SSM, the fields are rather self-explanatory:

enter image description here

The favorite items themselves are stored in table SMEN_BUFFC. Theoretically you can lock this table for CRUD and thus prevent users from updating favorites. However, I do not know safe and stable way to do this in SAP, and locking system table can lead to dramatic consequences.

Suncatcher

Posted 2019-06-27T14:03:16.587

Reputation: 908