DBA Data[Home] [Help]

APPS.UMX_LOGIN_HELP_PVT dependencies on FND_SSO_MANAGER

Line 9: 1) Check if fnd_sso_manager.get_login_url needs to accept parameters such as lang-code

5: x_no_attempts out NOCOPY varchar2);
6:
7: /*
8: Things to do
9: 1) Check if fnd_sso_manager.get_login_url needs to accept parameters such as lang-code
10:
11: */
12: --
13: -- To modify this template, edit file PKGBODY.TXT in TEMPLATE

Line 514: if FND_SSO_Manager.isPasswordChangeable (l_user_name) THEN

510: return;
511: end if;
512: -- validate required fields
513: -- validate user name
514: if FND_SSO_Manager.isPasswordChangeable (l_user_name) THEN
515: get_email_address (l_user_name, l_role_name, l_email_address,
516: l_notification_preference, x_message_name);
517: if (x_message_name is null) then
518: if (l_email_address is not null) then

Line 548: when FND_SSO_MANAGER.userNotFound then

544: 'x_return_status: ' || x_return_status ||
545: ' | x_message_name: ' || x_message_name);
546: end if;
547: EXCEPTION
548: when FND_SSO_MANAGER.userNotFound then
549: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
550: --x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
551: x_message_name := 'UMX_LOGIN_HELP_INVALID_ACCT';
552:

Line 886: l_url := FND_SSO_MANAGER.getloginurl;

882: 'fnd.plsql.UMXVUPWB.GenUrl2LoginPg.begin', '');
883: end if;
884:
885: if (funcmode = 'RUN') then
886: l_url := FND_SSO_MANAGER.getloginurl;
887:
888: wf_engine.SetItemAttrText (itemtype => itemtype,
889: itemkey => itemkey,
890: aname => 'LOGINURL',

Line 1088: if not FND_SSO_Manager.isPasswordChangeable(p_username) then

1084:
1085: return;
1086: end if;
1087:
1088: if not FND_SSO_Manager.isPasswordChangeable(p_username) then
1089: x_return_status := 'E';
1090: x_message_name := 'UMX_LOGIN_HELP_PWD_EXTERNAL';
1091: return;
1092: end if;