DBA Data[Home] [Help]

APPS.AST_UWQ_LLIST_MSG_PKG dependencies on FND_API

Line 61: x_return_status := FND_API.g_ret_sts_unexp_error;

57: if c_source_description%found then
58: null;
59: else
60: -- ERROR --
61: x_return_status := FND_API.g_ret_sts_unexp_error;
62: fnd_message.set_name('AST','AST_UWQ_INVALID_SOURCE');
63: l_error_msg := fnd_message.get;
64: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
65: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);

Line 67: RAISE FND_API.G_EXC_ERROR;

63: l_error_msg := fnd_message.get;
64: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
65: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);
66: FND_MSG_PUB.ADD;
67: RAISE FND_API.G_EXC_ERROR;
68: end if;
69: CLOSE c_source_description;
70:
71: else

Line 80: x_return_status :=fnd_api.g_ret_sts_success;

76:
77: -- setting the OUT variables -begin
78:
79: x_mesg_data_char :=l_description;
80: x_return_status :=fnd_api.g_ret_sts_success;
81:
82: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
83: p_data => x_msg_data);
84:

Line 89: when fnd_api.g_exc_error then

85: -- setting the OUT variables -end
86: end if; -- end of main "if"
87: exception
88:
89: when fnd_api.g_exc_error then
90: x_return_status:=fnd_api.g_ret_sts_error;
91:
92: when fnd_api.g_exc_unexpected_error then
93: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 90: x_return_status:=fnd_api.g_ret_sts_error;

86: end if; -- end of main "if"
87: exception
88:
89: when fnd_api.g_exc_error then
90: x_return_status:=fnd_api.g_ret_sts_error;
91:
92: when fnd_api.g_exc_unexpected_error then
93: x_return_status:=fnd_api.g_ret_sts_unexp_error;
94:

Line 92: when fnd_api.g_exc_unexpected_error then

88:
89: when fnd_api.g_exc_error then
90: x_return_status:=fnd_api.g_ret_sts_error;
91:
92: when fnd_api.g_exc_unexpected_error then
93: x_return_status:=fnd_api.g_ret_sts_unexp_error;
94:
95: when others then
96: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 93: x_return_status:=fnd_api.g_ret_sts_unexp_error;

89: when fnd_api.g_exc_error then
90: x_return_status:=fnd_api.g_ret_sts_error;
91:
92: when fnd_api.g_exc_unexpected_error then
93: x_return_status:=fnd_api.g_ret_sts_unexp_error;
94:
95: when others then
96: x_return_status:=fnd_api.g_ret_sts_unexp_error;
97:

Line 96: x_return_status:=fnd_api.g_ret_sts_unexp_error;

92: when fnd_api.g_exc_unexpected_error then
93: x_return_status:=fnd_api.g_ret_sts_unexp_error;
94:
95: when others then
96: x_return_status:=fnd_api.g_ret_sts_unexp_error;
97:
98: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
99: p_data => x_msg_data);
100: