DBA Data[Home] [Help]

APPS.INV_MINMAX_PVT dependencies on FND_MSG_PUB

Line 3006: fnd_msg_pub.count_and_get

3002: EXCEPTION
3003: WHEN fnd_api.g_exc_error THEN
3004: ROLLBACK TO sp_get_intransit_time;
3005: x_return_status := fnd_api.g_ret_sts_error;
3006: fnd_msg_pub.count_and_get
3007: ( p_count => x_msg_count,
3008: p_data => x_msg_data
3009: );
3010:

Line 3014: fnd_msg_pub.count_and_get

3010:
3011: WHEN fnd_api.g_exc_unexpected_error THEN
3012: ROLLBACK TO sp_get_intransit_time;
3013: x_return_status := fnd_api.g_ret_sts_unexp_error ;
3014: fnd_msg_pub.count_and_get
3015: ( p_count => x_msg_count,
3016: p_data => x_msg_data
3017: );
3018:

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

3018:
3019: WHEN OTHERS THEN
3020: ROLLBACK TO sp_get_intransit_time;
3021: x_return_status := fnd_api.g_ret_sts_unexp_error;
3022: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)THEN
3023: fnd_msg_pub.add_exc_msg
3024: ( G_PKG_NAME
3025: ,l_proc_name
3026: );

Line 3023: fnd_msg_pub.add_exc_msg

3019: WHEN OTHERS THEN
3020: ROLLBACK TO sp_get_intransit_time;
3021: x_return_status := fnd_api.g_ret_sts_unexp_error;
3022: IF fnd_msg_pub.check_msg_level(fnd_msg_pub.g_msg_lvl_unexp_error)THEN
3023: fnd_msg_pub.add_exc_msg
3024: ( G_PKG_NAME
3025: ,l_proc_name
3026: );
3027: END IF;

Line 3028: fnd_msg_pub.count_and_get

3024: ( G_PKG_NAME
3025: ,l_proc_name
3026: );
3027: END IF;
3028: fnd_msg_pub.count_and_get
3029: ( p_count => x_msg_count,
3030: p_data => x_msg_data
3031: );
3032: END get_intransit_time;

Line 3625: l_msg := fnd_msg_pub.get(i,'F');

3621: END IF;
3622: IF l_msg_count > 0 THEN
3623: FOR i in 1..l_msg_count
3624: LOOP
3625: l_msg := fnd_msg_pub.get(i,'F');
3626: print_debug(l_msg
3627: , l_proc_name
3628: , 9);
3629: fnd_msg_pub.delete_msg(i);

Line 3629: fnd_msg_pub.delete_msg(i);

3625: l_msg := fnd_msg_pub.get(i,'F');
3626: print_debug(l_msg
3627: , l_proc_name
3628: , 9);
3629: fnd_msg_pub.delete_msg(i);
3630: END LOOP;
3631: END IF;
3632: RAISE fnd_api.g_exc_unexpected_error;
3633: ELSIF l_ret_stat = FND_API.G_RET_STS_UNEXP_ERROR THEN

Line 3773: fnd_msg_pub.count_and_get

3769: EXCEPTION
3770: WHEN fnd_api.g_exc_error THEN
3771: ROLLBACK TO sp_do_restock;
3772: x_ret_stat := fnd_api.g_ret_sts_error;
3773: fnd_msg_pub.count_and_get
3774: ( p_count =>l_msg_count ,
3775: p_data => x_ret_mesg
3776: );
3777: WHEN fnd_api.g_exc_unexpected_error THEN

Line 3780: fnd_msg_pub.count_and_get

3776: );
3777: WHEN fnd_api.g_exc_unexpected_error THEN
3778: ROLLBACK TO sp_do_restock;
3779: x_ret_stat := fnd_api.g_ret_sts_unexp_error;
3780: fnd_msg_pub.count_and_get
3781: ( p_count =>l_msg_count ,
3782: p_data => x_ret_mesg
3783: );
3784: