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-00059: Maximum Number Of DB_FILES Exceeded in 19C database

When I am adding datafile to my 19C database facing the below error. SQL> alter tablespace DATA  add datafile '/u01/data/data15.dbf&#...