DBA Data[Home] [Help]

APPS.INV_MINMAX_PVT dependencies on INV_CONVERT

Line 1335: INV_CONVERT.INV_UM_CONVERT(p_item_id,null,quantity,NVL(uom_code,get_item_uom_code(unit_of_measure)),l_puom,null,null)

1331: --in the po_requisitions_interface_all table.
1332:
1333: SELECT NVL(SUM(DECODE(NVL(uom_code,get_item_uom_code(unit_of_measure)),
1334: l_puom,quantity,
1335: INV_CONVERT.INV_UM_CONVERT(p_item_id,null,quantity,NVL(uom_code,get_item_uom_code(unit_of_measure)),l_puom,null,null)
1336: )),0)
1337: INTO l_qty
1338: FROM po_requisitions_interface_all
1339: WHERE destination_organization_id = p_org_id

Line 3545: l_secondary_qty := inv_convert.inv_um_convert

3541:
3542:
3543:
3544: IF l_secondary_uom IS NOT NULL THEN
3545: l_secondary_qty := inv_convert.inv_um_convert
3546: (item_id => p_item_id
3547: ,precision => 5
3548: ,from_quantity => p_qty
3549: ,from_unit => p_uom

Line 4012: l_qty_conv := INV_CONVERT.INV_UM_CONVERT(

4008: , 're_po'
4009: , 9);
4010: END IF;
4011:
4012: l_qty_conv := INV_CONVERT.INV_UM_CONVERT(
4013: item_id => p_item_id,
4014: precision => null,
4015: from_quantity => p_qty,
4016: from_unit => p_uom,