DBA Data[Home] [Help]

APPS.WMS_PICK_DROP_PVT dependencies on WMS_MDC_PVT

Line 9459: print_debug ('xfer_to_lpn_id passed to wms_mdc_pvt.validate_to_lpn' || l_xfer_to_lpn_id , l_api_name);

9455: l_xfer_to_lpn_id := Nvl(p_transfer_lpn_id,0);
9456: END IF;
9457:
9458: IF l_debug = 1 THEN
9459: print_debug ('xfer_to_lpn_id passed to wms_mdc_pvt.validate_to_lpn' || l_xfer_to_lpn_id , l_api_name);
9460: END IF;
9461: --END-Added the following for bug 10139672
9462:
9463: wms_mdc_pvt.validate_to_lpn

Line 9463: wms_mdc_pvt.validate_to_lpn

9459: print_debug ('xfer_to_lpn_id passed to wms_mdc_pvt.validate_to_lpn' || l_xfer_to_lpn_id , l_api_name);
9460: END IF;
9461: --END-Added the following for bug 10139672
9462:
9463: wms_mdc_pvt.validate_to_lpn
9464: (--p_from_lpn_id => nvl(p_transfer_lpn_id,0),commented for bug 10139672
9465: p_from_lpn_id => nvl(l_xfer_to_lpn_id,0), --added for bug 10139672
9466: p_from_delivery_id => null,
9467: p_to_lpn_id => nvl(l_drop_lpn_id,0),

Line 9478: print_debug('Error from wms_mdc_pvt.validate_to_lpn: ' || l_msg_data, l_api_name);

9474: x_msg_data => l_msg_data);
9475:
9476: IF l_api_return_status <> fnd_api.g_ret_sts_success THEN
9477: IF l_debug = 1 THEN
9478: print_debug('Error from wms_mdc_pvt.validate_to_lpn: ' || l_msg_data, l_api_name);
9479: END IF;
9480: RAISE fnd_api.g_exc_error;
9481: ELSE
9482: IF l_debug = 1 THEN

Line 9483: print_debug('wms_mdc_pvt.validate_to_lpn returned: ' || l_allow_packing, l_api_name);

9479: END IF;
9480: RAISE fnd_api.g_exc_error;
9481: ELSE
9482: IF l_debug = 1 THEN
9483: print_debug('wms_mdc_pvt.validate_to_lpn returned: ' || l_allow_packing, l_api_name);
9484: END IF;
9485:
9486: IF l_allow_packing = 'N' THEN
9487: RAISE fnd_api.g_exc_error;

Line 11067: wms_mdc_pvt.validate_to_lpn(p_from_lpn_id => p_transfer_lpn_id,

11063: END IF;
11064:
11065: --**MRANA temporary code for double validations and avoid data corruption
11066:
11067: wms_mdc_pvt.validate_to_lpn(p_from_lpn_id => p_transfer_lpn_id,
11068: p_from_delivery_id => p_delivery_id,
11069: p_to_lpn_id => drop_lpn_rec.lpn_id,
11070: p_is_from_to_delivery_same => 'U',
11071: x_allow_packing => l_allow_packing,

Line 11078: print_debug('Error from wms_mdc_pvt.validate_to_lpn: ' || l_msg_data, l_api_name);

11074: x_msg_data => l_msg_data);
11075:
11076: IF l_api_return_status <> fnd_api.g_ret_sts_success THEN
11077: IF l_debug = 1 THEN
11078: print_debug('Error from wms_mdc_pvt.validate_to_lpn: ' || l_msg_data, l_api_name);
11079: END IF;
11080: RAISE fnd_api.g_exc_error;
11081: ELSE
11082: IF l_debug = 1 THEN

Line 11083: print_debug('wms_mdc_pvt.validate_to_lpn returned: ' || l_allow_packing, l_api_name);

11079: END IF;
11080: RAISE fnd_api.g_exc_error;
11081: ELSE
11082: IF l_debug = 1 THEN
11083: print_debug('wms_mdc_pvt.validate_to_lpn returned: ' || l_allow_packing, l_api_name);
11084: END IF;
11085:
11086: IF l_allow_packing = 'N' THEN
11087: RAISE fnd_api.g_exc_error;

Line 11093: -- MR: wms_mdc_pvt.validate_to_lpn API, returns l_allow_packing = 'N', if

11089:
11090: END IF;
11091:
11092:
11093: -- MR: wms_mdc_pvt.validate_to_lpn API, returns l_allow_packing = 'N', if
11094: -- {{- either from or To do not have a delivery id . Therefor, MDC is not }}
11095: -- {{ allowed if either of the 2 is NULL }} */
11096: --mrana IF l_allow_packing = 'U' THEN -- Both from LPN and to LPN are not tied to any delivery
11097: /*Bug#4106176.The following block is added.*/