Skip to Content
0
Former Member
Sep 26, 2008 at 08:13 AM

Protect Code / Deny Access

53 Views

Hello

I would like to know how to protect code or db contents

For example, if I have a report starting with:

IF sy-uname <> 'ALPHA'.

LEAVE PROGRAM.

ENDIF.

  • rest of the program

I have that this program can be executed only from ALPHA user; but if another person start SE38 and modifies the report

every user can use the report, so how can I protect the code itself? Is there a way for example to allow only the creator of the report to change it?

In similar way, suppose the name of the user that can access the report are stored in a db: I want that the access to the database table containing the name of the user to be restricted.

How can I do it?