DBA Data[Home] [Help]

APPS.JAI_PO_OSP_PKG dependencies on INV_CONVERT

Line 888: The call to the inv_convert.inv_um_conversion is done to get the conversion factor

884: When rtv is done in a uom different from the PO uom code , the item rate is not getting
885: recalculated for the rtv uom , instead the uom of the rtv is used with the item rate
886: of the po uom.
887:
888: The call to the inv_convert.inv_um_conversion is done to get the conversion factor
889: and it is used as a factor to calculate the item rate.
890:
891: 2. 29-nov-2004 ssumaith - bug# 4037690 - File version 115.2
892:

Line 967: inv_convert.inv_um_conversion(v_from_uom_code,v_to_uom_code,v_item_id,v_uom_rate);

963: FETCH c_get_uom_code INTO v_from_uom_code;
964: CLOSE c_get_uom_code;
965:
966: lv_statement_id := '7';
967: inv_convert.inv_um_conversion(v_from_uom_code,v_to_uom_code,v_item_id,v_uom_rate);
968: -- bug#3644848
969: v_uom := r_base_trx.unit_of_measure; -- added by sriram - bug # 3446045
970:
971: OPEN c_get_uom_code(v_uom);

Line 1568: v_po_to_rec_conv := INV_CONVERT.INV_UM_CONVERT

1564:
1565: -- Determines the conversion factor between PO and RECEIPT uom's if they are different
1566: if v_po_uom <> p_unit_of_measure then
1567:
1568: v_po_to_rec_conv := INV_CONVERT.INV_UM_CONVERT
1569: (p_item_id, NULL, NULL, NULL, NULL,
1570: p_unit_of_measure, v_po_uom);
1571:
1572: IF v_debug THEN

Line 1646: v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT

1642:
1643: -- Determines the conversion factor between Component Primary UOM and 57F4 Line uom's if they are different
1644: if v_item_pr_uom_code <> each_line.item_uom then
1645:
1646: v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT
1647: (each_line.item_id, NULL, NULL, v_item_pr_uom_code, each_line.item_uom,
1648: null, null);
1649: -- p_unit_of_measure, v_to_uom);
1650: