DBA Data[Home] [Help]

APPS.CSI_PROCESS_TXN_GRP dependencies on FND_MSG_PUB

Line 71: FND_MSG_PUB.Initialize;

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

Line 388: fnd_msg_pub.count_and_get(

384:
385: csi_t_gen_utility_pvt.set_debug_off;
386:
387: -- Standard call to get message count and if count is get message info.
388: fnd_msg_pub.count_and_get(
389: p_count => x_msg_count,
390: p_data => x_msg_data);
391:
392: EXCEPTION

Line 398: fnd_msg_pub.count_and_get (

394:
395: rollback to process_transaction;
396: x_return_status := fnd_api.g_ret_sts_error;
397:
398: fnd_msg_pub.count_and_get (
399: p_count => x_msg_count,
400: p_data => x_msg_data);
401:
402: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 410: fnd_msg_pub.count_and_get(

406:
407: rollback to process_transaction;
408: x_return_status := fnd_api.g_ret_sts_unexp_error;
409:
410: fnd_msg_pub.count_and_get(
411: p_count => x_msg_count,
412: p_data => x_msg_data);
413:
414: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 423: fnd_msg_pub.add_exc_msg(

419: rollback to process_transaction;
420:
421: x_return_status := fnd_api.g_ret_sts_unexp_error ;
422:
423: fnd_msg_pub.add_exc_msg(
424: p_pkg_name => g_pkg_name,
425: p_procedure_name => l_api_name);
426:
427: fnd_msg_pub.count_and_get(

Line 427: fnd_msg_pub.count_and_get(

423: fnd_msg_pub.add_exc_msg(
424: p_pkg_name => g_pkg_name,
425: p_procedure_name => l_api_name);
426:
427: fnd_msg_pub.count_and_get(
428: p_count => x_msg_count,
429: p_data => x_msg_data);
430:
431: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;

Line 498: fnd_msg_pub.add_exc_msg(

494:
495: WHEN others THEN
496: x_return_status := fnd_api.g_ret_sts_error;
497:
498: fnd_msg_pub.add_exc_msg(
499: p_pkg_name => 'csi_process_txn_grp',
500: p_procedure_name => 'process_transaction');
501:
502: x_msg_data := csi_t_gen_utility_pvt.dump_error_stack;