DBA Data[Home] [Help]

APPS.EAM_COMPLETION dependencies on FND_MSG_PUB

Line 296: l_initial_msg_count := FND_MSG_PUB.count_msg;

292:
293: l_statement := 6;
294: x_statement := l_statement;
295:
296: l_initial_msg_count := FND_MSG_PUB.count_msg;
297: -- Call Inventory API to process to item
298: -- the spec file is INVTRXWS.pls
299: errCode := inv_lpn_trx_pub.process_lpn_trx(
300: p_trx_hdr_id => i_transaction_header_id,

Line 304: if(FND_MSG_PUB.count_msg> 0) then

300: p_trx_hdr_id => i_transaction_header_id,
301: p_commit => s_commit,
302: x_proc_msg => errMsg);
303: /* Added as a FIX for the Issue 1 of bug:2881879 */
304: if(FND_MSG_PUB.count_msg> 0) then
305: if(l_initial_msg_count = 0 and errCode = 0) then
306: FND_MSG_PUB.Delete_msg;
307: end if;
308: end if;

Line 306: FND_MSG_PUB.Delete_msg;

302: x_proc_msg => errMsg);
303: /* Added as a FIX for the Issue 1 of bug:2881879 */
304: if(FND_MSG_PUB.count_msg> 0) then
305: if(l_initial_msg_count = 0 and errCode = 0) then
306: FND_MSG_PUB.Delete_msg;
307: end if;
308: end if;
309: /* Added for bug no :2911698
310: Since the error message is not getting added into the message stack

Line 494: fnd_msg_pub.initialize;

490: END IF;
491:
492: -- Initialize message list if p_init_msg_list is set to TRUE.
493: IF fnd_api.to_boolean(p_init_msg_list) THEN
494: fnd_msg_pub.initialize;
495: END IF;*/
496:
497: -- Initialize API return status to success
498: x_return_status := 0;

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

534: end if;
535:
536:
537: -- Standard call to get message count and if count is 1, get message info.
538: fnd_msg_pub.count_and_get(p_count => x_msg_count, p_data => x_msg_data);
539:
540: EXCEPTION
541: WHEN fnd_api.g_exc_error THEN
542: ROLLBACK TO apiname_apitype;

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

540: EXCEPTION
541: WHEN fnd_api.g_exc_error THEN
542: ROLLBACK TO apiname_apitype;
543: x_return_status := 1;
544: fnd_msg_pub.count_and_get(p_count => x_msg_count,
545: p_data => x_msg_data);
546:
547: WHEN fnd_api.g_exc_unexpected_error THEN
548: ROLLBACK TO apiname_apitype;

Line 550: fnd_msg_pub.count_and_get(

546:
547: WHEN fnd_api.g_exc_unexpected_error THEN
548: ROLLBACK TO apiname_apitype;
549: x_return_status := 1;
550: fnd_msg_pub.count_and_get(
551: p_count => x_msg_count
552: ,p_data => x_msg_data);
553:
554: WHEN OTHERS THEN

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

554: WHEN OTHERS THEN
555: ROLLBACK TO apiname_apitype;
556: x_return_status := 1;
557:
558: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
559: fnd_msg_pub.add_exc_msg('eam_completion', l_api_name);
560: END IF;
561:
562: fnd_msg_pub.count_and_get(p_count => x_msg_count,

Line 559: fnd_msg_pub.add_exc_msg('eam_completion', l_api_name);

555: ROLLBACK TO apiname_apitype;
556: x_return_status := 1;
557:
558: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
559: fnd_msg_pub.add_exc_msg('eam_completion', l_api_name);
560: END IF;
561:
562: fnd_msg_pub.count_and_get(p_count => x_msg_count,
563: p_data => x_msg_data);

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

558: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error) THEN
559: fnd_msg_pub.add_exc_msg('eam_completion', l_api_name);
560: END IF;
561:
562: fnd_msg_pub.count_and_get(p_count => x_msg_count,
563: p_data => x_msg_data);
564:
565:
566: END Lock_Row;