DBA Data[Home] [Help]

APPS.GMI_SHIPPING_UTIL dependencies on OE_DEBUG_PUB

Line 2931: oe_debug_pub.add('Found Trip Stop '|| p_stop_id);

2927: CLOSE c_detail_in_delivery;
2928: END IF;
2929: return;
2930: end if;
2931: oe_debug_pub.add('Found Trip Stop '|| p_stop_id);
2932: CLOSE c_trip_stop;
2933:
2934: GMI_RESERVATION_UTIL.Println ('found internal order line in this delivery ' || l_delivery_id);
2935: -- internal orders, insert into rcv_transactions_interface

Line 2936: Oe_Debug_Pub.Add('This line is part of an internal order');

2932: CLOSE c_trip_stop;
2933:
2934: GMI_RESERVATION_UTIL.Println ('found internal order line in this delivery ' || l_delivery_id);
2935: -- internal orders, insert into rcv_transactions_interface
2936: Oe_Debug_Pub.Add('This line is part of an internal order');
2937: GMI_SHIPPING_UTIL.create_rcv_transaction
2938: ( p_shipping_line => l_detail_rec
2939: , p_trip_stop_rec => l_trip_stop_rec
2940: , p_group_id => l_group_id

Line 2945: oe_debug_pub.add('Finished calling GMI_Shipping_Util.create_rcv_transaction');

2941: , x_return_status => l_return_status
2942: , x_msg_count => l_msg_count
2943: , x_msg_data => l_msg_data
2944: );
2945: oe_debug_pub.add('Finished calling GMI_Shipping_Util.create_rcv_transaction');
2946: IF (l_return_status <> WSH_UTIL_CORE.G_RET_STS_SUCCESS) THEN
2947: WSH_UTIL_CORE.println('Warning ...');
2948: WSH_UTIL_CORE.println('Failed GMI_Shipping_Util.create_rcv_transaction for delivery ID '
2949: || l_detail_rec.DELIVERY_DETAIL_ID );

Line 3432: oe_debug_pub.add('Calling update_opm_transaction.',2);

3428: SAVEPOINT split_txn;
3429: l_new_delivery_detail_id := p_new_delivery_detail_id;
3430: IF ( p_released_status = 'Y' )
3431: THEN
3432: oe_debug_pub.add('Calling update_opm_transaction.',2);
3433: GMI_RESERVATION_UTIL.println('splitting the OPM inv, update_opm_transaction', 'opm.log');
3434:
3435: GMI_SHIPPING_UTIL.update_opm_transaction(
3436: p_old_delivery_detail_id => p_old_delivery_detail_id,

Line 3454: oe_debug_pub.add('Done calling update_opm_transaction',2);

3450: x_msg_data => x_msg_data );
3451: IF x_return_status <> WSH_UTIL_CORE.G_RET_STS_SUCCESS THEN
3452: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3453: END IF;
3454: oe_debug_pub.add('Done calling update_opm_transaction',2);
3455: ELSE /* not staged */
3456: GMI_SHIPPING_UTIL.split_trans
3457: ( p_old_delivery_detail_id => p_old_delivery_detail_id,
3458: p_new_delivery_detail_id => l_new_delivery_detail_id,

Line 3470: oe_debug_pub.add('Done calling split_trans',2);

3466: );
3467: IF x_return_status <> WSH_UTIL_CORE.G_RET_STS_SUCCESS THEN
3468: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
3469: END IF;
3470: oe_debug_pub.add('Done calling split_trans',2);
3471:
3472: END IF;
3473:
3474: EXCEPTION

Line 3637: oe_debug_pub.add('Going to update ic_tranPnd with new line_id :'||p_new_source_line_id

3633: END LOOP;
3634: END IF;
3635:
3636: /* update the default lot to the new line_id */
3637: oe_debug_pub.add('Going to update ic_tranPnd with new line_id :'||p_new_source_line_id
3638: ||' for trans_id '||l_trans_id,2);
3639: IF l_trans_id > 0 THEN
3640: Update ic_tran_pnd
3641: Set line_id = p_new_source_line_id

Line 3645: oe_debug_pub.add('Going to find old default lot in split_reservation',2);

3641: Set line_id = p_new_source_line_id
3642: Where trans_id = l_trans_id;
3643: END IF;
3644:
3645: oe_debug_pub.add('Going to find old default lot in split_reservation',2);
3646: GMI_RESERVATION_UTIL.find_default_lot
3647: ( x_return_status => x_return_status,
3648: x_msg_count => x_msg_count,
3649: x_msg_data => x_msg_data,

Line 3680: oe_debug_pub.add('Going to find new default lot in split_reservation',2);

3676: ELSE
3677: l_orig_txn_exists := 0; --Bug3149635
3678: END IF;
3679:
3680: oe_debug_pub.add('Going to find new default lot in split_reservation',2);
3681:
3682: GMI_RESERVATION_UTIL.find_default_lot
3683: ( x_return_status => x_return_status,
3684: x_msg_count => x_msg_count,