DBA Data[Home] [Help]

APPS.WMS_DEVICE_CONFIRMATION_PUB dependencies on WMS_CONTAINER_PVT

Line 4164: --using wms_container_pvt.Modify_LPN() API instead

4160: -- before processing the record with zero qty
4161: --
4162:
4163: /* updated as part of the bug 4411819
4164: --using wms_container_pvt.Modify_LPN() API instead
4165: UPDATE wms_license_plate_numbers
4166: SET lpn_context = l_lpn_context -- this still has
4167: --the original value of lpn context
4168: WHERE lpn_id = l_rec.xfer_lpn_id;

Line 4177: wms_container_pvt.Modify_LPN

4173: l_lpn.lpn_id := l_rec.xfer_lpn_id;
4174: l_lpn.organization_id := l_rec.organization_id;
4175: l_lpn.lpn_context := l_lpn_context;
4176:
4177: wms_container_pvt.Modify_LPN
4178: (
4179: p_api_version => 1.0
4180: , p_validation_level => fnd_api.g_valid_level_none
4181: , x_return_status => x_return_status

Line 4808: wms_container_pvt.modify_lpn_wrapper

4804:
4805:
4806: IF (l_rec.lpn_id IS NOT NULL AND (l_lpn_match=1 or l_lpn_match=3) AND l_rec.lpn_id <> l_rec.xfer_lpn_id) THEN
4807:
4808: wms_container_pvt.modify_lpn_wrapper
4809: (p_api_version => '1.0',
4810: x_return_status => x_return_status,
4811: x_msg_count => x_msg_count,
4812: x_msg_data => x_msg_data,

Line 4843: wms_container_pvt.modify_lpn_wrapper

4839: --10058836.No need of LPN update for pick none.
4840: IF NOT ( l_qty_discrepancy_flag <> 0 AND l_rec.transaction_quantity = 0 ) THEN
4841: --Bug 6987801 : added if xfer_lpn_id is not null
4842: IF l_rec.xfer_lpn_id IS NOT NULL THEN
4843: wms_container_pvt.modify_lpn_wrapper
4844: (p_api_version => '1.0',
4845: x_return_status => x_return_status,
4846: x_msg_count => x_msg_count,
4847: x_msg_data => x_msg_data,

Line 5059: --wms_container_pub.modify_lpn_wrapper to wms_container_pvt.Modify_LPN

5055: --In case LPN is getting transferred, both lpn_id and
5056: --xfer_lpn_id are same, so getting updated correctly
5057:
5058: --as part of the bug 4411819, replaced
5059: --wms_container_pub.modify_lpn_wrapper to wms_container_pvt.Modify_LPN
5060:
5061: l_lpn.lpn_id := l_update_xfer_lpns_context.lpn_id;
5062: l_lpn.organization_id := l_update_xfer_lpns_context.organization_id;
5063: l_lpn.lpn_context := wms_container_pub.lpn_context_picked;

Line 5065: wms_container_pvt.Modify_LPN

5061: l_lpn.lpn_id := l_update_xfer_lpns_context.lpn_id;
5062: l_lpn.organization_id := l_update_xfer_lpns_context.organization_id;
5063: l_lpn.lpn_context := wms_container_pub.lpn_context_picked;
5064:
5065: wms_container_pvt.Modify_LPN
5066: (
5067: p_api_version => 1.0
5068: , p_validation_level => fnd_api.g_valid_level_none
5069: , x_return_status => x_return_status