How to reset Oracle Apps frontend User ID Password

Oracle Apps front-end User ID Password

DECLARE flag_value BOOLEAN; BEGIN flag_value := fnd_user_pkg.changepassword(username=> ‘sujeet‘ ,newpassword => ‘jha‘); IF flag_value THEN DBMS_OUTPUT.PUT_LINE(‘The password reset successfully’); ELSE DBMS_OUTPUT.PUT_LINE(‘The password reset has failed’); END IF; END; / COMMIT;

No comments:

ORA-06512: at "SYS.DBMS_ISCHED"

Database -  Oracle Database 23AI Cause:   An attempt was made to perform a scheduler operation without the required privileges. Action:  Ask...