SAP Table Service Margin

How can I limit the use of a table to get an authorization database?
For example, a user can only view the plant / storloc based on the authorization object, because sometimes the user confuses too many plants not belonging to her plant / storloc.

Maintenance view

+4
source share
2 answers

In the table maintenance generator for your table or view, select Environment -> Modification -> Events from the menu.

Here you can expand the logic of the table maintenance generator at certain points at runtime.

You can define your own logic; one of the promising events may be "AA" (instead of the standard procedure for reading data). You should be able to change the logic for reading data to perform a user authorization check, which will allow users to see only the records for which they have access.

Here is the SDN document related to the topic of using table maintenance events: http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/8129f164-0a01-0010-2a8e-8765287250fc ? overridelayout = true

+5
source

You can try to add the necessary authority group and object to the technical details of the table maintenance generator.

enter image description here

-one
source

Source: https://habr.com/ru/post/1495245/


All Articles