DBA Data[Home] [Help]

APPS.WMS_SHIPPING_INTERFACE_GRP dependencies on WMS_CATCH_WEIGHT_PVT

Line 373: l_tolerance := WMS_CATCH_WEIGHT_PVT.Check_Secondary_Qty_Tolerance (

369: IF ( p_delivery_detail_tbl(i).line_direction = 'O' ) THEN
370: IF ( p_delivery_detail_tbl(i).picked_quantity2 IS NOT NULL AND
371: p_delivery_detail_tbl(i).requested_quantity_uom2 IS NOT NULL ) THEN
372:
373: l_tolerance := WMS_CATCH_WEIGHT_PVT.Check_Secondary_Qty_Tolerance (
374: p_api_version => 1.0
375: , x_return_status => x_return_status
376: , x_msg_count => x_msg_count
377: , x_msg_data => x_msg_data

Line 402: WMS_CATCH_WEIGHT_PVT.Get_Default_Secondary_Quantity (

398: END IF;
399: ELSE -- need to try and defualt secondary quantities.
400: l_pricing_ind := NULL;
401:
402: WMS_CATCH_WEIGHT_PVT.Get_Default_Secondary_Quantity (
403: p_api_version => 1.0
404: , x_return_status => x_return_status
405: , x_msg_count => x_msg_count
406: , x_msg_data => x_msg_data

Line 418: IF ( l_pricing_ind = WMS_CATCH_WEIGHT_PVT.G_PRICE_SECONDARY ) THEN

414:
415: IF ( x_return_status <> fnd_api.g_ret_sts_success ) THEN
416: print_debug('Get_Default_Secondary_Quantity failed priceind='||l_pricing_ind||' msg='|| x_msg_data||' cnt='||x_msg_count);
417:
418: IF ( l_pricing_ind = WMS_CATCH_WEIGHT_PVT.G_PRICE_SECONDARY ) THEN
419: p_delivery_detail_tbl(i).return_status := 'E';
420: p_delivery_detail_tbl(i).r_message_appl := 'WMS';
421: p_delivery_detail_tbl(i).r_message_type := 'E';
422: p_delivery_detail_tbl(i).r_message_text := '';

Line 436: ELSIF ( l_pricing_ind = WMS_CATCH_WEIGHT_PVT.G_PRICE_SECONDARY ) THEN

432: fnd_message.set_name('WMS','WMS_CATCH_WT_API_ERR');
433: fnd_msg_pub.add;
434: raise fnd_api.g_exc_unexpected_error;
435: END IF;
436: ELSIF ( l_pricing_ind = WMS_CATCH_WEIGHT_PVT.G_PRICE_SECONDARY ) THEN
437: IF ( p_delivery_detail_tbl(i).picked_quantity2 IS NULL OR
438: p_delivery_detail_tbl(i).requested_quantity_uom2 IS NULL ) THEN
439: -- Item is catch weight enabled, but could not default
440: p_delivery_detail_tbl(i).return_status := 'E';