Sunday, August 18, 2019

Reset Application User password using API


Overview:
  Reset User password via back-end using API : fnd_user_pkg.ChangePassword

For Example:

  SET SERVEROUTPUT ON;

  DECLARE
        lc_user_name         VARCHAR2(30)   :=  UPPER('JES009');
        lc_new_password    VARCHAR2(30)   :=  'welcome123';
        lc_status                BOOLEAN;
BEGIN
        lc_status := fnd_user_pkg.ChangePassword ( username =>  lc_user_name, 
                                                                           newpassword  => lc_new_password 
                                                                         );
       COMMIT;
END;
/

No comments:

Post a Comment

Steps to get ZPL code output using Zebra viewer - Online

Introduction ZPL is a print language used by many label printers. A print language is a set of commands that can be used to draw elements li...