DBA Data[Home] [Help]

APPS.UMX_PASSWORD_PVT dependencies on FND_USER_PKG

Line 333: -- Description: Calls FND_USER_PKG.UpdateUserParty

329: end;
330:
331: -------------------------------------------------------------------
332: -- Name: UpdatePassword_WF
333: -- Description: Calls FND_USER_PKG.UpdateUserParty
334: -------------------------------------------------------------------
335: Procedure UpdatePassword_WF(itemtype in varchar2,
336: itemkey in varchar2,
337: actid in number,

Line 345: FND_USER_PKG.UpdateUserParty (

341: begin
342:
343: if (funcmode = 'RUN') then
344:
345: FND_USER_PKG.UpdateUserParty (
346: x_user_name =>
347: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
348: 'USER_NAME', TRUE),
349: x_owner => null,

Line 353: x_password_date => fnd_user_pkg.null_date);

349: x_owner => null,
350: x_unencrypted_password =>
351: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
352: 'PASSWORD', TRUE),
353: x_password_date => fnd_user_pkg.null_date);
354:
355: end if;
356:
357: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;

Line 624: FND_USER_PKG.UpdateUserParty (

620: -- Reset the password without starting a workflow
621: l_password := p_password;
622: SetPassword (p_username => l_user_name,
623: x_password => l_password);
624: FND_USER_PKG.UpdateUserParty (
625: x_user_name => l_user_name,
626: x_owner => null,
627: x_unencrypted_password => l_password,
628: x_password_date => fnd_user_pkg.null_date);

Line 628: x_password_date => fnd_user_pkg.null_date);

624: FND_USER_PKG.UpdateUserParty (
625: x_user_name => l_user_name,
626: x_owner => null,
627: x_unencrypted_password => l_password,
628: x_password_date => fnd_user_pkg.null_date);
629: x_return_status := FND_API.G_RET_STS_SUCCESS;
630: end if;
631: end if;
632: end if;