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

Can we hide ABAP development codes from other users/developers?

Former Member
0 Likes
968

Dear Friends,

Can we hide ABAP development codes from other users/developers?

4 REPLIES 4
Read only

Former Member
0 Likes
737

There are so many threads available, please first check.

http://scn.sap.com/thread/541632

Read only

Former Member
0 Likes
737

You can lock the code.... while creating report by se38 you can find the Lock check box in properties use that....

Read only

satyabrata_sahoo3
Contributor
0 Likes
737

Using Editor Lock you can avoid editing of the program by other developer but you can not hide the source code.

-Satya

Read only

Former Member
0 Likes
737

Hi,

Try this one..

create user exit with SEUED001 ABAP Editor
In FM EXIT_SAPLS38E_001 their is INCLUDE ZXSEUU08.

create INCLUDE ZXSEUU08 and you can restrict other user to display souce code by putting this sample code.

IF SY-UNAME NE 'XXXXXX'.   "Except entered user_name here, other will be restricted
  MESSAGE E800(ED).
  LEAVE SCREEN.
ENDIF.

Regards,

Mordhwaj