DBA Data[Home] [Help]

APPS.CSI_PROCESS_TXN_GRP dependencies on FND_MSG_PUB

Line 72: FND_MSG_PUB.Initialize;

68: SAVEPOINT process_transaction;
69:
70: -- Initialize message list if p_init_msg_list is set to TRUE.
71: IF FND_API.To_Boolean( p_init_msg_list ) THEN
72: FND_MSG_PUB.Initialize;
73: END IF;
74:
75: -- Standard call to check for call compatibility.
76: IF NOT

Line 437: fnd_msg_pub.count_and_get(

433:
434: csi_t_gen_utility_pvt.set_debug_off;
435:
436: -- Standard call to get message count and if count is get message info.
437: fnd_msg_pub.count_and_get(
438: p_count => x_msg_count,
439: p_data => x_msg_data);
440:
441: EXCEPTION

Line 447: fnd_msg_pub.count_and_get (

443:
444: rollback to process_transaction;
445: x_return_status := fnd_api.g_ret_sts_error;
446:
447: fnd_msg_pub.count_and_get (
448: p_count => x_msg_count,
449: p_data => x_msg_data);
450:
451: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 459: fnd_msg_pub.count_and_get(

455:
456: rollback to process_transaction;
457: x_return_status := fnd_api.g_ret_sts_unexp_error;
458:
459: fnd_msg_pub.count_and_get(
460: p_count => x_msg_count,
461: p_data => x_msg_data);
462:
463: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 472: fnd_msg_pub.add_exc_msg(

468: rollback to process_transaction;
469:
470: x_return_status := fnd_api.g_ret_sts_unexp_error ;
471:
472: fnd_msg_pub.add_exc_msg(
473: p_pkg_name => g_pkg_name,
474: p_procedure_name => l_api_name);
475:
476: fnd_msg_pub.count_and_get(

Line 476: fnd_msg_pub.count_and_get(

472: fnd_msg_pub.add_exc_msg(
473: p_pkg_name => g_pkg_name,
474: p_procedure_name => l_api_name);
475:
476: fnd_msg_pub.count_and_get(
477: p_count => x_msg_count,
478: p_data => x_msg_data);
479:
480: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 547: fnd_msg_pub.add_exc_msg(

543:
544: WHEN others THEN
545: x_return_status := fnd_api.g_ret_sts_error;
546:
547: fnd_msg_pub.add_exc_msg(
548: p_pkg_name => 'csi_process_txn_grp',
549: p_procedure_name => 'process_transaction');
550:
551: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;