Authorization & Roles - How To Exclude An Id From Resetting Password

  • November 2019
  • PDF

This document was uploaded by user and they confirmed that they have the permission to share it. If you are author or own the copyright of this book, please report to us by using this DMCA report form. Report DMCA


Overview

Download & View Authorization & Roles - How To Exclude An Id From Resetting Password as PDF for free.

More details

  • Words: 109
  • Pages: 1
you use the parameter login/password_expiration_time because you want users to change their password every xx days. however, you want it so that some users don't have to change their password. at database level (not in r/3), you can easily solve this problem: in the table usr02, just set a date far in the future for the field bcda1 (password last change). for example, if you want to set it so user smith does not have to change his password until 2010, you can use the following sql script : update usr02 set bcda1 = '20101231' where bname='smith' just replace the values for bcda1 and bname with your own values

Related Documents