DBA Data[Home] [Help]

APPS.WMS_CONTAINER2_PUB dependencies on INV_CONVERT

Line 785: l_temp_value := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,

781: RAISE FND_API.G_EXC_ERROR;
782: END IF;
783:
784: /* Volume constraint */
785: l_temp_value := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,
786: l_source_item.unit_volume,
787: l_source_item.volume_uom_code,
788: l_dest_cont_item.volume_uom_code,
789: NULL, NULL);

Line 808: l_temp_value := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,

804: RAISE FND_API.G_EXC_ERROR;
805: END IF;
806: END IF;
807: /* Weight constraint */
808: l_temp_value := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,
809: l_source_item.unit_weight,
810: l_source_item.weight_uom_code,
811: l_dest_cont_item.weight_uom_code,
812: NULL, NULL);

Line 840: l_max_load_quantity := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,

836: CLOSE max_load_cursor;
837:
838: /* Convert l_max_load_quantity into the same UOM as p_source_qty_uom */
839: IF (l_max_load_quantity IS NOT NULL) THEN
840: l_max_load_quantity := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,
841: l_max_load_quantity,
842: l_source_item.primary_uom_code,
843: p_source_qty_uom,
844: NULL, NULL);

Line 854: l_qty_per_cont := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,

850: END IF;
851:
852: /* Calculate the required number of containers needed to store the items */
853: IF ((p_qty_per_cont IS NOT NULL) AND (l_max_load_quantity IS NOT NULL)) THEN
854: l_qty_per_cont := inv_convert.inv_um_convert(l_source_item.inventory_item_id, 6,
855: p_qty_per_cont,
856: p_qty_per_cont_uom,
857: p_source_qty_uom,
858: NULL, NULL);

Line 897: l_temp_load_quantity := inv_convert.inv_um_convert

893: RAISE FND_API.G_EXC_ERROR;
894: END IF;
895:
896: /* Get the max load quantity for that given container */
897: l_temp_load_quantity := inv_convert.inv_um_convert
898: (l_source_item.inventory_item_id, 6, v_container_item.max_load_quantity,
899: l_source_item.primary_uom_code, p_source_qty_uom, NULL, NULL);
900: IF (l_temp_load_quantity = -99999) THEN
901: FND_MESSAGE.SET_NAME('WMS', 'WMS_CONT_INVALID_CONVERSION');