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.12.12010000.2 2008/07/29 13:48:48 ptkumar 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 3455: -- a call to INV_MMX_WRAPPER_PVT.get_move_order_info to get the correct header ID

3451: BEGIN
3452: --
3453: -- Replenishment Move Order Consolidation
3454: -- Replace the call to INV_Create_Move_Order_PVT.Create_Move_Orders with
3455: -- a call to INV_MMX_WRAPPER_PVT.get_move_order_info to get the correct header ID
3456: -- and Line Number.
3457: -- Then call INV_Move_Order_PUB.Create_Move_Order_Lines to create a single move order line
3458: -- for the current item. For the input record p_trolin_tbl, use the header ID returned by
3459: -- get_move_order_header_id.

Line 3487: print_debug('Calling INV_MMX_WRAPPER_PVT.get_move_order_info'

3483: IF G_TRACE_ON = 1 THEN
3484: print_debug('Approval Status is: '||l_approval
3485: , l_proc_name
3486: , 9);
3487: print_debug('Calling INV_MMX_WRAPPER_PVT.get_move_order_info'
3488: , l_proc_name
3489: , 9);
3490: END IF;
3491:

Line 3492: INV_MMX_WRAPPER_PVT.get_move_order_info(x_return_status => l_ret_stat

3488: , l_proc_name
3489: , 9);
3490: END IF;
3491:
3492: INV_MMX_WRAPPER_PVT.get_move_order_info(x_return_status => l_ret_stat
3493: , x_msg_count => l_msg_count
3494: , x_msg_data => l_msg_data
3495: , x_move_order_header_ID => l_mo_header_id
3496: , x_move_order_line_num => l_mo_line_num

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

3502: , p_need_by_date => l_need_by_date
3503: );
3504: IF l_ret_stat = FND_API.G_RET_STS_ERROR THEN
3505: IF G_TRACE_ON = 1 THEN
3506: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with unexpected error returning message: ' || l_msg_data
3507: , l_proc_name
3508: , 9);
3509: END IF;
3510: RAISE fnd_api.g_exc_unexpected_error;

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

3509: END IF;
3510: RAISE fnd_api.g_exc_unexpected_error;
3511: ELSIF l_ret_stat = FND_API.G_RET_STS_UNEXP_ERROR THEN
3512: IF G_TRACE_ON = 1 THEN
3513: print_debug('INV_MMX_WRAPPER_PVT.get_move_order_info failed with expected error returning message: ' || l_msg_data
3514: , l_proc_name
3515: , 9);
3516: END IF;
3517: RAISE fnd_api.g_exc_error;

Line 3520: 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

3516: END IF;
3517: RAISE fnd_api.g_exc_error;
3518: ELSE
3519: IF G_TRACE_ON = 1 THEN
3520: 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
3521: , l_proc_name
3522: , 9);
3523: END IF;
3524: END IF;