DBA Data[Home] [Help]

APPS.EAM_PROCESS_WO_UTIL_PVT dependencies on FND_MSG_PUB

Line 102: fnd_msg_pub.initialize;

98:
99: l_stmt_num := 30;
100: -- Initialize message list if p_init_msg_list is set to TRUE.
101: IF fnd_api.to_boolean(p_init_msg_list) THEN
102: fnd_msg_pub.initialize;
103: END IF;
104:
105: l_stmt_num := 40;
106: -- Initialize API return status to success

Line 317: fnd_msg_pub.count_and_get(

313: END IF;
314:
315: l_stmt_num := 999;
316: -- Standard call to get message count and if count is 1, get message info.
317: fnd_msg_pub.count_and_get(
318: p_encoded => fnd_api.g_false
319: ,p_count => x_msg_count
320: ,p_data => x_msg_data);
321: IF EAM_PROCESS_WO_PVT.Get_Debug = 'Y' THEN EAM_ERROR_MESSAGE_PVT.Write_Debug('Inside create_requisitions. concurrent program finished ...'); END IF;

Line 332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);

328:
329: WHEN fnd_api.g_exc_error THEN
330: ROLLBACK TO create_requisition_pvt;
331: x_return_status := fnd_api.g_ret_sts_error;
332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
333: fnd_msg_pub.count_and_get(
334: p_encoded => fnd_api.g_false
335: ,p_count => x_msg_count
336: ,p_data => x_msg_data);

Line 333: fnd_msg_pub.count_and_get(

329: WHEN fnd_api.g_exc_error THEN
330: ROLLBACK TO create_requisition_pvt;
331: x_return_status := fnd_api.g_ret_sts_error;
332: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
333: fnd_msg_pub.count_and_get(
334: p_encoded => fnd_api.g_false
335: ,p_count => x_msg_count
336: ,p_data => x_msg_data);
337: WHEN fnd_api.g_exc_unexpected_error THEN

Line 340: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);

336: ,p_data => x_msg_data);
337: WHEN fnd_api.g_exc_unexpected_error THEN
338: ROLLBACK TO create_requisition_pvt;
339: x_return_status := fnd_api.g_ret_sts_unexp_error;
340: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
341: fnd_msg_pub.count_and_get(
342: p_encoded => fnd_api.g_false
343: ,p_count => x_msg_count
344: ,p_data => x_msg_data);

Line 341: fnd_msg_pub.count_and_get(

337: WHEN fnd_api.g_exc_unexpected_error THEN
338: ROLLBACK TO create_requisition_pvt;
339: x_return_status := fnd_api.g_ret_sts_unexp_error;
340: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
341: fnd_msg_pub.count_and_get(
342: p_encoded => fnd_api.g_false
343: ,p_count => x_msg_count
344: ,p_data => x_msg_data);
345: WHEN OTHERS THEN

Line 348: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);

344: ,p_data => x_msg_data);
345: WHEN OTHERS THEN
346: ROLLBACK TO create_requisition_pvt;
347: x_return_status := fnd_api.g_ret_sts_unexp_error;
348: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
349: IF fnd_msg_pub.check_msg_level(
350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
351: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
352: END IF;

Line 349: IF fnd_msg_pub.check_msg_level(

345: WHEN OTHERS THEN
346: ROLLBACK TO create_requisition_pvt;
347: x_return_status := fnd_api.g_ret_sts_unexp_error;
348: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
349: IF fnd_msg_pub.check_msg_level(
350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
351: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
352: END IF;
353:

Line 350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN

346: ROLLBACK TO create_requisition_pvt;
347: x_return_status := fnd_api.g_ret_sts_unexp_error;
348: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
349: IF fnd_msg_pub.check_msg_level(
350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
351: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
352: END IF;
353:
354: fnd_msg_pub.count_and_get(

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

347: x_return_status := fnd_api.g_ret_sts_unexp_error;
348: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name, SQLERRM);
349: IF fnd_msg_pub.check_msg_level(
350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
351: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
352: END IF;
353:
354: fnd_msg_pub.count_and_get(
355: p_encoded => fnd_api.g_false

Line 354: fnd_msg_pub.count_and_get(

350: fnd_msg_pub.g_msg_lvl_unexp_error) THEN
351: fnd_msg_pub.add_exc_msg(g_pkg_name, l_api_name);
352: END IF;
353:
354: fnd_msg_pub.count_and_get(
355: p_encoded => fnd_api.g_false
356: ,p_count => x_msg_count
357: ,p_data => x_msg_data);
358:

Line 474: fnd_msg_pub.initialize;

470:
471: l_stmt_num := 30;
472: -- Initialize message list if p_init_msg_list is set to TRUE.
473: IF fnd_api.to_boolean(p_init_msg_list) THEN
474: fnd_msg_pub.initialize;
475: END IF;
476:
477: l_stmt_num := 40;
478: -- Initialize API return status to success

Line 693: fnd_msg_pub.initialize;

689:
690: l_stmt_num := 30;
691: -- Initialize message list if p_init_msg_list is set to TRUE.
692: IF fnd_api.to_boolean(p_init_msg_list) THEN
693: fnd_msg_pub.initialize;
694: END IF;
695:
696: l_stmt_num := 40;
697: -- Initialize API return status to success