DBA Data[Home] [Help]

APPS.JAI_PO_OSP_PKG dependencies on INV_CONVERT

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

1005: When rtv is done in a uom different from the PO uom code , the item rate is not getting
1006: recalculated for the rtv uom , instead the uom of the rtv is used with the item rate
1007: of the po uom.
1008:
1009: The call to the inv_convert.inv_um_conversion is done to get the conversion factor
1010: and it is used as a factor to calculate the item rate.
1011:
1012: 2. 29-nov-2004 ssumaith - bug# 4037690 - File version 115.2
1013:

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

1084: FETCH c_get_uom_code INTO v_from_uom_code;
1085: CLOSE c_get_uom_code;
1086:
1087: lv_statement_id := '7';
1088: inv_convert.inv_um_conversion(v_from_uom_code,v_to_uom_code,v_item_id,v_uom_rate);
1089: -- bug#3644848
1090: v_uom := r_base_trx.unit_of_measure; -- added by sriram - bug # 3446045
1091:
1092: OPEN c_get_uom_code(v_uom);

Line 1741: v_po_to_rec_conv := INV_CONVERT.INV_UM_CONVERT

1737:
1738: -- Determines the conversion factor between PO and RECEIPT uom's if they are different
1739: if v_po_uom <> p_unit_of_measure then
1740:
1741: v_po_to_rec_conv := INV_CONVERT.INV_UM_CONVERT
1742: (p_item_id, NULL, NULL, NULL, NULL,
1743: p_unit_of_measure, v_po_uom);
1744:
1745: IF v_debug THEN

Line 1823: /* v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT

1819:
1820: IF v_pr_form_uom <> each_line.item_uom AND r_get_po_item_details.outside_operation_uom_type = 'RESOURCE'
1821: AND v_source_code ='W'
1822: THEN
1823: /* v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT
1824: (each_line.item_id, NULL, NULL, v_pr_form_uom, each_line.item_uom, -- Modified for bug #13541366
1825: null, null);
1826:
1827: jai_cmn_utils_pkg.write_fnd_log_msg('b13541366.log','16.4 v_pr_to_57f4_line_conv : ' ||v_pr_to_57f4_line_conv);

Line 1905: v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT

1901:
1902: -- Determines the conversion factor between Component Primary UOM and 57F4 Line uom's if they are different
1903: if v_challan_uom <> each_line.item_uom then -- Modified for bug #13541366
1904:
1905: v_pr_to_57f4_line_conv := INV_CONVERT.INV_UM_CONVERT
1906: (each_line.item_id, NULL, NULL, v_challan_uom, each_line.item_uom, -- Modified for bug #13541366
1907: null, null);
1908: -- p_unit_of_measure, v_to_uom);
1909: