DBA Data[Home] [Help]

APPS.WMS_CATCH_WEIGHT_PVT dependencies on WMS_CONTAINER_PVT

Line 1336: IF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PICKED OR

1332: RAISE FND_API.G_EXC_UNEXPECTED_ERROR;
1333: END;
1334:
1335: l_progress := '000';
1336: IF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PICKED OR
1337: l_lpn_context = WMS_CONTAINER_PVT.LPN_LOADED_FOR_SHIPMENT ) THEN
1338: l_progress := '100';
1339: -- Records should be checked in WDD to see if any catch weight item is
1340: -- is missing secondary quantities (picked_quantity2)

Line 1337: l_lpn_context = WMS_CONTAINER_PVT.LPN_LOADED_FOR_SHIPMENT ) THEN

1333: END;
1334:
1335: l_progress := '000';
1336: IF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PICKED OR
1337: l_lpn_context = WMS_CONTAINER_PVT.LPN_LOADED_FOR_SHIPMENT ) THEN
1338: l_progress := '100';
1339: -- Records should be checked in WDD to see if any catch weight item is
1340: -- is missing secondary quantities (picked_quantity2)
1341: FOR wdd_nested_lpn_rec IN wdd_nested_lpn_cur LOOP

Line 1412: ELSIF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_INV OR

1408:
1409: -- Exit at any point when a catch weight cannot be resolved
1410: EXIT WHEN l_return = G_CHECK_ERROR;
1411: END LOOP;
1412: ELSIF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_INV OR
1413: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PACKING OR
1414: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PREGENERATED ) THEN
1415: l_progress := '600';
1416: -- Records should be checked in MMTT to see if any catch weight item is

Line 1413: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PACKING OR

1409: -- Exit at any point when a catch weight cannot be resolved
1410: EXIT WHEN l_return = G_CHECK_ERROR;
1411: END LOOP;
1412: ELSIF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_INV OR
1413: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PACKING OR
1414: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PREGENERATED ) THEN
1415: l_progress := '600';
1416: -- Records should be checked in MMTT to see if any catch weight item is
1417: -- is missing secondary transaction quantities. Currently during picking

Line 1414: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PREGENERATED ) THEN

1410: EXIT WHEN l_return = G_CHECK_ERROR;
1411: END LOOP;
1412: ELSIF ( l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_INV OR
1413: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PACKING OR
1414: l_lpn_context = WMS_CONTAINER_PVT.LPN_CONTEXT_PREGENERATED ) THEN
1415: l_progress := '600';
1416: -- Records should be checked in MMTT to see if any catch weight item is
1417: -- is missing secondary transaction quantities. Currently during picking
1418: -- LPNs can only be nested one level deep. This cursor makes that assumtion