cancel
Showing results for 
Search instead for 
Did you mean: 

Is there any way to lock the SAP / Customized program?

Former Member
0 Kudos

Hi,

Is there any way to lock the SAP / Customized program ( Not T-code ) ? so that no user can execute the program even though he/she is having authorization to execute.

Accepted Solutions (0)

Answers (1)

Answers (1)

Former Member
0 Kudos

I dont think there is an option to "LOCK" abap programs like you can lock transaction. You will have to restrict using authorizations. If its a particular program, you can create Authorization group ABAP program and restrict it using authorization. thats the only way i am aware of.

Cheers,

Jazz

0 Kudos

What we do is place a lock on INDX table at the beginning of the program...if there isn't already a lock on the program in INDX...(use the program name as part of the lock).

If there is already a lock on INDX, exit with a message or WAIT and check again sometime later...

Former Member
0 Kudos

Hi ,

Thank you very much for your response.