DBA Data[Home] [Help]

APPS.INV_LABEL_PVT8 dependencies on INV_CONVERT

Line 1806: INV_CONVERT.PICK_UOM_CONVERT

1802: trace('l_cons_wdd.shipped_quantity ' || l_cons_wdd.shipped_quantity);
1803: trace('l_cons_wdd.uom ' || l_cons_wdd.uom);
1804: END IF;
1805:
1806: INV_CONVERT.PICK_UOM_CONVERT
1807: (p_org_id => l_cons_wdd.organization_id,
1808: p_item_id => l_cons_wdd.inventory_item_id,
1809: p_sub_code => l_cons_wdd.from_subinventory,
1810: p_loc_id => null,

Line 1962: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,

1958: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1959: l_cons_wdd.requested_quantity := l_cons_wdd.requested_quantity +
1960: l_cur_wdd.requested_quantity;
1961: ELSE
1962: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1963: l_cur_wdd.requested_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1964: IF l_conv_qty <> -9999 THEN
1965: l_cons_wdd.requested_quantity := l_cons_wdd.requested_quantity + l_conv_qty;
1966: END IF;

Line 1979: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,

1975: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1976: l_cons_wdd.shipped_quantity := nvl(l_cons_wdd.shipped_quantity,0) +
1977: nvl(l_cur_wdd.shipped_quantity,0);
1978: ELSIF l_cur_wdd.shipped_quantity IS NOT NULL THEN
1979: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1980: l_cur_wdd.shipped_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1981: IF l_conv_qty <> -9999 THEN
1982: l_cons_wdd.shipped_quantity := nvl(l_cons_wdd.shipped_quantity,0) + l_conv_qty;
1983: END IF;

Line 1992: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,

1988: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1989: l_cons_wdd.shipped_quantity2 := nvl(l_cons_wdd.shipped_quantity2,0) +
1990: nvl(l_cur_wdd.shipped_quantity2,0);
1991: ELSIF l_cur_wdd.shipped_quantity2 IS NOT NULL THEN
1992: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1993: l_cur_wdd.shipped_quantity2, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1994: IF l_conv_qty <> -9999 THEN
1995: l_cons_wdd.shipped_quantity2 := nvl(l_cons_wdd.shipped_quantity2,0) + l_conv_qty;
1996: END IF;

Line 2005: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,

2001: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
2002: l_cons_wdd.cancelled_quantity := nvl(l_cons_wdd.cancelled_quantity,0) +
2003: nvl(l_cur_wdd.cancelled_quantity,0);
2004: ELSIF l_cur_wdd.cancelled_quantity IS NOT NULL THEN
2005: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
2006: l_cur_wdd.cancelled_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
2007: IF l_conv_qty <> -9999 THEN
2008: l_cons_wdd.cancelled_quantity := nvl(l_cons_wdd.cancelled_quantity,0) + l_conv_qty;
2009: END IF;

Line 2018: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,

2014: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
2015: l_cons_wdd.delivered_quantity := nvl(l_cons_wdd.delivered_quantity,0) +
2016: nvl(l_cur_wdd.delivered_quantity,0);
2017: ELSIF l_cur_wdd.delivered_quantity IS NOT NULL THEN
2018: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
2019: l_cur_wdd.delivered_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
2020: IF l_conv_qty <> -9999 THEN
2021: l_cons_wdd.delivered_quantity := nvl(l_cons_wdd.delivered_quantity,0) + l_conv_qty;
2022: END IF;