DBA Data[Home] [Help]

APPS.JMF_SHIKYU_RPT_UTIL dependencies on PO_UOM_S

Line 377: l_primary_uom := po_uom_s.get_primary_uom(p_item_id

373: WHERE uom_code = p_current_uom_code;
374: END IF;
375:
376: --get the primary UOM
377: l_primary_uom := po_uom_s.get_primary_uom(p_item_id
378: ,p_org_id
379: ,l_current_uom);
380:
381: --get the primary uom_code

Line 421: l_primary_uom := po_uom_s.get_primary_uom(p_item_id

417: FROM mtl_units_of_measure_vl
418: WHERE uom_code = p_current_uom_code;
419:
420: --get the primary UOM
421: l_primary_uom := po_uom_s.get_primary_uom(p_item_id
422: ,p_org_id
423: ,l_current_uom);
424:
425: /*l_primary_uom := get_item_primary_uom_code

Line 432: --po_uom_s.uom_convert(from_quantity, from_uom, item_id, to_uom, to_quantity)

428: , p_current_uom_code => p_current_uom_code
429: ) ;*/
430:
431: --get the primary quantity
432: --po_uom_s.uom_convert(from_quantity, from_uom, item_id, to_uom, to_quantity)
433: po_uom_s.uom_convert(p_current_qty
434: ,l_current_uom
435: ,p_item_id
436: ,l_primary_uom

Line 433: po_uom_s.uom_convert(p_current_qty

429: ) ;*/
430:
431: --get the primary quantity
432: --po_uom_s.uom_convert(from_quantity, from_uom, item_id, to_uom, to_quantity)
433: po_uom_s.uom_convert(p_current_qty
434: ,l_current_uom
435: ,p_item_id
436: ,l_primary_uom
437: ,l_primary_quantity);

Line 496: RETURN PO_UOM_S.po_uom_convert_p(from_unit => l_from_unit_name --the 25-character UNIT_OF_MEASURE

492: WHERE LANGUAGE = 'US'
493: AND UOM_CODE = p_to_unit;
494: END;
495: --get the current unit of measure from the given uom_code;
496: RETURN PO_UOM_S.po_uom_convert_p(from_unit => l_from_unit_name --the 25-character UNIT_OF_MEASURE
497: ,to_unit => l_to_unit_name --the 25-character UNIT_OF_MEASURE
498: ,item_id => p_item_id);
499:
500: END po_uom_convert_p;