DBA Data[Home] [Help]

APPS.UMX_PASSWORD_PVT dependencies on FND_API

Line 131: -- x_return_status - Returns FND_API.G_RET_STS_SUCCESS if success

127: -- input parameters :
128: -- p_username - username of the password's owner
129: -- p_password - password to validate
130: -- output parameters:
131: -- x_return_status - Returns FND_API.G_RET_STS_SUCCESS if success
132: -- - Returns FND_API.G_RET_STS_ERROR if failed
133: -- x_message_data - Reason why it is failed.
134: -- Errors :
135: -- Other Comments :

Line 132: -- - Returns FND_API.G_RET_STS_ERROR if failed

128: -- p_username - username of the password's owner
129: -- p_password - password to validate
130: -- output parameters:
131: -- x_return_status - Returns FND_API.G_RET_STS_SUCCESS if success
132: -- - Returns FND_API.G_RET_STS_ERROR if failed
133: -- x_message_data - Reason why it is failed.
134: -- Errors :
135: -- Other Comments :
136: Procedure validate_password (p_username in fnd_user.user_name%type,

Line 152: x_return_status := FND_API.G_RET_STS_ERROR;

148: end if;
149:
150: -- Get username from user id if username is null
151: if (fnd_web_sec.validate_password (p_username, p_password) = 'N') then
152: x_return_status := FND_API.G_RET_STS_ERROR;
153: x_message_data := fnd_message.get ();
154: else
155: x_return_status := FND_API.G_RET_STS_SUCCESS;
156: end if;

Line 155: x_return_status := FND_API.G_RET_STS_SUCCESS;

151: if (fnd_web_sec.validate_password (p_username, p_password) = 'N') then
152: x_return_status := FND_API.G_RET_STS_ERROR;
153: x_message_data := fnd_message.get ();
154: else
155: x_return_status := FND_API.G_RET_STS_SUCCESS;
156: end if;
157:
158: if (FND_LOG.G_CURRENT_RUNTIME_LEVEL <= FND_LOG.LEVEL_PROCEDURE) then
159: FND_LOG.STRING (FND_LOG.LEVEL_PROCEDURE,

Line 580: x_return_status := FND_API.G_RET_STS_ERROR;

576: ' | p_check_identity: ' || p_check_identity);
577: end if;
578:
579: -- initialize the return status
580: x_return_status := FND_API.G_RET_STS_ERROR;
581:
582: -- validate required fields
583: -- validate user name
584: if l_user_name is NULL then

Line 603: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

599: -- Check if the workflow is in error status
600: wf_engine.itemstatus (g_itemtype, l_itemkey, l_status, l_result);
601: if (l_status = 'ERROR') then
602: -- Error status
603: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
604: x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
605: else
606: -- Not error, return notified message.
607: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 607: x_return_status := FND_API.G_RET_STS_SUCCESS;

603: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
604: x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
605: else
606: -- Not error, return notified message.
607: x_return_status := FND_API.G_RET_STS_SUCCESS;
608: x_message_name := 'UMX_FORGOT_PWD_NOTIFY';
609: end if;
610: fnd_message.set_name('FND', x_message_name);
611: x_message_data := fnd_message.get;

Line 629: x_return_status := FND_API.G_RET_STS_SUCCESS;

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;
633: else -- cannot change password for this user

Line 661: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

657: ' | x_message_data: ' || x_message_data);
658: end if;
659: EXCEPTION
660: when FND_SSO_MANAGER.userNotFound then
661: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
662: --x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
663: x_message_name := 'UMX_FORGOT_PWD_INVALID_ACCT';
664: fnd_message.set_name('FND', x_message_name);
665: x_message_data := fnd_message.get;