DBA Data[Home] [Help]

APPS.INV_MINMAX_PVT dependencies on INV_MMX_WRAPPER_PVT

Line 6: -- Initialize the Global variables to the values set in INV_MMX_WRAPPER_PVT.

2: /* $Header: INVVMMXB.pls 120.17.12020000.3 2013/01/04 20:38:30 cbyrappa ship $ */
3:
4: --
5: -- Replenishment Move Order Consolidation
6: -- Initialize the Global variables to the values set in INV_MMX_WRAPPER_PVT.
7: --
8: G_USER_NAME fnd_user.user_name%TYPE := FND_GLOBAL.USER_NAME;
9: G_TRACE_ON NUMBER := NVL(fnd_profile.value('INV_DEBUG_TRACE'),2);
10:

Line 3465: -- a call to INV_MMX_WRAPPER_PVT.get_move_order_info to get the correct header ID

3461: BEGIN
3462: --
3463: -- Replenishment Move Order Consolidation
3464: -- Replace the call to INV_Create_Move_Order_PVT.Create_Move_Orders with
3465: -- a call to INV_MMX_WRAPPER_PVT.get_move_order_info to get the correct header ID
3466: -- and Line Number.
3467: -- Then call INV_Move_Order_PUB.Create_Move_Order_Lines to create a single move order line
3468: -- for the current item. For the input record p_trolin_tbl, use the header ID returned by
3469: -- get_move_order_header_id.

Line 3497: print_debug('Calling INV_MMX_WRAPPER_PVT.get_move_order_info'

3493: IF G_TRACE_ON = 1 THEN
3494: print_debug('Approval Status is: '||l_approval
3495: , l_proc_name
3496: , 9);
3497: print_debug('Calling INV_MMX_WRAPPER_PVT.get_move_order_info'
3498: , l_proc_name
3499: , 9);
3500: END IF;
3501:

Line 3502: INV_MMX_WRAPPER_PVT.get_move_order_info(x_return_status => l_ret_stat

3498: , l_proc_name
3499: , 9);
3500: END IF;
3501:
3502: INV_MMX_WRAPPER_PVT.get_move_order_info(x_return_status => l_ret_stat
3503: , x_msg_count => l_msg_count
3504: , x_msg_data => l_msg_data
3505: , x_move_order_header_ID => l_mo_header_id
3506: , x_move_order_line_num => l_mo_line_num

Line 3516: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with unexpected error returning message: ' || l_msg_data

3512: , p_need_by_date => l_need_by_date
3513: );
3514: IF l_ret_stat = FND_API.G_RET_STS_ERROR THEN
3515: IF G_TRACE_ON = 1 THEN
3516: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with unexpected error returning message: ' || l_msg_data
3517: , l_proc_name
3518: , 9);
3519: END IF;
3520: RAISE fnd_api.g_exc_unexpected_error;

Line 3523: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with expected error returning message: ' || l_msg_data

3519: END IF;
3520: RAISE fnd_api.g_exc_unexpected_error;
3521: ELSIF l_ret_stat = FND_API.G_RET_STS_UNEXP_ERROR THEN
3522: IF G_TRACE_ON = 1 THEN
3523: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with expected error returning message: ' || l_msg_data
3524: , l_proc_name
3525: , 9);
3526: END IF;
3527: RAISE fnd_api.g_exc_error;

Line 3530: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info returned success with MO Header Id and MO Line Number '|| fnd_global.local_chr(10) || l_mo_header_id ||' and '|| l_mo_line_num

3526: END IF;
3527: RAISE fnd_api.g_exc_error;
3528: ELSE
3529: IF G_TRACE_ON = 1 THEN
3530: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info returned success with MO Header Id and MO Line Number '|| fnd_global.local_chr(10) || l_mo_header_id ||' and '|| l_mo_line_num
3531: , l_proc_name
3532: , 9);
3533: END IF;
3534: END IF;