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 519: if FND_SSO_Manager.isPasswordChangeable (l_user_name) THEN

515: return;
516: end if;
517: -- validate required fields
518: -- validate user name
519: if FND_SSO_Manager.isPasswordChangeable (l_user_name) THEN
520: get_email_address (l_user_name, l_role_name, l_email_address,
521: l_notification_preference, x_message_name);
522: if (x_message_name is null) then
523: if (l_email_address is not null) then

Line 561: when FND_SSO_MANAGER.userNotFound then

557: 'x_return_status: ' || x_return_status ||
558: ' | x_message_name: ' || x_message_name);
559: end if;
560: EXCEPTION
561: when FND_SSO_MANAGER.userNotFound then
562: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
563: --x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
564: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then
565: FND_LOG.STRING (FND_LOG.LEVEL_PROCEDURE,

Line 910: l_url := FND_SSO_MANAGER.getloginurl;

906: 'fnd.plsql.UMXVUPWB.GenUrl2LoginPg.begin', '');
907: end if;
908:
909: if (funcmode = 'RUN') then
910: l_url := FND_SSO_MANAGER.getloginurl;
911:
912: wf_engine.SetItemAttrText (itemtype => itemtype,
913: itemkey => itemkey,
914: aname => 'LOGINURL',

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

1105: x_no_attempts => x_no_attempts);
1106: return;
1107: end if;
1108:
1109: if not FND_SSO_Manager.isPasswordChangeable(p_username) then
1110: x_return_status := 'E';
1111: x_message_name := 'UMX_LOGIN_HELP_PWD_EXTERNAL';
1112: return;
1113: end if;