DBA Data[Home] [Help]

APPS.JTF_UM_PASSWORD_PVT dependencies on FND_USER_PKG

Line 1086: * FND_USER update : The update of fnd_user table is done using fnd_user_pkg

1082: * requester_user_name and email is null
1083: * requester_user_name is not a valid user
1084: * requester_email does not correspond to a valid user
1085: * Other Comments :
1086: * FND_USER update : The update of fnd_user table is done using fnd_user_pkg
1087: * procedure as recommended by fnd (bug 1713101)
1088: * DEFAULTING LOGIC
1089: * If only the user name is passed then the email is defaulted using the following logic
1090: * 1. Email address from fnd_users where user_name = p_requester_user_name

Line 1254: if not fnd_user_pkg.changePassword(username => l_requester_user_name,

1250: if x_return_status <> FND_API.G_RET_STS_SUCCESS then
1251: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1252: end if;
1253:
1254: if not fnd_user_pkg.changePassword(username => l_requester_user_name,
1255: newpassword => l_password) then
1256: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1257: end if;
1258:

Line 1261: fnd_user_pkg.UpdateUser (

1257: end if;
1258:
1259: -- update the password date to null to force user to change psswd upon
1260: -- first login
1261: fnd_user_pkg.UpdateUser (
1262: x_user_name => l_requester_user_name,
1263: x_owner => 'CUST',
1264: x_unencrypted_password => l_password,
1265: x_password_date => null);