Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Authorization group - to restrict other users to not see the program code

former_member853013
Participant
0 Likes
700

Hi,

I have developed report program. Is it possible to restrict the other users to don't see the program code.

Thanks in advance.

Regards,

Eswar

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
660

Eswar:

SAP does not allow you to restrict access to your report programs. Anybody with the right autorizations can see your programs.

There are some tricks to achieve someting like that. Tricks consists basically in write your code without enter between lines. I think there are no effective way in SAP or ABAP to protect programs source code from curious eyes.

Ex.:

REPORT ztest. TABLES: ztable. DATA: g_var1...

Regards.

Rafael Rojas.

Hi,

I have developed report program. Is it possible to restrict the other users to don't see the program code.

Thanks in advance.

Regards,

Eswar

4 REPLIES 4
Read only

Former Member
0 Likes
661

Eswar:

SAP does not allow you to restrict access to your report programs. Anybody with the right autorizations can see your programs.

There are some tricks to achieve someting like that. Tricks consists basically in write your code without enter between lines. I think there are no effective way in SAP or ABAP to protect programs source code from curious eyes.

Ex.:

REPORT ztest. TABLES: ztable. DATA: g_var1...

Regards.

Rafael Rojas.

Read only

Former Member
0 Likes
660

hi this is not possible , the user may have the authorisation to display it but he may not change it...you can prevent the other users not to change the program by specifying the EDITLOCK in the program attributes...

Read only

Former Member
0 Likes
660

Hi Eswar,

I suppose you can not make it invisible the code but you have an option not to change your code by others using 'Editor Lock'. You can set this through 'Attributes' section from your report.

Thanks,

Vinay

Read only

matt
Active Contributor
0 Likes
660

In a commercial environment, if a programmer managed to make their code unreadable, they'd very quickly find themselves unemployed.

Don't try it.

matt