DBA Data[Home] [Help]

APPS.AST_UWQ_MLIST_MSG_PKG dependencies on FND_API

Line 66: x_return_status := FND_API.g_ret_sts_unexp_error;

62: if c_camp_description%found then
63: null;
64: else
65: -- ERROR --
66: x_return_status := FND_API.g_ret_sts_unexp_error;
67: fnd_message.set_name('AST','AST_UWQ_INVALID_CAMPAIGN');
68: l_error_msg := fnd_message.get;
69: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
70: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);

Line 72: RAISE FND_API.G_EXC_ERROR;

68: l_error_msg := fnd_message.get;
69: FND_MESSAGE.Set_Name('AST', 'AST_API_ERR');
70: FND_MESSAGE.Set_Token('TEXT', l_error_msg || ' ' || l_description, FALSE);
71: FND_MSG_PUB.ADD;
72: RAISE FND_API.G_EXC_ERROR;
73: end if;
74: CLOSE c_camp_description;
75: elsif l_camp_descr is not null then
76: fnd_message.set_name('AST','AST_CAMP');

Line 88: x_return_status :=fnd_api.g_ret_sts_success;

84:
85: -- setting the OUT variables -begin
86:
87: x_mesg_data_char :=l_description;
88: x_return_status :=fnd_api.g_ret_sts_success;
89:
90: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
91: p_data => x_msg_data);
92:

Line 97: when fnd_api.g_exc_error then

93: -- setting the OUT variables -end
94: end if; -- end of main "if"
95: exception
96:
97: when fnd_api.g_exc_error then
98: x_return_status:=fnd_api.g_ret_sts_error;
99:
100: when fnd_api.g_exc_unexpected_error then
101: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 98: x_return_status:=fnd_api.g_ret_sts_error;

94: end if; -- end of main "if"
95: exception
96:
97: when fnd_api.g_exc_error then
98: x_return_status:=fnd_api.g_ret_sts_error;
99:
100: when fnd_api.g_exc_unexpected_error then
101: x_return_status:=fnd_api.g_ret_sts_unexp_error;
102:

Line 100: when fnd_api.g_exc_unexpected_error then

96:
97: when fnd_api.g_exc_error then
98: x_return_status:=fnd_api.g_ret_sts_error;
99:
100: when fnd_api.g_exc_unexpected_error then
101: x_return_status:=fnd_api.g_ret_sts_unexp_error;
102:
103: when others then
104: x_return_status:=fnd_api.g_ret_sts_unexp_error;

Line 101: x_return_status:=fnd_api.g_ret_sts_unexp_error;

97: when fnd_api.g_exc_error then
98: x_return_status:=fnd_api.g_ret_sts_error;
99:
100: when fnd_api.g_exc_unexpected_error then
101: x_return_status:=fnd_api.g_ret_sts_unexp_error;
102:
103: when others then
104: x_return_status:=fnd_api.g_ret_sts_unexp_error;
105:

Line 104: x_return_status:=fnd_api.g_ret_sts_unexp_error;

100: when fnd_api.g_exc_unexpected_error then
101: x_return_status:=fnd_api.g_ret_sts_unexp_error;
102:
103: when others then
104: x_return_status:=fnd_api.g_ret_sts_unexp_error;
105:
106: fnd_msg_pub.Count_And_Get(p_count => x_msg_count,
107: p_data => x_msg_data);
108: