DBA Data[Home] [Help]

APPS.INV_LABEL_PVT8 dependencies on INV_CONVERT

Line 1663: INV_CONVERT.PICK_UOM_CONVERT

1659: trace('l_cons_wdd.shipped_quantity ' || l_cons_wdd.shipped_quantity);
1660: trace('l_cons_wdd.uom ' || l_cons_wdd.uom);
1661: END IF;
1662:
1663: INV_CONVERT.PICK_UOM_CONVERT
1664: (p_org_id => l_cons_wdd.organization_id,
1665: p_item_id => l_cons_wdd.inventory_item_id,
1666: p_sub_code => l_cons_wdd.from_subinventory,
1667: p_loc_id => null,

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

1813: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1814: l_cons_wdd.requested_quantity := l_cons_wdd.requested_quantity +
1815: l_cur_wdd.requested_quantity;
1816: ELSE
1817: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1818: l_cur_wdd.requested_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1819: IF l_conv_qty <> -9999 THEN
1820: l_cons_wdd.requested_quantity := l_cons_wdd.requested_quantity + l_conv_qty;
1821: END IF;

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

1830: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1831: l_cons_wdd.shipped_quantity := nvl(l_cons_wdd.shipped_quantity,0) +
1832: nvl(l_cur_wdd.shipped_quantity,0);
1833: ELSIF l_cur_wdd.shipped_quantity IS NOT NULL THEN
1834: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1835: l_cur_wdd.shipped_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1836: IF l_conv_qty <> -9999 THEN
1837: l_cons_wdd.shipped_quantity := nvl(l_cons_wdd.shipped_quantity,0) + l_conv_qty;
1838: END IF;

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

1843: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1844: l_cons_wdd.shipped_quantity2 := nvl(l_cons_wdd.shipped_quantity2,0) +
1845: nvl(l_cur_wdd.shipped_quantity2,0);
1846: ELSIF l_cur_wdd.shipped_quantity2 IS NOT NULL THEN
1847: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1848: l_cur_wdd.shipped_quantity2, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1849: IF l_conv_qty <> -9999 THEN
1850: l_cons_wdd.shipped_quantity2 := nvl(l_cons_wdd.shipped_quantity2,0) + l_conv_qty;
1851: END IF;

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

1856: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1857: l_cons_wdd.cancelled_quantity := nvl(l_cons_wdd.cancelled_quantity,0) +
1858: nvl(l_cur_wdd.cancelled_quantity,0);
1859: ELSIF l_cur_wdd.cancelled_quantity IS NOT NULL THEN
1860: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1861: l_cur_wdd.cancelled_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1862: IF l_conv_qty <> -9999 THEN
1863: l_cons_wdd.cancelled_quantity := nvl(l_cons_wdd.cancelled_quantity,0) + l_conv_qty;
1864: END IF;

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

1869: IF l_cons_wdd.uom = l_cur_wdd.uom THEN
1870: l_cons_wdd.delivered_quantity := nvl(l_cons_wdd.delivered_quantity,0) +
1871: nvl(l_cur_wdd.delivered_quantity,0);
1872: ELSIF l_cur_wdd.delivered_quantity IS NOT NULL THEN
1873: l_conv_qty := inv_convert.inv_um_convert(l_cur_wdd.inventory_item_id, NULL,
1874: l_cur_wdd.delivered_quantity, l_cur_wdd.uom,l_cons_wdd.uom,NULL,NULL);
1875: IF l_conv_qty <> -9999 THEN
1876: l_cons_wdd.delivered_quantity := nvl(l_cons_wdd.delivered_quantity,0) + l_conv_qty;
1877: END IF;