DBA Data[Home] [Help]

APPS.POS_USER_ADMIN_PKG dependencies on POS_PASSWORD_UTIL_PKG

Line 42: l_unencrypted_password := POS_PASSWORD_UTIL_PKG.generate_user_pwd();

38: l_process := 'POS_BPR_RESET_PASS';
39: l_itemtype := 'POSBPR';
40: l_itemkey := to_char(p_user_id) || ':' || to_char(sysdate,'RRDDDSSSSS');
41:
42: l_unencrypted_password := POS_PASSWORD_UTIL_PKG.generate_user_pwd();
43: l_resetpass := FND_USER_PKG.ChangePassword(l_fnd_user_rec.user_name, l_unencrypted_password);
44:
45: fnd_user_pkg.updateuser
46: ( x_user_name => l_fnd_user_rec.user_name,

Line 813: l_unencrypted_password := pos_password_util_pkg.generate_user_pwd();

809: RETURN;
810: END IF;
811:
812: IF p_password IS NULL THEN
813: l_unencrypted_password := pos_password_util_pkg.generate_user_pwd();
814: ELSE
815: l_unencrypted_password := p_password;
816: END IF;
817: