‎2013 Jul 04 8:17 AM
Dear Friends,
Can we hide ABAP development codes from other users/developers?
‎2013 Jul 04 10:40 AM
‎2013 Jul 04 10:40 AM
You can lock the code.... while creating report by se38 you can find the Lock check box in properties use that....
‎2013 Jul 04 6:52 PM
Using Editor Lock you can avoid editing of the program by other developer but you can not hide the source code.
-Satya
‎2013 Jul 05 6:25 AM
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