السبت، 10 فبراير 2018

PL/SQL Script To Change/Reset The Oracle Applications Password From Back End

Usually its not recommended to change the Oracle apps password from back end, but if you need to change or reset it then use the PL/SQL script below:

DECLARE
v_flag BOOLEAN;

BEGIN
v_flag := fnd_user_pkg.ChangePassword('OPERATIONS','123456');
END;

COMMIT;

ليست هناك تعليقات:

إرسال تعليق