2008 Jun 16 5:09 PM
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
2008 Jun 16 5:22 PM
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
2008 Jun 16 5:22 PM
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.
2008 Jun 16 5:26 PM
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...
2008 Jun 16 5:28 PM
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
2008 Jun 16 5:45 PM
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