DBA Data[Home] [Help]

APPS.WMS_TXNREASONS_PUB dependencies on FND_MSG_PUB

Line 116: fnd_msg_pub.ADD;

112: END IF;
113: -- make sure that reason name is not null
114: if (p_reason_id is null ) then
115: fnd_message.set_name('INV','INV_FIELD_INVALID');
116: fnd_msg_pub.ADD;
117: RAISE fnd_api.g_exc_error;
118: end if;
119:
120: IF (l_debug = 1) THEN

Line 569: fnd_msg_pub.count_and_get

565: EXCEPTION
566:
567: WHEN fnd_api.g_exc_error THEN
568: x_return_status := fnd_api.g_ret_sts_error;
569: fnd_msg_pub.count_and_get
570: ( p_count => x_msg_count,
571: p_data => x_msg_data
572: );
573:

Line 576: fnd_msg_pub.count_and_get

572: );
573:
574: WHEN fnd_api.g_exc_unexpected_error THEN
575: x_return_status := fnd_api.g_ret_sts_unexp_error ;
576: fnd_msg_pub.count_and_get
577: ( p_count => x_msg_count,
578: p_data => x_msg_data
579: );
580:

Line 584: fnd_msg_pub.ADD;

580:
581: WHEN NO_DATA_FOUND THEN
582: x_return_status := fnd_api.g_ret_sts_error;
583: fnd_message.set_name('INV','INV_INT_REACODE');
584: fnd_msg_pub.ADD;
585:
586: WHEN OTHERS THEN
587: x_return_status := fnd_api.g_ret_sts_unexp_error;
588: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)

Line 588: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)

584: fnd_msg_pub.ADD;
585:
586: WHEN OTHERS THEN
587: x_return_status := fnd_api.g_ret_sts_unexp_error;
588: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
589: THEN
590: fnd_msg_pub.add_exc_msg
591: ( g_pkg_name
592: , 'Start_Workflow'

Line 590: fnd_msg_pub.add_exc_msg

586: WHEN OTHERS THEN
587: x_return_status := fnd_api.g_ret_sts_unexp_error;
588: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)
589: THEN
590: fnd_msg_pub.add_exc_msg
591: ( g_pkg_name
592: , 'Start_Workflow'
593: );
594: END IF;

Line 595: fnd_msg_pub.count_and_get

591: ( g_pkg_name
592: , 'Start_Workflow'
593: );
594: END IF;
595: fnd_msg_pub.count_and_get
596: ( p_count => x_msg_count,
597: p_data => x_msg_data
598: );
599: