[Home] [Help]
1018:
1019: 3. For Bug # 2798999 - Generic Fix for the One Off Patch.
1020: Added the call to jai_rcv_utils_pkg.get_organization_id
1021: to ensure that Organization Id and Item Id is picked up as this
1022: is critical in INV_CONVERT.INV_UM_CONVERSION to calculate the UOM
1023: Rate.
1024:
1025: 11. 10/03/2003 Aparajita for bug # 2813244. Version 615.11
1026:
1952: /* End, Vijay Shankar for Bug#4250236(4245089) */
1953: jai_cmn_utils_pkg.write_fnd_log_msg('jai_rcv_trx_prc.process_begin',' v_rcv_uom_code '||v_rcv_uom_code||' v_po_uom_code '||v_po_uom_code ||' v_item_id '||v_item_id);
1954: IF v_rcv_uom_code <> v_po_uom_code THEN
1955:
1956: /*12990372 : inv_convert.inv_um_conversion will fetch the uom_rate with the below logic :
1957:
1958: PROCEDURE inv_um_conversion(
1959: from_unit varchar2,
1960: to_unit varchar2,
1970: =1/12
1971: =0.08
1972: */
1973:
1974: Inv_Convert.inv_um_conversion(v_rcv_uom_code,
1975: v_po_uom_code,
1976: v_item_id,
1977: v_uom_rate);
1978:
4216:
4217: -- start adding by Aparajita for bug # 2813244 on 05/03/2003
4218: IF v_rcv_uom_code <> line_rec.unit_code THEN
4219:
4220: Inv_Convert.inv_um_conversion
4221: (
4222: v_rcv_uom_code,
4223: line_rec.unit_code,
4224: v_item_id,