DBA Data[Home] [Help]

APPS.UMX_PASSWORD_PVT dependencies on FND_USER_PKG

Line 340: -- Description: Calls FND_USER_PKG.UpdateUserParty

336: end;
337:
338: -------------------------------------------------------------------
339: -- Name: UpdatePassword_WF
340: -- Description: Calls FND_USER_PKG.UpdateUserParty
341: -------------------------------------------------------------------
342: Procedure UpdatePassword_WF(itemtype in varchar2,
343: itemkey in varchar2,
344: actid in number,

Line 352: FND_USER_PKG.UpdateUserParty (

348: begin
349:
350: if (funcmode = 'RUN') then
351:
352: FND_USER_PKG.UpdateUserParty (
353: x_user_name =>
354: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
355: 'USER_NAME', TRUE),
356: x_owner => null,

Line 360: x_password_date => fnd_user_pkg.null_date);

356: x_owner => null,
357: x_unencrypted_password =>
358: WF_ENGINE.GetActivityAttrText(itemtype, itemkey, actid,
359: 'PASSWORD', TRUE),
360: x_password_date => fnd_user_pkg.null_date);
361:
362: end if;
363:
364: resultout := WF_ENGINE.eng_completed || ':' || WF_ENGINE.eng_null;

Line 642: FND_USER_PKG.UpdateUserParty (

638: -- Reset the password without starting a workflow
639: l_password := p_password;
640: SetPassword (p_username => l_user_name,
641: x_password => l_password);
642: FND_USER_PKG.UpdateUserParty (
643: x_user_name => l_user_name,
644: x_owner => null,
645: x_unencrypted_password => l_password,
646: x_password_date => fnd_user_pkg.null_date);

Line 646: x_password_date => fnd_user_pkg.null_date);

642: FND_USER_PKG.UpdateUserParty (
643: x_user_name => l_user_name,
644: x_owner => null,
645: x_unencrypted_password => l_password,
646: x_password_date => fnd_user_pkg.null_date);
647: x_return_status := FND_API.G_RET_STS_SUCCESS;
648: end if;
649: end if;
650: end if;