You can change password and also disable the change password which will be asked when the password change limit days has crossed as given below.
No need to pass the old password for the below.
begin
fnd_user_pkg.updateuser(
x_user_name => 'fnd_user.User_NAME',
x_unencrypted_password => 'password',
x_password_date => (sysdate+31)
);
commit;
end;
No comments:
Post a Comment