DBA Data[Home] [Help]

APPS.ECE_AP_PAYMENT dependencies on FND_MSG_PUB

Line 77: fnd_msg_pub.initialize;

73: RAISE fnd_api.g_exc_unexpected_error;
74: END IF;
75:
76: IF fnd_api.to_Boolean(p_init_msg_list) THEN
77: fnd_msg_pub.initialize;
78: END IF;
79:
80: x_return_status := fnd_api.g_ret_sts_success;
81: ec_debug.pl (3, 'comes here');

Line 154: fnd_msg_pub.count_and_get(

150: COMMIT WORK;
151: end if;
152:
153: -- Standard call to get message count and if count is 1, get message info.
154: fnd_msg_pub.count_and_get(
155: p_count => x_msg_count,
156: p_data => x_msg_data);
157:
158:

Line 171: fnd_msg_pub.count_and_get(p_count => x_msg_count,

167: WHEN fnd_api.g_exc_error THEN
168: ROLLBACK;
169: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
170: x_return_status := fnd_api.g_ret_sts_error;
171: fnd_msg_pub.count_and_get(p_count => x_msg_count,
172: p_data => x_msg_data);
173: ec_debug.disable_debug;
174: WHEN fnd_api.g_exc_unexpected_error THEN
175: ROLLBACK;

Line 178: fnd_msg_pub.count_and_get(p_count => x_msg_count,

174: WHEN fnd_api.g_exc_unexpected_error THEN
175: ROLLBACK;
176: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
177: x_return_status := fnd_api.g_ret_sts_unexp_error;
178: fnd_msg_pub.count_and_get(p_count => x_msg_count,
179: p_data => x_msg_data);
180: ec_debug.disable_debug;
181: WHEN OTHERS THEN
182: ROLLBACK;

Line 185: IF fnd_msg_pub.Check_Msg_Level

181: WHEN OTHERS THEN
182: ROLLBACK;
183: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
184: x_return_status := fnd_api.g_ret_sts_unexp_error;
185: IF fnd_msg_pub.Check_Msg_Level
186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
188: END IF;
189: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN

182: ROLLBACK;
183: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
184: x_return_status := fnd_api.g_ret_sts_unexp_error;
185: IF fnd_msg_pub.Check_Msg_Level
186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
188: END IF;
189: fnd_msg_pub.count_and_get(p_count => x_msg_count,
190: p_data => x_msg_data);

Line 187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);

183: fnd_file.put_line(fnd_file.log, 'EXCEPTION :: END ::'||systimestamp);
184: x_return_status := fnd_api.g_ret_sts_unexp_error;
185: IF fnd_msg_pub.Check_Msg_Level
186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
188: END IF;
189: fnd_msg_pub.count_and_get(p_count => x_msg_count,
190: p_data => x_msg_data);
191:

Line 189: fnd_msg_pub.count_and_get(p_count => x_msg_count,

185: IF fnd_msg_pub.Check_Msg_Level
186: (fnd_msg_pub.G_MSG_LVL_UNEXP_ERROR) THEN
187: fnd_msg_pub.add_exc_msg(G_PKG_NAME, l_api_name);
188: END IF;
189: fnd_msg_pub.count_and_get(p_count => x_msg_count,
190: p_data => x_msg_data);
191:
192: ec_debug.disable_debug;
193: END Extract_PYO_Outbound;