Script to Reset User Password from Backend
fnd_user_pkg.changepassword
Below is the anonymous block to reset password.
DECLAREflag BOOLEAN;BEGINflag := fnd_user_pkg.changepassword(username=> '',newpassword => '');IF flagTHENDBMS_OUTPUT.PUT_LINE('Your Password has been successfully reset');ELSEDBMS_OUTPUT.PUT_LINE('Password reset has failed');END IF;END;/COMMIT;
No comments:
Post a Comment