Application Development 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: 

Locking Users

former_member759680
Contributor
0 Kudos

Hello,

Is it possible to automaticaly Lock users who do not login for a particular number of days in succession? Is there soem parameter for that?

Thanks.

2 REPLIES 2

Former Member
0 Kudos

Depending on what version you are on you might investigate parameter: login/password_max_idle_productive

More info here: http://help.sap.com/saphelp_nw04s/helpdata/en/22/41c43ac23cef2fe10000000a114084/content.htm

It doesn't lock a user but it does prevent password login.

If you need to lock the user then you will need to schedule a job which uses a custom program to read the dates in USR02 and perform a user lock

former_member759680
Contributor
0 Kudos

Thanks everyone