DBA Data[Home] [Help]

APPS.AMW_ASSOC_POST_TXN dependencies on FND_MSG_PUB

Line 62: fnd_msg_pub.initialize;

58: RAISE fnd_api.g_exc_unexpected_error;
59: END IF;
60: -- Initialize message list if p_init_msg_list is set to TRUE.
61: IF fnd_api.to_boolean (p_init_msg_list) THEN
62: fnd_msg_pub.initialize;
63: END IF;
64: -- Debug Message
65: amw_utility_pvt.debug_message ('Private API: ' || l_api_name || 'start');
66: -- Initialize API return status to SUCCESS

Line 364: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);

360: END IF;
361: --Debug Message
362: amw_utility_pvt.debug_message ('Private API: ' || l_api_name || 'end');
363: -- Standard call to get message count and if count is 1, get message info.
364: fnd_msg_pub.count_and_get (p_count => x_msg_count, p_data => x_msg_data);
365: EXCEPTION
366: WHEN fnd_api.g_exc_error THEN
367: ROLLBACK TO get_process_hierarchy_pvt;
368: x_return_status := fnd_api.g_ret_sts_error;

Line 370: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,

366: WHEN fnd_api.g_exc_error THEN
367: ROLLBACK TO get_process_hierarchy_pvt;
368: x_return_status := fnd_api.g_ret_sts_error;
369: -- Standard call to get message count and if count=1, get the message
370: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,
371: p_count => x_msg_count,
372: p_data => x_msg_data
373: );
374: WHEN fnd_api.g_exc_unexpected_error THEN

Line 378: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,

374: WHEN fnd_api.g_exc_unexpected_error THEN
375: ROLLBACK TO get_process_hierarchy_pvt;
376: x_return_status := fnd_api.g_ret_sts_unexp_error;
377: -- Standard call to get message count and if count=1, get the message
378: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,
379: p_count => x_msg_count,
380: p_data => x_msg_data
381: );
382: WHEN OTHERS THEN

Line 385: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN

381: );
382: WHEN OTHERS THEN
383: ROLLBACK TO get_process_hierarchy_pvt;
384: x_return_status := fnd_api.g_ret_sts_unexp_error;
385: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
386: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
387: END IF;
388: -- Standard call to get message count and if count=1, get the message
389: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,

Line 386: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);

382: WHEN OTHERS THEN
383: ROLLBACK TO get_process_hierarchy_pvt;
384: x_return_status := fnd_api.g_ret_sts_unexp_error;
385: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
386: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
387: END IF;
388: -- Standard call to get message count and if count=1, get the message
389: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,
390: p_count => x_msg_count,

Line 389: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,

385: IF fnd_msg_pub.check_msg_level (fnd_msg_pub.g_msg_lvl_unexp_error) THEN
386: fnd_msg_pub.add_exc_msg (g_pkg_name, l_api_name);
387: END IF;
388: -- Standard call to get message count and if count=1, get the message
389: fnd_msg_pub.count_and_get (p_encoded => fnd_api.g_false,
390: p_count => x_msg_count,
391: p_data => x_msg_data
392: );
393: END assoc_post_txn;