Oracle EBS 強制登入變更密碼
參考資料來源:這裡
— 重設密碼 + 強制登入時變更密碼
BEGIN
fnd_user_pkg.updateuser(x_user_name => 'X00000',
x_owner => 'cust',
x_unencrypted_password => 'a123456',
x_password_date => to_date('2', 'j'));
COMMIT;
END; |