DBA Data[Home] [Help]

APPS.INV_MINMAX_PVT dependencies on INV_CONVERT

Line 1332: INV_CONVERT.INV_UM_CONVERT(p_item_id,null,quantity,uom_code,l_puom,null,null)

1328: AND muom.unit_of_measure = msiv.primary_unit_of_measure;
1329:
1330: SELECT NVL(SUM(DECODE(uom_code,
1331: l_puom,quantity,
1332: INV_CONVERT.INV_UM_CONVERT(p_item_id,null,quantity,uom_code,l_puom,null,null)
1333: )),0)
1334: INTO l_qty
1335: FROM po_requisitions_interface_all
1336: WHERE destination_organization_id = p_org_id

Line 3537: l_secondary_qty := inv_convert.inv_um_convert

3533: WHERE organization_id = p_organization_id
3534: AND inventory_item_id = p_item_id;
3535:
3536: IF l_dual_uom_control > 1 THEN
3537: l_secondary_qty := inv_convert.inv_um_convert
3538: (item_id => p_item_id
3539: ,precision => 5
3540: ,from_quantity => p_qty
3541: ,from_unit => p_uom

Line 4005: l_qty_conv := INV_CONVERT.INV_UM_CONVERT(

4001: , 're_po'
4002: , 9);
4003: END IF;
4004:
4005: l_qty_conv := INV_CONVERT.INV_UM_CONVERT(
4006: item_id => p_item_id,
4007: precision => null,
4008: from_quantity => p_qty,
4009: from_unit => p_uom,