DBA Data[Home] [Help]

APPS.PA_CI_TYPES_UTIL dependencies on FND_API

Line 67: x_return_status := FND_API.G_RET_STS_ERROR;

63:
64: pa_debug.reset_err_stack;
65: EXCEPTION
66: WHEN NO_DATA_FOUND THEN
67: x_return_status := FND_API.G_RET_STS_ERROR;
68: x_error_message_code := 'PA_CI_TYPE_INVALID_AMBIGUOUS';
69: WHEN TOO_MANY_ROWS THEN
70: x_return_status := FND_API.G_RET_STS_ERROR;
71: x_error_message_code := 'PA_CI_TYPE_INVALID_AMBIGUOUS';

Line 70: x_return_status := FND_API.G_RET_STS_ERROR;

66: WHEN NO_DATA_FOUND THEN
67: x_return_status := FND_API.G_RET_STS_ERROR;
68: x_error_message_code := 'PA_CI_TYPE_INVALID_AMBIGUOUS';
69: WHEN TOO_MANY_ROWS THEN
70: x_return_status := FND_API.G_RET_STS_ERROR;
71: x_error_message_code := 'PA_CI_TYPE_INVALID_AMBIGUOUS';
72: WHEN OTHERS THEN
73: x_ci_type_id := l_ci_type_id; --Added for bug#4565156
74: fnd_msg_pub.add_exc_msg

Line 77: x_return_status:= FND_API.G_RET_STS_UNEXP_ERROR;

73: x_ci_type_id := l_ci_type_id; --Added for bug#4565156
74: fnd_msg_pub.add_exc_msg
75: (p_pkg_name => 'PA_CI_TYPES_UTIL',
76: p_procedure_name => pa_debug.g_err_stack );
77: x_return_status:= FND_API.G_RET_STS_UNEXP_ERROR;
78: RAISE;
79: END check_ci_type_name_or_id;
80:
81: END pa_ci_types_util;