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 598: x_return_status := FND_API.G_RET_STS_ERROR;

594: ' | p_check_identity: ' || p_check_identity);
595: end if;
596:
597: -- initialize the return status
598: x_return_status := FND_API.G_RET_STS_ERROR;
599:
600: -- validate required fields
601: -- validate user name
602: if l_user_name is NULL then

Line 621: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

617: -- Check if the workflow is in error status
618: wf_engine.itemstatus (g_itemtype, l_itemkey, l_status, l_result);
619: if (l_status = 'ERROR') then
620: -- Error status
621: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
622: x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
623: else
624: -- Not error, return notified message.
625: x_return_status := FND_API.G_RET_STS_SUCCESS;

Line 625: x_return_status := FND_API.G_RET_STS_SUCCESS;

621: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
622: x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
623: else
624: -- Not error, return notified message.
625: x_return_status := FND_API.G_RET_STS_SUCCESS;
626: x_message_name := 'UMX_FORGOT_PWD_NOTIFY';
627: end if;
628: fnd_message.set_name('FND', x_message_name);
629: x_message_data := fnd_message.get;

Line 647: x_return_status := FND_API.G_RET_STS_SUCCESS;

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

Line 679: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

675: ' | x_message_data: ' || x_message_data);
676: end if;
677: EXCEPTION
678: when FND_SSO_MANAGER.userNotFound then
679: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
680: --x_message_name := 'UMX_FORGOT_PWD_UNEXP_ERR_MSG';
681: x_message_name := 'UMX_FORGOT_PWD_INVALID_ACCT';
682: fnd_message.set_name('FND', x_message_name);
683: x_message_data := fnd_message.get;