‎2007 Aug 24 1:30 PM
Hi friends,
Is it possible to reset password for any user using abap program
or nay functional module.
i have tried few things
first I am locking user using ENQUEUE_E_USR04
then i am calling SUSR_BAPI_USER_CHANGE to reset password
lastly unlocking user using FM DEQUEUE_E_USR04.
but nothing is workin fine !!
help !! urgent !!
Thanks & Regards,
Abhay
‎2007 Aug 24 1:36 PM
Hi Abhay,
CALL FUNCTION 'BAPI_USER_CHANGE'
EXPORTING
username = user_id
password = password
passwordx = 'X'.best regards,
Thangesh
‎2007 Aug 24 1:33 PM
Hi,
U can directly lock and unlock any username through SU01.
Regards,
Sankar
‎2007 Aug 24 1:36 PM
Hi Abhay,
CALL FUNCTION 'BAPI_USER_CHANGE'
EXPORTING
username = user_id
password = password
passwordx = 'X'.best regards,
Thangesh
‎2007 Aug 25 5:31 AM