DBA Data[Home] [Help]

APPS.OKC_CREATE_PO_FROM_K_PVT dependencies on FND_MSG_PUB

Line 322: l_init_msg_count:=fnd_msg_pub.count_msg;

318: my_debug('4010: Initialize Error Message List', 2);
319:
320: okc_api.init_msg_list(p_init_msg_list => p_init_msg_list);
321:
322: l_init_msg_count:=fnd_msg_pub.count_msg;
323:
324: my_debug('4020: Set Notification Messages on the stack', 2);
325:
326:

Line 440: l_init_msg_count:=fnd_msg_pub.count_msg;

436: my_debug('5010: Initialize error message list', 2);
437:
438: okc_api.init_msg_list(p_init_msg_list => p_init_msg_list);
439:
440: l_init_msg_count:=fnd_msg_pub.count_msg;
441:
442:
443: -- Notify the buyer of a po creation
444: -- Call the workflow notification alert */

Line 574: FND_MSG_PUB.Count_And_Get (

570: END IF; -- IF l_send_notif = OKC_API.g_true THEN
571:
572: my_debug('5080: INITIALIZE ERROR MESSAGE OUT NOCOPY VARIABLES' , 2);
573:
574: FND_MSG_PUB.Count_And_Get (
575: p_count => x_msg_count,
576: p_data => x_msg_data);
577:
578: x_msg_count:=x_msg_count - l_init_msg_count;

Line 589: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN

585: WHEN OKC_API.G_EXCEPTION_ERROR THEN
586:
587: x_return_status := OKC_API.G_RET_STS_ERROR;
588:
589: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
590: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name
591: ,p_procedure_name => l_api_name
592: ,p_error_text => 'Encountered error condition'
593: );

Line 590: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name

586:
587: x_return_status := OKC_API.G_RET_STS_ERROR;
588:
589: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
590: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name
591: ,p_procedure_name => l_api_name
592: ,p_error_text => 'Encountered error condition'
593: );
594: END IF;

Line 596: FND_MSG_PUB.Count_And_Get (

592: ,p_error_text => 'Encountered error condition'
593: );
594: END IF;
595:
596: FND_MSG_PUB.Count_And_Get (
597: p_count => x_msg_count,
598: p_data => x_msg_data);
599: x_msg_count:=x_msg_count - l_init_msg_count;
600:

Line 605: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN

601: WHEN OKC_API.G_EXCEPTION_UNEXPECTED_ERROR THEN
602:
603: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
604:
605: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
606: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name
607: ,p_procedure_name => l_api_name
608: ,p_error_text => 'Encountered unexpected error'
609: );

Line 606: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name

602:
603: x_return_status := OKC_API.G_RET_STS_UNEXP_ERROR;
604:
605: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_error) THEN
606: fnd_msg_pub.add_exc_msg(p_pkg_name => g_pkg_name
607: ,p_procedure_name => l_api_name
608: ,p_error_text => 'Encountered unexpected error'
609: );
610: END IF;

Line 612: FND_MSG_PUB.Count_And_Get (

608: ,p_error_text => 'Encountered unexpected error'
609: );
610: END IF;
611:
612: FND_MSG_PUB.Count_And_Get (
613: p_count => x_msg_count,
614: p_data => x_msg_data);
615: x_msg_count:=x_msg_count - l_init_msg_count;
616:

Line 626: FND_MSG_PUB.Count_And_Get (

622: ,SQLCODE
623: ,G_SQLERRM_TOKEN
624: ,SQLERRM);
625:
626: FND_MSG_PUB.Count_And_Get (
627: p_count => x_msg_count,
628: p_data => x_msg_data);
629: x_msg_count:=x_msg_count - l_init_msg_count;
630: