Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations SkipVought on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Passwords on per user basis 1

Status
Not open for further replies.

Moose467

Technical User
Aug 6, 2002
47
0
0
GB
Hi to all,
Hope you all are well. I have a little problem I have been asked to look into the area of password maintenence for individual users.
The idea is that shift workers will share one login, however we don't want to encounter the problem that the password for this account will be changed without telling the other shift workers what it will be.
Is there a way to disable the password expiry and/or the change password option only for these types of users.

Thanks in advance for any help you can give.

Using R/3 4.0B on Oracle 8.1.7.3 and AIX 4.3.3
 
Hi,
nope.
As far as I know, the profile parameters that govern those things are global.
 
We have a custom program that is run as a batch job to prevent the password from changing for users who login as "CREW". Here is the code:

REPORT ZNOREST.

* This program prevents certain users from being forced to change their
* password, whenever their old password expires. It should run once a
* month to insure the password never gets a chance to expire.


TABLES: USR02.

SELECT SINGLE * FROM USR02 WHERE BNAME = 'CREW'.
USR02-BCDA1 = SY-DATUM.
USR02-LTIME = '000001'.
UPDATE USR02.


 
Thanks Kershul, thats just what I was looking for
Much appriciated
 
Status
Not open for further replies.

Part and Inventory Search

Sponsor

Back
Top